material-svg-icons-react
v1.0.59
Published
material svg icons using react
Readme
material-svg-icons-react
material svg icons using react
Install
npm install --save xampr-svg-iconsUsage
import React, { Component } from 'react'
import Icon from 'material-svg-icons-react'
class Example extends Component {
render () {
let temp=['view-module','view-quilt','home','attachment']
return (
<div>
{temp.map((item,index)=> (
<Icon name={item} size='24px' color='grey' />
))}
</div>
)
}
}
