react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 544 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class MdGradient extends React.Component {
render() {
return (
<IconBase viewBox="0 0 24 24" {...this.props}>
<g><path d="M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z"/></g>
</IconBase>
);
}
}