Skip to content

Instantly share code, notes, and snippets.

@mrcthms
Created June 4, 2020 15:21
Show Gist options
  • Save mrcthms/392439cad21d903975378b65438cc0e1 to your computer and use it in GitHub Desktop.
Save mrcthms/392439cad21d903975378b65438cc0e1 to your computer and use it in GitHub Desktop.
import styled from 'styled-components'
import { Text } from '@invisionapp/helios'
export const Root = styled(({ forceRender, ...props } => <Text {...props />)`
background: ${({ forceRender }) => forceRender ? 'red' : 'white'}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment