import clsx from 'clsx'; import { Button } from '@@/buttons'; import { InputGroup } from '@@/form-components/InputGroup'; export function OverridableInput({ value, onChange, id, placeholder, }: { value: string | null; onChange: (value: string | null) => void; id: string; placeholder: string; }) { const override = value !== null; return ( onChange(e.target.value)} id={id} placeholder={placeholder} /> ); }