aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
37 lines (32 loc) • 1.13 kB
JavaScript
'use client';
;
var jsxRuntime = require('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 jsxRuntime.jsx(jsxRuntime.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 */
};
exports.StyledComponentsRegistry = StyledComponentsRegistry;
exports.ensureStyledComponentsRegistry = ensureStyledComponentsRegistry;
exports.hasStyledComponentsRegistry = hasStyledComponentsRegistry;
exports.markStyledRegistryHealthy = markStyledRegistryHealthy;
//# sourceMappingURL=registry.js.map