import { ComponentProps, InputHTMLAttributes } from 'react';
import clsx from 'clsx';
import { AutomationTestingProps } from '@/types';
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'> &
AutomationTestingProps) {
return (
{label}
);
}