import * as React from 'react';
import { Typography } from '@mui/material';
const typographyTest = () => {
const CustomComponent: React.FC<{ prop1: string; prop2: number }> = function CustomComponent() {
return
;
};
return (
{/* TODO: system props did not catch this error. Add @ts-expect-error after it is fixed. */}
{/* TODO: system props did not catch this error. Add @ts-expect-error after it is fixed. */}
{/* @ts-expect-error */}
{/* @ts-expect-error */}
{/* @ts-expect-error */}
{/* @ts-expect-error */}
{/* @ts-expect-error */}
{/* @ts-expect-error */}
{/* @ts-expect-error */}
);
};