UNPKG

@sikka/hawa

Version:

Modern UI Kit made with Tailwind

13 lines (10 loc) 412 B
import * as React from 'react'; import { P as PositionType } from '../commonTypes-DinbCdmt.mjs'; type LabelProps = { hint?: React.ReactNode; hintSide?: PositionType; htmlFor?: string; required?: boolean; }; declare const Label: React.ForwardRefExoticComponent<React.LabelHTMLAttributes<HTMLLabelElement> & LabelProps & React.RefAttributes<HTMLLabelElement>>; export { Label, type LabelProps };