UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

18 lines 445 B
import React from "react"; type OrbitConfig = { id: number; radiusFactor: number; speed: number; icon: React.ReactNode; iconSize: number; orbitColor?: string; orbitThickness?: number; }; type BeamCircleProps = { size?: number; orbits?: OrbitConfig[]; centerIcon?: React.ReactNode; }; declare const BeamCircle: React.FC<BeamCircleProps>; export default BeamCircle; //# sourceMappingURL=beam-circle.d.ts.map