PluginProbe
Extendify / 0.10.0
Extendify v0.10.0
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 / Onboarding / svg / Planner.jsx

Planner.jsx in Extendify 0.10.0, at src/Onboarding/svg/Planner.jsx

28 lines 836 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
3 const Planner = (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 opacity="0.3" d="M4 5H20V9H4V5Z" fill="currentColor" />
14 <path
15 d="M12 13H17V18H12V13ZM6 2H8V5H6V2ZM16 2H18V5H16V2Z"
16 fill="currentColor"
17 />
18 <path
19 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"
20 fill="currentColor"
21 />
22 <path d="M4 8H20V10H4V8Z" fill="currentColor" />
23 </svg>
24 )
25 }
26
27 export default memo(Planner)
28