UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 625 B
import React, { Component } from 'react'; export default class TwitchIcon 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-twitch-icon ${this.props.className}`}><path d="M4 2h18v12l-5 5h-4l-3 3H7v-3H2V6l2-4zm16 11V4H6v12h3v3l3-3h5l3-3zm-5-6h2v5h-2V7zm-3 0v5h-2V7h2z"/></svg> ) } }