react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 699 B
JSX
import React, { Component } from 'react';
export default class FilePowerpointIcon 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-file-powerpoint-icon ${this.props.className}`}><path d="M6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm7 1.5V9h5.5L13 3.5zM8 11v2h1v6H8v1h4v-1h-1v-2h2a3 3 0 0 0 0-6H8zm5 2a1 1 0 1 1 0 2h-2v-2h2z"/></svg>
)
}
}