react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 727 B
JSX
import React, { Component } from 'react';
export default class TacoIcon 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-taco-icon ${this.props.className}`}><path d="M19 18H5a4 4 0 0 1-4-4 8 8 0 0 1 11-7.418A8 8 0 0 1 23 14a4 4 0 0 1-4 4zM3 14a2 2 0 1 0 4 0 7.98 7.98 0 0 1 2.667-5.963L9 8a6 6 0 0 0-6 6zm16 2a2 2 0 0 0 2-2 6 6 0 0 0-12 0c0 .729-.195 1.412-.535 2H19z"/></svg>
)
}
}