PluginProbe
Extendify / 3.0.6
Extendify v3.0.6
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 / Checkmark.jsx

Checkmark.jsx in Extendify 3.0.6, at src/Launch/svg/Checkmark.jsx

25 lines 565 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 Checkmark = (props) => {
5 const { className, ...otherProps } = props;
6
7 return (
8 <svg
9 className={className}
10 viewBox="0 0 22 22"
11 fill="none"
12 xmlns="http://www.w3.org/2000/svg"
13 {...otherProps}
14 >
15 <title>{__('Checkmark', 'extendify-local')}</title>
16 <path
17 d="M8.72912 13.7449L5.77536 10.7911L4.76953 11.7899L8.72912 15.7495L17.2291 7.24948L16.2304 6.25073L8.72912 13.7449Z"
18 fill="currentColor"
19 />
20 </svg>
21 );
22 };
23
24 export default memo(Checkmark);
25