FrontPastel/node_modules/@mui/material/legacy/styles/styled.js

14 lines
513 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
'use client';
import createStyled from '@mui/system/createStyled';
import defaultTheme from './defaultTheme';
import THEME_ID from './identifier';
import rootShouldForwardProp from './rootShouldForwardProp';
export { default as slotShouldForwardProp } from './slotShouldForwardProp';
export { default as rootShouldForwardProp } from './rootShouldForwardProp';
var styled = createStyled({
themeId: THEME_ID,
defaultTheme: defaultTheme,
rootShouldForwardProp: rootShouldForwardProp
});
export default styled;