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