react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 782 B
JSX
import React, { Component } from 'react';
export default class DonkeyIcon 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-donkey-icon ${this.props.className}`}><path d="M21.34 10.35l-.07-.07-.09-.09L18 7V6a.5.5 0 0 0-.5-.5.49.49 0 0 0-.37.16L13.46 9H7a2 2 0 0 0-1.68.92l-2.7 2.67A1 1 0 0 0 4 14l1-.93V19h3v-4h5v4h3v-5.17a2 2 0 0 1 .59-1.41L18 11l2 1c.15.081.319.126.49.13A1.12 1.12 0 0 0 21.58 11a1.09 1.09 0 0 0-.24-.65z"/></svg>
)
}
}