PluginProbe
Extendify / 0.10.1
Extendify v0.10.1
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 / Checkmark.jsx

Checkmark.jsx in Extendify 0.10.1, at src/Onboarding/svg/Checkmark.jsx

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