import { IStylableProps } from '../Generic.types'; import React from 'react'; export interface ILabelProps extends IStylableProps { /** * ID of the corresponding input element. */ inputId?: string; /** * Icon to pass to label. */ icon?: React.ReactNode; /** * Any additional props are passed through to the underlying element. */ [key: string]: any; } export default ILabelProps;