UNPKG

@arolariu/components

Version:

🎨 70+ beautiful, accessible React components built on Base UI. TypeScript-first, CSS Modules styling, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡

23 lines • 801 B
import * as React from "react"; /** Props accepted by {@link BackgroundBeams}. */ export interface BackgroundBeamsProps extends React.ComponentPropsWithoutRef<"div"> { } /** * Renders animated aurora-style beams that sweep across the background. * * @remarks * - Animated component using the `motion` library * - Renders a `<div>` element containing animated SVG paths * - Styling via CSS Modules with `--ac-*` custom properties * - Client-side only (`"use client"` directive) * * @example * ```tsx * <BackgroundBeams /> * ``` * * @see {@link BackgroundBeamsProps} for available props */ declare const BackgroundBeams: React.ForwardRefExoticComponent<BackgroundBeamsProps & React.RefAttributes<HTMLDivElement>>; export { BackgroundBeams }; //# sourceMappingURL=background-beams.d.ts.map