UNPKG
@ysmood/material-ui
Version:
latest (0.8.1)
0.8.1
0.8.0
Material Design UI components built with React
material-ui.com
callemall/material-ui
@ysmood/material-ui
/
src
/
svg-icons
/
drop-down-arrow.jsx
17 lines
(12 loc)
•
294 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var
React
=
require
(
'react'
);
var
SvgIcon
=
require
(
'../svg-icon'
);
var
DropDownArrow
=
React
.
createClass
({
render
:
function
(
) {
return
(
<
SvgIcon
{
...this.props
}>
<
polygon
points
=
"7,9.5 12,14.5 17,9.5 "
/>
</
SvgIcon
>
); } });
module
.
exports
=
DropDownArrow
;