import clsx from "clsx"; import styles from "./Label.module.css"; interface Props extends React.DetailedHTMLProps< React.LabelHTMLAttributes, HTMLLabelElement > { label?: React.ReactNode; capitalize?: boolean; withInput?: boolean; } const Label: React.ComponentType = ({ children, htmlFor, label, style, capitalize, withInput, }) => { return ( ); }; export default Label;