react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 705 B
JSX
import React, { Component } from 'react';
export default class CheckBookmarkIcon 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-check-bookmark-icon ${this.props.className}`}><path d="M5 1h14a2 2 0 0 1 2 2v13c0 .71-.37 1.335-.93 1.69L12 23l-8.071-5.31A1.999 1.999 0 0 1 3 16V3a2 2 0 0 1 2-2zm5 15l9-9-1.414-1.414L10 13.172 6.414 9.586 5 11l5 5z"/></svg>
)
}
}