UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 707 B
import React, { Component } from 'react'; export default class BoneIcon 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-bone-icon ${this.props.className}`}><path d="M8 14a3 3 0 1 1-5.236-2A3 3 0 1 1 8 10c1.333.083 2.667.167 4 .167 1.333 0 2.667-.084 4-.167a3 3 0 1 1 5.236 2A3 3 0 1 1 16 14c-1.333-.083-2.667-.167-4-.167-1.333 0-2.667.084-4 .167z"/></svg> ) } }