react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 685 B
JSX
import React, { Component } from 'react';
export default class DeleteCircleIcon 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-delete-circle-icon ${this.props.className}`}><path d="M12 2c5.53 0 10 4.47 10 10s-4.47 10-10 10S2 17.53 2 12 6.47 2 12 2zm5 5h-2.5l-1-1h-3l-1 1H7v2h10V7zM9 18h6a1 1 0 0 0 1-1v-7H8v7a1 1 0 0 0 1 1z"/></svg>
)
}
}