import { Theme } from '@mui/material'; import React from 'react'; import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles()((theme: Theme) => { const { text01 } = theme.palette; return { badge: { background: 'rgba(0, 0, 0, 0.6)', borderRadius: '3px', color: text01, maxWidth: '50%', overflow: 'hidden', padding: '2px 16px', textOverflow: 'ellipsis', whiteSpace: 'nowrap' } }; }); /** * Component that displays a name badge. * * @param {Props} props - The props of the component. * @returns {ReactElement} */ const DisplayNameBadge: React.FC<{ name: string; }> = ({ name }) => { const { classes } = useStyles(); return (
{ name }
); }; export default DisplayNameBadge;