UNPKG

aura-glass

Version:

A comprehensive glassmorphism design system for React applications with 142+ production-ready components

20 lines 909 B
import React from "react"; export interface AuroraProProps { intensity?: number; speed?: number; colorPalette?: "arctic" | "forest" | "sunset" | "ocean" | "cosmic" | "custom"; customColors?: [string, string, string]; particleCount?: number; showParticles?: boolean; showWaves?: boolean; showCurtain?: boolean; animationMode?: "flow" | "pulse" | "shift" | "mixed"; className?: string; showControls?: boolean; autoAnimate?: boolean; onAnimationChange?: (mode: string) => void; children?: React.ReactNode; } export declare function AuroraPro({ intensity, speed, colorPalette, customColors, particleCount, showParticles, showWaves, showCurtain, animationMode, className, showControls, autoAnimate, onAnimationChange, children, }: AuroraProProps): import("react/jsx-runtime").JSX.Element; export default AuroraPro; //# sourceMappingURL=AuroraPro.r3f.d.ts.map