forked from Kylix-Finance/kylix-finance-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.d.ts
36 lines (32 loc) · 811 Bytes
/
theme.d.ts
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
29
30
31
32
33
34
35
36
/* eslint-disable unused-imports/no-unused-imports */
import {
ButtonPropsVariantOverrides,
TypographyPropsVariantOverrides,
} from "@mui/material";
import { TypographyVariantsOptions } from "@mui/material/styles";
import { PaletteColor } from "@mui/material/styles/createPalette";
declare module "@mui/material/styles" {
interface PaletteColor {
"50": string;
"100": string;
"200": string;
"300": string;
"400": string;
"500": string;
"600": string;
"700": string;
"800": string;
"900": string;
}
interface TypographyVariants {
body3: React.CSSProperties;
}
interface TypographyVariantsOptions {
body3?: React.CSSProperties;
}
}
declare module "@mui/material/Typography" {
interface TypographyPropsVariantOverrides {
body3: true;
}
}