export function GhostWord({ text, fill = "accent", className = "", style, }: { text: string; fill?: "accent" | "paper"; className?: string; style?: React.CSSProperties; }) { return ( {text} ); }