corymsmith / react-native-icons

Quick and easy icons in React Native
MIT License
1.14k stars 141 forks source link

[Icon] Zocial icons are cropped #139

Closed elisei-timofte closed 8 years ago

elisei-timofte commented 8 years ago

I want to use some social fonts and what I get is this:

screen shot 2015-11-17 at 5 01 51 pm

but in xcode I see that facebook, twitter and other guys looks good. Am I doing something wrong?

screen shot 2015-11-17 at 5 03 26 pm
var items = ['facebook', 'twitter', 'googleplus', 'reddit', 'tumblr', 'stumbleupon']
items.map((item) => {
          return (
            <TouchableOpacity
              key     = {JSON.stringify(item)}
              <Icon
                name  = {`zocial|${item}`}
                size  = {35}
                color = 'Gray'
                style = {{width: 35, height: 35}}
              />
            </TouchableOpacity>
          )
        })
corymsmith commented 8 years ago

There's a known issue for icons that are not square; I haven't had any time to dig into it though, PR's are always appreciated.

On Tue, Nov 17, 2015 at 8:06 AM, elisei-timofte notifications@github.com wrote:

I want to use some social fonts and what I get is this:

screen shot 2015-11-17 at 5 01 51 pm

but in xcode I see that facebook, twitter and other guys looks good. Am I doing something wrong?

screen shot 2015-11-17 at 5 03 26 pm
var items = ['facebook', 'twitter', 'googleplus', 'reddit', 'tumblr', 'stumbleupon']
items.map((item) => {
          return (
            <TouchableOpacity
              key     = {JSON.stringify(item)}
              style   = {styles.socialButtom}>
              <Icon
                name  = {`zocial|${item}`}
                size  = {35}
                color = 'Gray'
                style = {{width: 35, height: 35}}
              />
            </TouchableOpacity>
          )
        })

Reply to this email directly or view it on GitHub: https://github.com/corymsmith/react-native-icons/issues/139

corymsmith commented 8 years ago

This is a duplicate of #55