UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 810 B
import React, { Component } from 'react'; export default class PowerSocketEuIcon 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-eu-icon ${this.props.className}`}><path d="M7.493 10.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm9.007 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zM4.223 2h15.554C21 2 22 2.99 22 4.223v15.554A2.223 2.223 0 0 1 19.777 22H4.223A2.223 2.223 0 0 1 2 19.777V4.223C2 2.989 2.99 2 4.223 2zM12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16z"/></svg> ) } }