Repository URL to install this package:
|
Version:
0.14.1 ▾
|
import { styled } from 'styleh-components'
import { Label } from 'atoms/Text'
import { SecondaryButton } from 'presets/Buttons'
const StyledLabel = styled.withComponent(Label)`
color: red;
`
const StyledSecondaryButton = styled.withComponent(SecondaryButton)`
color: #fff;
font-size: rem(16);
text-transform: capitalize;
margin-top: 1rem;
user-select: none;
background: #5F6C88;
`
export { StyledLabel, StyledSecondaryButton }