woocommerce/plugins/woocommerce-blocks/assets/js/icons/library/alert.tsx

19 lines
474 B
TypeScript

/**
* External dependencies
*/
import { SVG } from '@wordpress/primitives';
const cart = (
<SVG xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
<path
d="M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20Z"
stroke="#CC1818"
strokeWidth="1.5"
/>
<path d="M13 7H11V13H13V7Z" fill="#CC1818" />
<path d="M13 15H11V17H13V15Z" fill="#CC1818" />
</SVG>
);
export default cart;