import { FLAME_PATH } from './Icons' /// The macOS BurnLoadingOverlay: a blurred sheet over the scroll area with a flame that /// fills bottom-to-top on a 1.4s loop while a soft glow pulses behind it. type Props = { periodLabel: string } export function LoadingOverlay({ periodLabel }: Props) { return (
Loading {periodLabel}…
) } export function BurnFlame({ size = 64 }: { size?: number }) { return (
) }