UNPKG
generator-bingo-dig-h5
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.0.1
Bingo-dig-h5 generator by BINGO.DIG
generator-bingo-dig-h5
/
app
/
templates
/
libs
/
dig-h5
/
components
/
svg-icons
/
drop-down-arrow.jsx
16 lines
(12 loc)
•
292 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
;