react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 726 B
JSX
import React, { Component } from 'react';
export default class LanguageCss3Icon 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-language-css3-icon ${this.props.className}`}><path d="M5.017 3l-.668 3.338h13.588l-.424 2.157H3.916l-.659 3.338h13.588l-.758 3.807-5.476 1.814-4.746-1.814.324-1.65H2.851l-.794 4.005L9.907 21l9.05-3.005 1.2-6.027.243-1.209L21.943 3H5.017z"/></svg>
)
}
}