| 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 |
|