UNPKG

aura-glass

Version:

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

33 lines 1.08 kB
/** * ThemedGlassComponents Component * * A component that applies themed glass styling to its children. * Migrated to use OptimizedGlass architecture. */ import React from 'react'; interface ThemedGlassContextType { glassIntensity: number; applyGlassEffect: boolean; contextData?: Record<string, any>; } export declare const useThemedGlass: () => ThemedGlassContextType; /** * ThemedGlassComponents Component Props * A component that applies themed glass styling to its children */ interface ThemedGlassComponentsProps { children: React.ReactNode; variant?: string; colorMode?: string; glassIntensity?: number; animated?: boolean; className?: string; style?: React.CSSProperties; applyGlassEffect?: boolean; preserveOriginalStyle?: boolean; contextData?: Record<string, any>; transitionDuration?: number; } export declare const ThemedGlassComponents: React.ForwardRefExoticComponent<ThemedGlassComponentsProps & React.RefAttributes<HTMLDivElement>>; export {}; //# sourceMappingURL=ThemedGlassComponents.d.ts.map