Browse
For agents
About
Extendify
/
3.1.0
Extendify
v3.1.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
/
Launch
/
components
/
QuestionIcon
/
Icons
/
newsmode.js
newsmode.js
in Extendify 3.1.0, at src/Launch/components/QuestionIcon/Icons/newsmode.js
14 lines
530 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
{
__
}
from
'
@wordpress/i18n
'
;
2
export
const
Newsmode
=
(
)
=>
(
3
<
svg
4
xmlns
=
"
http://www.w3.org/2000/svg
"
5
height
=
"
20px
"
6
viewBox
=
"
0 -960 960 960
"
7
width
=
"
20px
"
8
fill
=
"
currentColor
"
9
>
10
<
title
>
{
__
(
'
Newsmode Icon
'
,
'
extendify-local
'
)
}
</
title
>
11
<
path
d
=
"
M160-120q-33 0-56.5-23.5T80-200v-560q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v560q0 33-23.5 56.5T800-120H160Zm0-80h640v-560H160v560Zm80-80h480v-80H240v80Zm0-160h160v-240H240v240Zm240 0h240v-80H480v80Zm0-160h240v-80H480v80ZM160-200v-560 560Z
"
/>
12
</
svg
>
13
)
;
14