react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 715 B
JSX
import React, { Component } from 'react';
export default class QuicktimeIcon 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-quicktime-icon ${this.props.className}`}><path d="M12 3a9 9 0 0 1 7.622 13.789L21 18.167V20a1 1 0 0 1-1 1h-1.824l-1.382-1.382A9 9 0 1 1 12 3zm0 4a5 5 0 1 0 1.83 9.654l-2.883-2.883a2 2 0 0 1 2.828-2.829l2.882 2.882A5 5 0 0 0 12 7z"/></svg>
)
}
}