import type { ReactNode } from 'react' import { cn } from '@/lib/cn' /** A non-interactive hint overlaid on the canvas (empty-state guidance). */ export function EditorHint({ position = 'center', children }: { position?: 'center' | 'top'; children: ReactNode }) { return (

{children}

) }