material-ui
Version:
Material Design UI components built with React
16 lines (12 loc) • 476 B
JSX
let React = require('react');
let SvgIcon = require('../../svg-icon');
let ContentBackspace = React.createClass({
render() {
return (
<SvgIcon {...this.props}>
<path d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z"/>
</SvgIcon>
);
}
});
module.exports = ContentBackspace;