react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 633 B
JSX
import React, { Component } from 'react';
export default class PowerSocketIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-power-socket-icon ${this.props.className}`}><path d="M15 15h2v-4h-2m-8 4h2v-4H7m4 2h2V9h-2M8.83 7h6.37l3.8 3.8V17H5v-6.2M8 5l-5 5v9h18v-9l-5-5H8z"/></svg>
)
}
}