import { Typography, type TypographyProps } from '@mui/material'; type CustomTypographyProps = Pick; export interface FluidTypographyProps extends CustomTypographyProps { className?: string; containerClassName?: string; max?: string; min?: string; pref?: number; text: string; } const FluidTypography = ({ text, variant = 'body1', className, containerClassName, min = '10px', max = '1000px', pref = 19, sx }: FluidTypographyProps): JSX.Element => { return (
{text}
); }; export default FluidTypography;