norma-library
Version:
Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.
10 lines • 378 B
JavaScript
import { __assign, __rest } from "tslib";
import React from 'react';
import { Badge as MuiBadge } from '@mui/material';
import { styled } from '@mui/material/styles';
var BadgeStyled = styled(MuiBadge)({});
export var Badge = function (_a) {
var props = __rest(_a, []);
return (React.createElement(BadgeStyled, __assign({}, props)));
};
//# sourceMappingURL=Badge.js.map