UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 664 B
import React, { Component } from 'react'; export default class ElephantIcon 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-elephant-icon ${this.props.className}`}><path d="M19.5 15.5a.5.5 0 0 1-1 0v-7c0-1.93-2.07-3.5-4-3.5H6a4 4 0 0 0-4 4v10h4v-4h5v4h4v-4.5a.5.5 0 0 1 1 0V16a3 3 0 0 0 6 0v-2h-2.5v1.5z"/></svg> ) } }