react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 798 B
JSX
import React, { Component } from 'react';
export default class HeartBrokenIcon 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-broken-icon ${this.props.className}`}><path d="M12 21.35l-1.45-1.317C5.401 15.361 2 12.274 2 8.498c0-3.084 2.415-5.5 5.5-5.5.665 0 1.32.118 1.937.336L13 9.35l-4 5 3 7zm4.5-18.352c3.083 0 5.5 2.416 5.5 5.5 0 3.776-3.403 6.863-8.552 11.535L12 21.35l-1-6.999 4.5-5-2.647-5.081a5.974 5.974 0 0 1 3.646-1.271z"/></svg>
)
}
}