import { LabelHTMLAttributes } from 'react'; export default function InputLabel({ value, className = '', children, ...props }: LabelHTMLAttributes & { value?: string }) { return ( ); }