Files

7 lines
206 B
TypeScript
Raw Permalink Normal View History

2026-04-11 09:21:22 +02:00
interface PulsingSphereProps {
radius: number;
paused?: boolean;
}
export declare function PulsingSphere({ radius, paused }: PulsingSphereProps): import("react/jsx-runtime").JSX.Element;
export {};