UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 785 B
import React, { Component } from 'react'; export default class PowerSocketUkIcon 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-uk-icon ${this.props.className}`}><path d="M14.5 13.75H18V16h-3.5v-2.25zm-8.5 0h3.5V16H6v-2.25zM11 6h2v4h-2V6zM4.223 2C2.989 2 2 2.99 2 4.223v15.554C2 21.005 2.995 22 4.223 22h15.554A2.223 2.223 0 0 0 22 19.777V4.223C22 2.989 21 2 19.777 2H4.223zM12 4a8 8 0 1 1 0 16 8 8 0 0 1 0-16z"/></svg> ) } }