You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
spa_instat_tv/src/features/AddCardForm/index.tsx

44 lines
864 B

import { SolidButton } from 'features/UserAccount/styled'
import {
Form,
Column,
ButtonsBlock,
Input,
} from './styled'
export const AddCardForm = () => (
<Form>
<Column>
<Input
labelWidth={70}
wrapperWidth={560}
label='Номер'
labelLexic='form_card_number'
/>
<Input
labelWidth={70}
wrapperWidth={560}
label='Имя'
/>
<Input
maxLength={5}
labelWidth={120}
wrapperWidth={275}
labelLexic='form_card_expiration'
/>
<Input
maxLength={3}
labelWidth={140}
wrapperWidth={275}
label='CVC / CVV'
labelLexic='form_card_code'
/>
</Column>
<ButtonsBlock>
<SolidButton type='submit'>
Сохранить
</SolidButton>
</ButtonsBlock>
</Form>
)