You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
323 B
JavaScript
16 lines
323 B
JavaScript
'use client';
|
|
|
|
import { useThemeProps as systemUseThemeProps } from '@mui/system';
|
|
import defaultTheme from './defaultTheme';
|
|
import THEME_ID from './identifier';
|
|
export default function useThemeProps({
|
|
props,
|
|
name
|
|
}) {
|
|
return systemUseThemeProps({
|
|
props,
|
|
name,
|
|
defaultTheme,
|
|
themeId: THEME_ID
|
|
});
|
|
} |