// shadcn Input — minimal HTML input with theme-aware styles. import type { InputHTMLAttributes, ReactNode } from 'react' import { cn } from '../cn' export const Input = ({ className, type = 'text', ...props }: InputHTMLAttributes): ReactNode => ( )