import React from 'react'; import cn from 'classnames'; import { Icon } from 'UI'; import stl from './tabItem.css'; const TabItem = ({ icon, label, count, iconColor = 'teal', active = false, leading, ...rest }) => { return (
{ icon && } { label } { count && ({ count })}
{ !!leading && leading }
); } export default TabItem;