UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 670 B
import React, { Component } from 'react'; export default class UnfoldMoreHorizontalIcon 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-unfold-more-horizontal-icon ${this.props.className}`}><path d="M12 18.17L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83z"/></svg> ) } }