import { Box, Typography, type TypographyProps } from '@mui/material'; import { type ForwardedRef, forwardRef } from 'react'; const EllipsisTypography = forwardRef( ( { containerClassname, ...props }: TypographyProps & { containerClassname?: string }, ref?: ForwardedRef ) => { return ( ); } ); export default EllipsisTypography;