// fallow-ignore-file dead-code /** * Shared playhead visual used by TimelineCanvas (real playhead) and * TimelineEditorNotice (animated illustration). */ interface PlayheadIndicatorProps { /** CSS color, defaults to the HF accent variable */ color?: string; /** Glow shadow color, defaults to translucent accent */ glowColor?: string; } export function PlayheadIndicator({ color = "var(--hf-accent, #3CE6AC)", glowColor = "rgba(60,230,172,0.5)", }: PlayheadIndicatorProps) { return ( <>
); }