import { ReactNode } from 'react'; import { cn } from '../utils/cn'; interface IconInputProps { icon: ReactNode; children: ReactNode; className?: string; } export function IconInput({ icon, children, className }: IconInputProps) { return (