Browse
For agents
About
Extendify
/
3.0.5
Extendify
v3.0.5
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
/
Draft
/
svg
/
Mic.jsx
Mic.jsx
in Extendify 3.0.5, at src/Draft/svg/Mic.jsx
12 lines
491 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
3
const
mic
=
(
4
<
svg
viewBox
=
"
0 0 24 24
"
xmlns
=
"
http://www.w3.org/2000/svg
"
>
5
<
title
>
{
__
(
'
Mic Icon
'
,
'
extendify-local
'
)
}
</
title
>
6
<
path
d
=
"
M12 14.5C13.66 14.5 15 13.16 15 11.5V5.5C15 3.84 13.66 2.5 12 2.5C10.34 2.5 9 3.84 9 5.5V11.5C9 13.16 10.34 14.5 12 14.5Z
"
/>
7
<
path
d
=
"
M17 11.5C17 14.26 14.76 16.5 12 16.5C9.24 16.5 7 14.26 7 11.5H5C5 15.03 7.61 17.93 11 18.42V21.5H13V18.42C16.39 17.93 19 15.03 19 11.5H17Z
"
/>
8
</
svg
>
9
)
;
10
11
export
default
mic
;
12