| 1 |
import { memo } from '@wordpress/element'; |
| 2 |
import { __ } from '@wordpress/i18n'; |
| 3 |
|
| 4 |
const OpenEnvelope = (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>{__('Open Envelope', 'extendify-local')}</title> |
| 16 |
<path opacity="0.3" d="M12 14L3 9V19H21V9L12 14Z" fill="currentColor" /> |
| 17 |
<path |
| 18 |
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" |
| 19 |
fill="currentColor" |
| 20 |
/> |
| 21 |
</svg> |
| 22 |
); |
| 23 |
}; |
| 24 |
|
| 25 |
export default memo(OpenEnvelope); |
| 26 |
|