@mui/material
Version:
Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
16 lines (15 loc) • 322 B
JavaScript
'use client';
import systemUseThemeProps from '@mui/system/useThemeProps';
import defaultTheme from "./defaultTheme.js";
import THEME_ID from "./identifier.js";
export default function useThemeProps({
props,
name
}) {
return systemUseThemeProps({
props,
name,
defaultTheme,
themeId: THEME_ID
});
}