UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 652 B
import React, { Component } from 'react'; export default class FormatHeaderUpIcon 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-format-header-up-icon ${this.props.className}`}><path d="M2 4h2v6h4V4h2v14H8v-6H4v6H2V4zm18.586 10.415L17 10.828l-3.586 3.587L12 13.001 17 8l5 5.001-1.414 1.414z"/></svg> ) } }