UNPKG

rms-react

Version:

Библиотека React компонентов разработанная по дизайн системе РМ Солюшн

9 lines 432 B
import React, { DetailedHTMLProps, HTMLProps, SVGProps } from 'react'; export interface CheckboxInputProps extends Omit<DetailedHTMLProps<HTMLProps<HTMLInputElement>, HTMLInputElement>, 'type' | 'size'> { textPosition?: 'pre' | 'after'; size?: 's' | 'm'; labelWeight?: 'regular' | 'medium'; icon?: React.FC<SVGProps<SVGSVGElement>>; children?: React.ReactNode; } //# sourceMappingURL=CheckboxField.props.d.ts.map