UNPKG

robust-react-ui

Version:

A React component library, built with a focus on accessibility, extensibility and reusability.

11 lines (10 loc) 278 B
import { ReactNode } from 'react'; export interface IFormLabelProps { children: ReactNode; htmlFor?: string; /** * Provides the component with an id attribute. May be used for accessibility purposes. */ id?: string; required?: boolean; }