import { cn } from "~/utils/cn"; type InputGroupProps = { children: React.ReactNode; className?: string; fullWidth?: boolean; }; export function InputGroup({ children, className, fullWidth }: InputGroupProps) { return (