import { Lamp } from "../components/Lamp"; import { LampLine } from "../components/LampLine"; import type { BerlinClock as BerlinClockType } from "../types"; interface BerlinClockProps { enabled: boolean; clock: BerlinClockType; } export function BerlinClock({ enabled, clock }: BerlinClockProps) { if (!enabled) return null; return (
); }