Repository URL to install this package:
|
Version:
0.9.6 ▾
|
ui-component-library
/
src
/
components
/
presets
/
Subscription
/
PaymentInformationForm
/
styled.tsx
|
|---|
import { styled } from 'uxui-modules/view-container'
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: 16px;
text-transform: capitalize;
margin-top: 1rem;
`
export { ErrorLabel, StyledSecondaryButton }