'use client'; import { cn } from '@/utils/cn'; import type { VariantProps } from 'class-variance-authority'; import { cva } from 'class-variance-authority'; import * as React from 'react'; const inputVariant = cva( 'file: flex w-full rounded-md border border-input bg-card ring-offset-background file:border-0 file:bg-transparent file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-1 disabled:cursor-not-allowed disabled:opacity-50', { variants: { size: { sm: 'h-8 px-3 py-2 ', default: 'h-10 px-3 py-2 ', large: 'h-12 px-4 py-3 text-lg', }, }, defaultVariants: { size: 'sm', }, }, ); export type InputProps = VariantProps & Omit, 'size'> & { error?: string | undefined; }; const Input = React.forwardRef( ({ className, error, type, size, ...props }, ref) => { return ( ); }, ); Input.displayName = 'Input'; export { Input };