react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 714 B
JSX
import React, { Component } from 'react';
export default class XmlIcon 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-xml-icon ${this.props.className}`}><path d="M12.893 2.989l1.956.416-3.742 17.606-1.956-.416L12.893 2.99zm6.693 9.004L16 8.407V5.578L22.422 12 16 18.41v-2.832l3.586-3.585zm-18.008.01L8 5.581V8.41l-3.586 3.586L8 15.58v2.832l-6.422-6.41z"/></svg>
)
}
}