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 / Planner.jsx

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

31 lines 767 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 Planner = (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>{__('Planner', 'extendify-local')}</title>
16 <path opacity="0.3" d="M4 5H20V9H4V5Z" fill="currentColor" />
17 <path
18 d="M12 13H17V18H12V13ZM6 2H8V5H6V2ZM16 2H18V5H16V2Z"
19 fill="currentColor"
20 />
21 <path
22 d="M19 22H5C3.9 22 3 21.1 3 20V6C3 4.9 3.9 4 5 4H19C20.1 4 21 4.9 21 6V20C21 21.1 20.1 22 19 22ZM5 6V20H19V6H5Z"
23 fill="currentColor"
24 />
25 <path d="M4 8H20V10H4V8Z" fill="currentColor" />
26 </svg>
27 );
28 };
29
30 export default memo(Planner);
31