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