aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
32 lines (29 loc) • 762 B
JavaScript
import { jsx, Fragment } from 'react/jsx-runtime';
const createFallbackSheet = () => ({
collectStyles: children => jsx(Fragment, {
children: children
}),
getStyleElement: () => [],
getStyleTags: () => "",
seal: () => undefined,
instance: null
});
function createStyleSheet() {
return createFallbackSheet();
}
function collectStyles() {
return createFallbackSheet();
}
const AuraGlassSSRProvider = ({
children
}) => jsx(Fragment, {
children: children
});
function isStyledComponentsSSRReady() {
return true;
}
function getStyledComponentsVersion() {
return null;
}
export { AuraGlassSSRProvider, collectStyles, createStyleSheet, getStyledComponentsVersion, isStyledComponentsSSRReady };
//# sourceMappingURL=StyleSheetManager.js.map