@mui/material
Version:
Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
11 lines • 463 B
TypeScript
import { Breakpoint } from '@mui/system';
import { TypographyVariants } from "./createTypography.js";
export interface ResponsiveFontSizesOptions {
breakpoints?: Breakpoint[] | undefined;
disableAlign?: boolean | undefined;
factor?: number | undefined;
variants?: Array<keyof TypographyVariants> | undefined;
}
export default function responsiveFontSizes<T extends {
typography: TypographyVariants;
}>(theme: T, options?: ResponsiveFontSizesOptions): T;