aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
32 lines (28 loc) • 958 B
JavaScript
'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
});
}
/**
* Registry helpers are retained for backward compatibility. The design-token
* architecture no longer requires a runtime stylesheet registry, so these
* functions are implemented as innocuous no-ops that always report success.
*/
const markStyledRegistryHealthy = () => {
/* noop */
};
const hasStyledComponentsRegistry = () => true;
const ensureStyledComponentsRegistry = () => {
/* noop */
};
export { StyledComponentsRegistry, ensureStyledComponentsRegistry, hasStyledComponentsRegistry, markStyledRegistryHealthy };
//# sourceMappingURL=registry.mjs.map