UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 457 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdFormatLineSpacing extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m10 11.7h4.2l-5.9-5.9-5.8 5.9h4.2v16.6h-4.2l5.8 5.9 5.9-5.9h-4.2v-16.6z m6.7-3.4v3.4h20v-3.4h-20z m0 23.4h20v-3.4h-20v3.4z m0-10h20v-3.4h-20v3.4z"/></g> </IconBase> ); } }