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.

11 lines 437 B
interface TextScrollMarqueeProps { children: string; baseVelocity: number; className?: string; scrollDependent?: boolean; delay?: number; direction?: 'left' | 'right'; } export default function TextScrollMarquee({ children, baseVelocity, className, scrollDependent, delay, direction, }: TextScrollMarqueeProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=text-scroll-marquee.d.ts.map