react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 777 B
JSX
import React, { Component } from 'react';
export default class SealIcon 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-seal-icon ${this.props.className}`}><path d="M20.394 19.37l-4.011-1.38L15.002 22l-3.077-6-2.926 5.999-1.381-4.012-4.012 1.381 2.926-5.998a7 7 0 1 1 10.936 0l2.926 6zM7 9l2.686 1.343-.18 2.993 2.506-1.655 2.502 1.652-.18-2.997 2.682-1.341-2.693-1.346.179-2.976-2.486 1.64-2.522-1.665.18 3.015L7 9z"/></svg>
)
}
}