react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 675 B
JSX
import React, { Component } from 'react';
export default class VisualstudioIcon 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-visualstudio-icon ${this.props.className}`}><path d="M17 8.5l-4.747 3.82L17 16V8.5zM4.7 18.4L2 16.7v-9l3-1 4.299 3.332L18 2l4 2.5V20l-5 2-7.656-7.338L4.7 18.4zM5 14l1.86-1.717L5 10.5V14z"/></svg>
)
}
}