UNPKG

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.

7 lines 297 B
import React from 'react'; import { ThemeProvider } from '@mui/material'; export var NormaProvider = function (props) { var theme = props.theme, children = props.children; return (React.createElement(ThemeProvider, { theme: theme }, children)); }; //# sourceMappingURL=NormaProvider.js.map