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
/
action-home.jsx
16 lines
(12 loc)
•
298 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
ActionHome
=
React
.
createClass
({
render
:
function
(
) {
return
(
<
SvgIcon
{
...this.props
}>
<
path
d
=
"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"
>
</
path
>
</
SvgIcon
>
); } });
module
.
exports
=
ActionHome
;