20 lines
616 B
XML
20 lines
616 B
XML
/**
|
|
* External dependencies
|
|
*/
|
|
import { SVG } from '@wordpress/primitives';
|
|
|
|
const filledCart = (
|
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
<g fill="none" fillRule="evenodd">
|
|
<path d="M0 0h24v24H0z" />
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="nonzero"
|
|
d="M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49A.996.996 0 0 0 20.01 4H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45ZM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2Zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2Z"
|
|
/>
|
|
</g>{ ' ' }
|
|
</SVG>
|
|
);
|
|
|
|
export default filledCart;
|