7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
interface PulsingSphereProps {
|
|
radius: number;
|
|
paused?: boolean;
|
|
}
|
|
export declare function PulsingSphere({ radius, paused }: PulsingSphereProps): import("react/jsx-runtime").JSX.Element;
|
|
export {};
|