File "index.tsx"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/quantity-badge/index.tsx
File size: 713 bytes
MIME-type: text/x-java
Charset: utf-8

/**
 * External dependencies
 */
import { miniCart } from '@woocommerce/icons';
import { Icon } from '@wordpress/icons';

/**
 * Internal dependencies
 */
import './style.scss';

interface Props {
	count: number;
	colorClassNames?: string;
	style?: Record< string, string | undefined >;
}

const QuantityBadge = ( {
	count,
	colorClassNames,
	style,
}: Props ): JSX.Element => {
	return (
		<span className="wc-block-mini-cart__quantity-badge">
			<Icon
				className="wc-block-mini-cart__icon"
				size={ 20 }
				icon={ miniCart }
			/>
			<span
				className={ `wc-block-mini-cart__badge ${ colorClassNames }` }
				style={ style }
			>
				{ count }
			</span>
		</span>
	);
};

export default QuantityBadge;