import React, { PropsWithChildren } from 'react'; interface Props { value?: string; htmlFor?: string; } export default function InputLabel({ value, htmlFor, children, }: PropsWithChildren) { return ( ); }