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 • 422 B
JavaScript
import { __assign, __rest } from "tslib";
import React from 'react';
import { Paper as MuiPaper } from '@mui/material';
import { styled } from '@mui/material/styles';
var PaperStyled = styled(MuiPaper)({});
export var Paper = function (_a) {
var children = _a.children, props = __rest(_a, ["children"]);
return (React.createElement(PaperStyled, __assign({}, props), children));
};
//# sourceMappingURL=Paper.js.map