/ src / components / primitives / NoData.tsx
NoData.tsx
1  import Typography, { TypographyProps } from '@mui/material/Typography';
2  import React from 'react';
3  
4  export const NoData = <C extends React.ElementType>(
5    props: TypographyProps<C, { component?: C }>
6  ) => {
7    return <Typography {...props}>—</Typography>;
8  };