import { cn } from '@/lib/utils'; import type { InputHTMLAttributes } from 'react'; export interface InputProps extends InputHTMLAttributes {} export const StyledInput = function StyledInput({ className, ...restProps }: InputProps) { return ( ); };