forked from CtxOS/CtxOS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmui.d.ts
More file actions
28 lines (26 loc) · 729 Bytes
/
mui.d.ts
File metadata and controls
28 lines (26 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* eslint-disable @typescript-eslint/no-empty-interface */
import { Theme } from '@mui/material'
import { CSSProperties } from 'react'
declare module '@mui/styles' {
interface DefaultTheme extends Theme {}
}
declare module '@mui/material/Typography' {
interface TypographyVariants {
body1Semi: CSSProperties
body2Semi: CSSProperties
subtitle1Semi: CSSProperties
subtitle2Semi: CSSProperties
}
interface TypographyVariantsOptions {
body1Semi?: CSSProperties
body2Semi?: CSSProperties
subtitle1Semi?: CSSProperties
subtitle2Semi?: CSSProperties
}
interface TypographyPropsVariantOverrides {
body1Semi: true
body2Semi: true
subtitle1Semi: true
subtitle2Semi: true
}
}