1 | 'use client';
|
2 |
|
3 | import * as React from 'react';
|
4 | import PropTypes from 'prop-types';
|
5 | import { GlobalStyles as SystemGlobalStyles } from '@mui/system';
|
6 | import defaultTheme from "../styles/defaultTheme.js";
|
7 | import THEME_ID from "../styles/identifier.js";
|
8 | import { jsx as _jsx } from "react/jsx-runtime";
|
9 | function GlobalStyles(props) {
|
10 | return _jsx(SystemGlobalStyles, {
|
11 | ...props,
|
12 | defaultTheme: defaultTheme,
|
13 | themeId: THEME_ID
|
14 | });
|
15 | }
|
16 | process.env.NODE_ENV !== "production" ? GlobalStyles.propTypes = {
|
17 |
|
18 |
|
19 |
|
20 |
|
21 | |
22 |
|
23 |
|
24 | styles: PropTypes .oneOfType([PropTypes.array, PropTypes.func, PropTypes.number, PropTypes.object, PropTypes.string, PropTypes.bool])
|
25 | } : void 0;
|
26 | export default GlobalStyles; |
\ | No newline at end of file |