UNPKG

@yandex/ui

Version:

Yandex UI components

12 lines (11 loc) 410 B
import { FC } from 'react'; import { ICheckboxProps as ICheckboxTouchPhoneProps } from '../Checkbox@touch-phone'; export * from '../Checkbox@touch-phone'; export interface ICheckboxProps extends ICheckboxTouchPhoneProps { lines?: 'multi' | 'one'; size?: 'm' | 's'; theme?: 'normal' | 'pseudo'; view?: 'default'; indeterminate?: boolean; } export declare const Checkbox: FC<ICheckboxProps>;