react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 854 B
JSX
import React, { Component } from 'react';
export default class HeartHalfFullOutlineIcon 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-heart-half-full-outline-icon ${this.props.className}`}><path d="M16.5 4.998c-1.477 0-2.92.915-3.5 2.2v10.54c4.249-3.867 7-6.536 7-9.24 0-1.995-1.506-3.5-3.5-3.5zm0-2c3.083 0 5.5 2.416 5.5 5.5 0 3.775-3.403 6.862-8.552 11.535L12 21.35l-1.449-1.316C5.401 15.36 2 12.273 2 8.498c0-3.084 2.415-5.5 5.5-5.5 1.74 0 3.408.807 4.5 2.086a5.988 5.988 0 0 1 4.5-2.086z"/></svg>
)
}
}