material-ui
Version:
Material Design UI components built with React
16 lines (12 loc) • 324 B
JSX
let React = require('react');
let SvgIcon = require('../../svg-icon');
let HardwarePowerInput = React.createClass({
render() {
return (
<SvgIcon {...this.props}>
<path d="M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z"/>
</SvgIcon>
);
}
});
module.exports = HardwarePowerInput;