123456789101112131415161718192021222324252627282930313233343536373839 |
- import React from 'react';
- import { makeStyles } from 'tss-react/mui';
-
- import { DISPLAY_NAME_VERTICAL_PADDING } from './styles';
-
- const useStyles = makeStyles()(theme => {
- const { text01 } = theme.palette;
-
- return {
- badge: {
- background: 'rgba(0, 0, 0, 0.6)',
- borderRadius: '3px',
- color: text01,
- maxWidth: '50%',
- overflow: 'hidden',
- padding: `${DISPLAY_NAME_VERTICAL_PADDING / 2}px 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 (
- <div className = { classes.badge }>
- { name }
- </div>
- );
- };
-
- export default DisplayNameBadge;
|