Last active
August 17, 2018 04:53
-
-
Save davo/c8d87f138669131316d5ac8ca3bb6f70 to your computer and use it in GitHub Desktop.
Framer X - Material Icon Component via Styled Components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react' | |
import { ControlType } from 'framer' | |
import styled, { injectGlobal } from 'styled-components' | |
injectGlobal` | |
@import url('https://fonts.googleapis.com/icon?family=Material+Icons'); | |
` | |
interface iconProps { | |
stretch: boolean | |
height: number | |
} | |
const StyledIconFrame = styled<iconProps, any>('div')` | |
display: flex; | |
width: 100%; | |
height: 100%; | |
align-items: center; | |
justify-content: center; | |
i { | |
font-size: ${props => (props.stretch ? props.height : 24)}px !important; | |
} | |
` | |
interface MaterialIconProps { | |
icon: string | |
color: string | |
stretch: boolean | |
height: number | |
} | |
export class MaterialIcon extends React.Component<MaterialIconProps> { | |
static defaultProps = { | |
icon: 'favorite', | |
color: '#6200ee', | |
stretch: false, | |
width: 24, | |
height: 24 | |
} | |
static propertyControls = { | |
icon: { type: ControlType.String, title: 'Icon name' }, | |
color: { type: ControlType.Color, title: 'Color' }, | |
stretch: { type: ControlType.Boolean, title: 'Stretch' } | |
} | |
render() { | |
return ( | |
<StyledIconFrame height={this.props.height} stretch={this.props.stretch}> | |
<i className="material-icons mdc-button__icon" aria-hidden="true" style={{ color: this.props.color }}> | |
{this.props.icon} | |
</i> | |
</StyledIconFrame> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment