Browse
For agents
About
Extendify
/
0.10.0
Extendify
v0.10.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
/
Onboarding
/
svg
/
RefreshIcon.jsx
RefreshIcon.jsx
in Extendify 0.10.0, at src/Onboarding/svg/RefreshIcon.jsx
24 lines
720 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
import
{
memo
}
from
'
@wordpress/element
'
2
3
const
RefreshIcon
=
(
props
)
=>
{
4
const
{
className
,
...
otherProps
}
=
props
5
6
return
(
7
<
svg
8
className
=
{
className
}
9
width
=
"
24
"
10
height
=
"
24
"
11
viewBox
=
"
0 0 24 24
"
12
fill
=
"
none
"
13
xmlns
=
"
http://www.w3.org/2000/svg
"
14
{
...
otherProps
}
>
15
<
path
16
fill
=
"
currentColor
"
17
d
=
"
M17.65,6.35C16.2,4.9 14.21,4 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C15.73,20 18.84,17.45 19.73,14H17.65C16.83,16.33 14.61,18 12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6C13.66,6 15.14,6.69 16.22,7.78L13,11H20V4L17.65,6.35Z
"
18
/>
19
</
svg
>
20
)
21
}
22
23
export
default
memo
(
RefreshIcon
)
24