react-material-icons
Version:
Material design icons as [material-ui](https://github.com/callemall/material-ui) SvgIcon component. Icon components build with iconbuilder tool from material-ui.
22 lines (16 loc) • 484 B
JavaScript
;
var React = require('react');
var mui = require('material-ui');
var SvgIcon = mui.SvgIcon;
var createClass = require('create-react-class');
var HardwarePowerInput = createClass({
displayName: 'HardwarePowerInput',
render: function render() {
return React.createElement(
SvgIcon,
this.props,
React.createElement('path', { d: 'M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z' })
);
}
});
module.exports = HardwarePowerInput;