import { ComponentProps, InputHTMLAttributes } from 'react'; import clsx from 'clsx'; import { InputGroup } from '../InputGroup'; export function InputLabeled({ label, className, size, needsDeletion, id, required, disabled, ...props }: { label: string; className?: string; size?: ComponentProps['size']; needsDeletion?: boolean; } & Omit, 'size' | 'children'>) { return ( {label} ); }