| 1 |
import { memo } from '@wordpress/element' |
| 2 |
|
| 3 |
const Shop = (props) => { |
| 4 |
const { className, ...otherProps } = props |
| 5 |
|
| 6 |
return ( |
| 7 |
<svg |
| 8 |
className={className} |
| 9 |
viewBox="0 0 24 24" |
| 10 |
fill="none" |
| 11 |
xmlns="http://www.w3.org/2000/svg" |
| 12 |
{...otherProps}> |
| 13 |
<path |
| 14 |
opacity="0.3" |
| 15 |
d="M19.27 8H4.73L3 13.2V14H21V13.2L19.27 8ZM5 4H19V8H5V4Z" |
| 16 |
fill="currentColor" |
| 17 |
/> |
| 18 |
<path d="M13 21H3V13H13V21ZM5 19H11V15H5V19Z" fill="currentColor" /> |
| 19 |
<path |
| 20 |
d="M22 15H2V13.038L4.009 7H19.991L22 13.038V15ZM4.121 13H19.88L18.549 9H5.451L4.121 13Z" |
| 21 |
fill="currentColor" |
| 22 |
/> |
| 23 |
<path |
| 24 |
d="M19 14H21V21H19V14ZM20 9H4V3H20V9ZM6 7H18V5H6V7Z" |
| 25 |
fill="currentColor" |
| 26 |
/> |
| 27 |
</svg> |
| 28 |
) |
| 29 |
} |
| 30 |
|
| 31 |
export default memo(Shop) |
| 32 |
|