react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 759 B
JSX
import React, { Component } from 'react';
export default class LanguageHtml5Icon 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-html5-icon ${this.props.className}`}><path d="M12 17.563l4.072-1.13.546-6.1H9.377L9.195 8.3h7.603l.178-1.987H7.024l.536 6.008h6.886l-.23 2.577-2.216.598-2.216-.597-.147-1.655H7.642l.285 3.19L12 17.563zM4.068 3h15.864l-1.447 16.201L11.996 21l-6.483-1.8L4.068 3z"/></svg>
)
}
}