import type { ReactNode } from 'react'; /** * Optional helper under a control. Always reserves vertical space so grid/toolbar * columns stay aligned when some fields have copy and others do not. */ export function FieldHint({ children }: { children?: ReactNode }) { const has = children != null && children !== ''; return (