Browse
For agents
About
ElasticPress
/
4.2.1
ElasticPress
v4.2.1
Switch version
5.3.5
5.3.4
3.6.5
3.6.6
4.0.0
4.0.1
4.1.0
4.2.0
4.2.1
4.2.2
4.3.0
4.3.1
4.4.0
4.4.1
4.5.0
4.5.1
4.5.2
4.6.0
4.6.1
4.7.0
4.7.1
4.7.2
5.0.0
5.0.1
5.0.2
All 108 releases
Overview
Code
elasticpress
/
assets
/
js
/
sync
/
components
/
icons
/
thumbs-down.js
thumbs-down.js
in ElasticPress 4.2.1, at assets/js/sync/components/icons/thumbs-down.js
16 lines
490 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
{
SVG
,
Path
}
from
'
@wordpress/primitives
'
;
2
3
export
default
(
)
=>
{
4
return
(
5
<
SVG
6
version
=
"
1.1
"
7
xmlns
=
"
http://www.w3.org/2000/svg
"
8
width
=
"
20
"
9
height
=
"
20
"
10
viewBox
=
"
0 0 20 20
"
11
>
12
<
Path
d
=
"
M7.28 18c-0.15 0.020-0.26-0.020-0.41-0.070-0.56-0.19-0.83-0.79-0.66-1.35 0.17-0.55 1-3.040 1-3.58 0-0.53-0.75-1-1.35-1h-3c-0.6 0-1-0.4-1-1s2-7 2-7c0.17-0.39 0.55-1 1-1h9.14v9h-2.14c-0.41 0.41-3.3 4.71-3.58 5.27-0.21 0.41-0.6 0.68-1 0.73zM18 12h-2v-9h2v9z
"
/>
13
</
SVG
>
14
)
;
15
}
;
16