import * as React from 'react' import { cn } from '@/lib/utils' import { type ControlVariantProps, controlVariants } from './control' function Input({ className, type, size, ...props }: Omit, 'size'> & ControlVariantProps) { return ( ) } export { Input }