react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 751 B
JSX
import React, { Component } from 'react';
export default class GoogleKeepIcon 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-google-keep-icon ${this.props.className}`}><path d="M4 2h16a2 2 0 0 1 2 2v13.328L17.328 22H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm13 15v3.25L20.25 17H17zm-7 2h4v-1h1v-5a5 5 0 1 0-6 0v5h1v1zm4-2h-4v-1h4v1zm0-2h-4v-1h4v1zM12 5a4 4 0 0 1 2 7.465V13h-4v-.535A4 4 0 0 1 12 5z"/></svg>
)
}
}