react-elegant-ui
Version:
Elegant UI components, made by BEM best practices for react
11 lines (10 loc) • 344 B
TypeScript
import { FC } from 'react';
import { IComponentHTMLElement } from '../../../types/IComponent';
import './Checkbox-Label.css';
export interface ICheckboxLabel extends IComponentHTMLElement<HTMLLabelElement> {
/**
* Interface for html property `for`
*/
target?: string;
}
export declare const CheckboxLabel: FC<ICheckboxLabel>;