| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
export const ShoppingCart = () => ( |
| 3 |
<svg |
| 4 |
xmlns="http://www.w3.org/2000/svg" |
| 5 |
height="20px" |
| 6 |
viewBox="0 -960 960 960" |
| 7 |
width="20px" |
| 8 |
fill="currentColor" |
| 9 |
> |
| 10 |
<title>{__('Shopping Cart Icon', 'extendify-local')}</title> |
| 11 |
<path d="M280-80q-33 0-56.5-23.5T200-160q0-33 23.5-56.5T280-240q33 0 56.5 23.5T360-160q0 33-23.5 56.5T280-80Zm400 0q-33 0-56.5-23.5T600-160q0-33 23.5-56.5T680-240q33 0 56.5 23.5T760-160q0 33-23.5 56.5T680-80ZM246-720l96 200h280l110-200H246Zm-38-80h590q23 0 35 20.5t1 41.5L692-482q-11 20-29.5 31T622-440H324l-44 80h480v80H280q-45 0-68-39.5t-2-78.5l54-98-144-304H40v-80h130l38 80Zm134 280h280-280Z" /> |
| 12 |
</svg> |
| 13 |
); |
| 14 |
|