import { Popup } from 'semantic-ui-react'; import cn from 'classnames'; import { Icon } from 'UI'; import styles from './textLabel.css'; export default function TextLabel({ icon, label, minWidth = 0, maxWidth = false, popupLabel = false, textTransform = '', color = 'gray-medium', iconColor = color, }) { return (
{ popupLabel ? { label }
} content={ popupLabel } size="mini" inverted /> :
{ label }
} ); }