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 (17 loc) 411 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; }; export declare const BeamCircle: React.FC<BeamCircleProps>; export default BeamCircle;