Skip to content

Instantly share code, notes, and snippets.

@blackfry
Created October 27, 2016 06:09
Show Gist options
  • Save blackfry/d26aecf585c692b91eda57c769773378 to your computer and use it in GitHub Desktop.
Save blackfry/d26aecf585c692b91eda57c769773378 to your computer and use it in GitHub Desktop.
class FavouriteIcon extends Component {
constructor(props) {
super(props);
FavouriteIcon.defaultProps = {
style: {
position: 'relative',
top: 1,
color: 'grey',
fontSize: '26px'
}
}
}
render() {
return (
<div>
<Icon
glyph='icon-ikons-star'
style={this.props.style}
/>
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment