PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / Launch / svg / Shop.jsx

Shop.jsx in Extendify 3.2.1, at src/Launch/svg/Shop.jsx

35 lines 809 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { memo } from '@wordpress/element';
2 import { __ } from '@wordpress/i18n';
3
4 const Shop = (props) => {
5 const { className, ...otherProps } = props;
6
7 return (
8 <svg
9 className={className}
10 viewBox="0 0 24 24"
11 fill="none"
12 xmlns="http://www.w3.org/2000/svg"
13 {...otherProps}
14 >
15 <title>{__('Shop', 'extendify-local')}</title>
16 <path
17 opacity="0.3"
18 d="M19.27 8H4.73L3 13.2V14H21V13.2L19.27 8ZM5 4H19V8H5V4Z"
19 fill="currentColor"
20 />
21 <path d="M13 21H3V13H13V21ZM5 19H11V15H5V19Z" fill="currentColor" />
22 <path
23 d="M22 15H2V13.038L4.009 7H19.991L22 13.038V15ZM4.121 13H19.88L18.549 9H5.451L4.121 13Z"
24 fill="currentColor"
25 />
26 <path
27 d="M19 14H21V21H19V14ZM20 9H4V3H20V9ZM6 7H18V5H6V7Z"
28 fill="currentColor"
29 />
30 </svg>
31 );
32 };
33
34 export default memo(Shop);
35