Skip to content

Instantly share code, notes, and snippets.

@AWolf81
Created October 13, 2018 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AWolf81/365ad2fc717023f0ed60b950a5d1a333 to your computer and use it in GitHub Desktop.
Save AWolf81/365ad2fc717023f0ed60b950a5d1a333 to your computer and use it in GitHub Desktop.
Medium Post
class SettingsButton extends PureComponent<Props, State> {
render() {
const { size } = this.props;
return (
<Wrapper>
{' '}
<IconBase size={size} icon={settings} />{' '}
</Wrapper>
);
}
}
const Wrapper = styled.div`
 cursor: pointer;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment