import { InputProps } from './types'; const Input = ({ id, name, type, value, isAutoFocused = false, placeholder, maxLength, className, colorVariant = 'silver', borderVariant = 'thick', children, onChange, onPaste, onKeyDown, }: InputProps) => { const colorStyles = { silver: 'border-silver dark:border-silver/40', jet: 'border-jet', gray: 'border-gray-5000 dark:text-silver', }; const borderStyles = { thin: 'border', thick: 'border-2', }; return ( {children} ); }; export default Input;