react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 869 B
JSX
import React, { Component } from 'react';
export default class SortAlphabeticalIcon 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-sort-alphabetical-icon ${this.props.className}`}><path d="M9.25 5l3.25-3.25L15.75 5h-6.5zm6.5 14l-3.25 3.25L9.25 19h6.5zm-6.859-4.697H6l-.72 2.688H2.915L6 7.004h2.996l3.13 9.987H9.67l-.779-2.688zm-2.562-1.624h2.232l-.629-2.122-.266-.965-.243-.964h-.03l-.227.973-.237.98-.6 2.098zm6.726 4.298v-1.233L17.8 8.97v-.058h-4.302V7.018h7.23v1.323l-4.643 6.683v.058h4.716v1.895h-7.746z"/></svg>
)
}
}