xlibs-components
Version:
Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications
12 lines • 374 B
TypeScript
import * as React from "react";
interface MarqueeProps {
className?: string;
reverse?: boolean;
pauseOnHover?: boolean;
children: React.ReactNode;
vertical?: boolean;
speed?: number;
}
declare const Marquee: React.ForwardRefExoticComponent<MarqueeProps & React.RefAttributes<HTMLDivElement>>;
export { Marquee };
//# sourceMappingURL=marquee.d.ts.map