react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 804 B
JSX
import React, { Component } from 'react';
export default class GooglePlayIcon 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-play-icon ${this.props.className}`}><path d="M3 20.5v-17a1.5 1.5 0 0 1 .844-1.35l9.846 9.847-9.85 9.85A1.5 1.5 0 0 1 3 20.5zm13.814-5.38L6.048 21.338l8.491-8.491 2.275 2.275zm3.347-4.312a1.498 1.498 0 0 1 .016 2.371L17.89 14.5l-2.502-2.502 2.5-2.5 2.273 1.311zM6.054 2.664l10.759 6.211-2.274 2.274-8.485-8.485z"/></svg>
)
}
}