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

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

27 lines 940 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 OpenEnvelope = (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="M12 14L3 9V19H21V9L12 14Z"
16 fill="currentColor"
17 />
18 <path
19 d="M21.008 6.24719L12 0.992188L2.992 6.24719C2.38 6.60419 2 7.26619 2 7.97519V18.0002C2 19.1032 2.897 20.0002 4 20.0002H20C21.103 20.0002 22 19.1032 22 18.0002V7.97519C22 7.26619 21.62 6.60419 21.008 6.24719ZM19.892 7.91219L12 12.8222L4.108 7.91119L12 3.30819L19.892 7.91219ZM4 18.0002V10.2002L12 15.1782L20 10.2002L20.001 18.0002H4Z"
20 fill="currentColor"
21 />
22 </svg>
23 )
24 }
25
26 export default memo(OpenEnvelope)
27