UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 773 B
import React, { Component } from 'react'; export default class UsbIcon 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-usb-icon ${this.props.className}`}><path d="M15 6.998v4h1v2h-3v-8h2l-3-4-3 4h2v8H8v-2.07c.703-.367 1.2-1.08 1.2-1.93a2.2 2.2 0 0 0-4.4 0c0 .85.495 1.563 1.2 1.93v2.07c0 1.105.893 2 2 2h3v3.051A2.19 2.19 0 0 0 9.8 20a2.2 2.2 0 0 0 4.4 0c0-.854-.492-1.585-1.2-1.95V15h3a2 2 0 0 0 2-2v-2h1v-4h-4z"/></svg> ) } }