12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
|
|
'use client';
|
||
|
|
import { createTheme } from '@mui/material/styles'
|
||
|
|
|
||
|
|
|
||
|
|
const theme = createTheme({
|
||
|
|
cssVariables: true,
|
||
|
|
typography: {
|
||
|
|
fontFamily: 'var(--font-roboto)',
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
export default theme
|