UNPKG

aura-glass

Version:

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

19 lines (16 loc) 477 B
'use client'; import { jsx, Fragment } from 'react/jsx-runtime'; /** * Deprecated compatibility component. Styling is now driven by * CSS variables generated from AuraGlass design tokens, so no runtime * registry is required. This component simply renders its children. */ function StyledComponentsRegistry({ children }) { return jsx(Fragment, { children: children }); } export { StyledComponentsRegistry }; //# sourceMappingURL=StyledComponentsRegistry.js.map