Browse
For agents
About
Extendify
/
2.2.0
Extendify
v2.2.0
Switch version
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
Overview
Code
extendify
/
src
/
Assist
/
svg
/
Check.jsx
Check.jsx
in Extendify 2.2.0, at src/Assist/svg/Check.jsx
24 lines
442 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
const
check
=
(
2
<
svg
3
width
=
"
12
"
4
height
=
"
12
"
5
viewBox
=
"
0 0 12 12
"
6
fill
=
"
none
"
7
xmlns
=
"
http://www.w3.org/2000/svg
"
>
8
<
g
clipPath
=
"
url(#clip0_4809_10098)
"
>
9
<
path
10
d
=
"
M11.0789 1.49326L4.59386 10.215L0.833415 7.4189
"
11
stroke
=
"
currentColor
"
12
strokeWidth
=
"
1.2
"
13
/>
14
</
g
>
15
<
defs
>
16
<
clipPath
id
=
"
clip0_4809_10098
"
>
17
<
rect
width
=
"
12
"
height
=
"
12
"
fill
=
"
white
"
/>
18
</
clipPath
>
19
</
defs
>
20
</
svg
>
21
)
;
22
23
export
default
check
;
24