1 | import { Breakpoint } from '@mui/system';
|
2 | import { Typography } from './createTypography';
|
3 |
|
4 | export interface ResponsiveFontSizesOptions {
|
5 | breakpoints?: Breakpoint[];
|
6 | disableAlign?: boolean;
|
7 | factor?: number;
|
8 | variants?: Array<keyof Typography>;
|
9 | }
|
10 |
|
11 | export default function responsiveFontSizes<T extends { typography: Typography }>(
|
12 | theme: T,
|
13 | options?: ResponsiveFontSizesOptions,
|
14 | ): T;
|