import React from 'react'; import { useTranslation } from 'react-i18next'; import { useSelector } from 'react-redux'; import { makeStyles } from 'tss-react/mui'; import { IconUsers } from '../../../base/icons/svg'; import Label from '../../../base/label/components/web/Label'; import Tooltip from '../../../base/tooltip/components/Tooltip'; import { getVisitorsCount, getVisitorsShortText } from '../../functions'; const useStyles = makeStyles()(theme => { return { label: { backgroundColor: theme.palette.warning02, color: theme.palette.uiBackground } }; }); const VisitorsCountLabel = () => { const { classes: styles, theme } = useStyles(); const visitorsCount = useSelector(getVisitorsCount); const { t } = useTranslation(); return visitorsCount > 0 ? ( ) : null; }; export default VisitorsCountLabel;