react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 658 B
JSX
import React, { Component } from 'react';
export default class WindowsIcon 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-windows-icon ${this.props.className}`}><path d="M3 12V6.75l6-1.324v6.486L3 12zm17-9v8.75l-10 .147V5.206L20 3zM3 13l6 .088v6.81L3 18.75V13zm17 .25V22l-10-1.912v-6.985l10 .147z"/></svg>
)
}
}