Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mikeyamadeo/458a509320584e25a091e7db249ed079 to your computer and use it in GitHub Desktop.
Save mikeyamadeo/458a509320584e25a091e7db249ed079 to your computer and use it in GitHub Desktop.
import { colors, baseFontSize } from 'App/style/settings'
const Txt = ({
color = 'text',
size = baseFontSize,
tag = 'span',
children,
...rest
}) => {
const Tag = tag
return <Tag {...{
...rest,
style: {
color: colors[color],
fontSize: size,
lineHeight: height
}
}}>{ children }</Tag>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment