Browse
For agents
About
Extendify
/
0.2.0
Extendify
v0.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
/
components
/
icons
/
library
/
star.js
star.js
in Extendify 0.2.0, at src/components/icons/library/star.js
21 lines
852 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
/**
2
* WordPress dependencies
3
*/
4
import
{
Path
,
SVG
}
from
'
@wordpress/primitives
'
5
6
const
star
=
(
7
<
SVG
8
fill
=
"
none
"
9
height
=
"
24
"
10
viewBox
=
"
0 0 24 24
"
11
width
=
"
24
"
12
xmlns
=
"
http://www.w3.org/2000/svg
"
>
13
<
Path
14
d
=
"
m11.7758 3.45425c.0917-.18582.3567-.18581.4484 0l2.3627 4.78731c.0364.07379.1068.12493.1882.13676l5.2831.76769c.2051.02979.287.28178.1386.42642l-3.8229 3.72637c-.0589.0575-.0858.1402-.0719.2213l.9024 5.2618c.0351.2042-.1793.36-.3627.2635l-4.7254-2.4842c-.0728-.0383-.1598-.0383-.2326 0l-4.7254 2.4842c-.18341.0965-.39776-.0593-.36274-.2635l.90247-5.2618c.01391-.0811-.01298-.1638-.0719-.2213l-3.8229-3.72637c-.14838-.14464-.0665-.39663.13855-.42642l5.28312-.76769c.08143-.01183.15182-.06297.18823-.13676z
"
15
fill
=
"
currentColor
"
16
/>
17
</
SVG
>
18
)
19
20
export
default
star
21