import type { ReactNode } from 'react'; interface InputGroupProps { label: string; unit?: string; children: ReactNode; className?: string; } export const InputGroup = ({ label, unit, children, className = '' }: InputGroupProps) => { return (
{label} {children} {unit && {unit}}
); };