import * as React from 'react'; import { cva, type VariantProps } from 'class-variance-authority'; import { cn } from '../../lib/utils'; const inputVariants = cva('shInput', { variants: { size: { xs: 'shControlXs', sm: 'shControlSm', md: 'shControlMd', lg: 'shControlLg', xl: 'shControlXl', }, }, defaultVariants: { size: 'md', }, }); export interface InputProps extends Omit, 'size'>, VariantProps {} export const Input = React.forwardRef( ({ className, size, ...props }, ref) => , ); Input.displayName = 'Input';