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