BillTracker/client/components/ui/input.jsx

18 lines
711 B
JavaScript

import { cn } from '@/lib/utils';
function Input({ className, type, ref, ...props }) {
return (
<input
type={type}
className={cn(
'flex h-9 w-full rounded-lg border border-input bg-card/70 px-3 py-1 text-sm font-medium text-foreground shadow-sm shadow-black/5 transition-all file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground/80 focus-visible:outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20',
className
)}
ref={ref}
{...props}
/>
);
}
export { Input };