UNPKG

@yandex/ui

Version:

Yandex UI components

18 lines (17 loc) 402 B
import { FC } from 'react'; import './Checkbox-Label.css'; export interface CheckboxLabelProps { /** * Дополнительный класс */ className?: string; /** * Уникальный id компонента */ id?: string; /** * HTML-атрибут `for` */ htmlFor?: string; } export declare const CheckboxLabel: FC<CheckboxLabelProps>;