import { useMemo } from 'react' import { motionEnabled } from '../lib/motion' import flame from '../assets/flame.png' /** * Brand flame mark: the exact approved icon art (app/build/icon.png minus the * squircle), so the splash, sidebar, About dialog and dock icon are literally * one image. `live` gives the mark an all-but-imperceptible idle flicker; the * phase is randomized once per mount so a row of flames never metronomes. All * motion is gated by motionEnabled(). */ export function FlameMark({ size = 20, live = false }: { size?: number; live?: boolean }) { // Random negative delay so the loop starts mid-cycle at a different point each // mount. Computed once; only takes effect when the flicker class is present. const flickerStyle = useMemo(() => ({ animationDelay: `-${(Math.random() * 4 + 1).toFixed(2)}s` }), []) const flicker = live && motionEnabled() return ( ) }