UNPKG

@unicity/design-system

Version:

A comprehensive React component library built on Material-UI with advanced theming capabilities including neumorphism design support

6 lines 396 B
import { jsx as _jsx } from "react/jsx-runtime"; import { StyledBox } from './Box.style'; export const Box = ({ children, elevation = false, rounded = false, bordered = false, bgVariant = 'default', ...props }) => { return (_jsx(StyledBox, { elevation: elevation, rounded: rounded, bordered: bordered, bgVariant: bgVariant, ...props, children: children })); }; //# sourceMappingURL=Box.js.map