UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 738 B
import React, { Component } from 'react'; export default class DuckIcon 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-duck-icon ${this.props.className}`}><path d="M8.5 5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM10 2a5 5 0 0 1 2.862 9.1c1.573.147 3.356.509 5.138 1.4 3 1.5 4-.5 4-.5s-1 9-7 9H9s-5 0-5-5c0-3 2.999-4 2-5.998C2 10 2 6.5 2 6.5c1 .5 2.243.485 3.012.149A5 5 0 0 1 10 2z"/></svg> ) } }