/** * External dependencies */ import { cartOutline, bag, bagAlt } from '@woocommerce/icons'; import { Icon } from '@wordpress/icons'; /** * Internal dependencies */ import './style.scss'; import { IconType } from '.././types'; interface Props { count: number; colorClassNames?: string; icon?: IconType; } const QuantityBadge = ( { count, icon }: Props ): JSX.Element => { function getIcon( iconName?: 'cart' | 'bag' | 'bag-alt' ) { switch ( iconName ) { case 'cart': return cartOutline; case 'bag': return bag; case 'bag-alt': return bagAlt; default: return cartOutline; } } return ( { count > 0 ? count : '' } ); }; export default QuantityBadge;