Repository URL to install this package:
|
Version:
2.7.11 ▾
|
import { styled } from 'styleh-components'
import { Text } from 'atoms/Text'
const TextWrapper = styled.div``
const StyledText = styled.withComponent(Text)`
color: ${props => props.textColor};
background: url(${props => props.backgroundImage}) ${props =>
props.backgroundColor};
`
export { TextWrapper, StyledText }