aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
18 lines (15 loc) • 440 B
JavaScript
'use client';
import { jsx } from 'react/jsx-runtime';
import { cn } from '../../lib/utilsComprehensive.js';
import { GlassJSONViewer } from './GlassJSONViewer.js';
function GlassSchemaViewer({
schema,
className
}) {
return jsx(GlassJSONViewer, {
value: schema,
className: cn('glass-schema-viewer', className)
});
}
export { GlassSchemaViewer, GlassSchemaViewer as default };
//# sourceMappingURL=GlassSchemaViewer.js.map