react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 664 B
JSX
import React, { Component } from 'react';
export default class GooglePhotosIcon 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-photos-icon ${this.props.className}`}><path d="M17 12V7l-5-5v5H7l-5 5h5v5l5 5v-5h5l5-5h-5zm-4.12.88L12 15.53l-.88-2.65L8.47 12l2.65-.88.88-2.66.88 2.65 2.65.88-2.65.89z"/></svg>
)
}
}