@exah/react-icons
Version:
svg react icons of popular icon packs using ES6 imports
18 lines (15 loc) • 579 B
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import React from 'react';
import Icon from 'react-icon-base';
var MdViewList = function MdViewList(props) {
return React.createElement(
Icon,
_extends({ viewBox: '0 0 40 40' }, props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm15 8.4h20v6.6h-20v-6.6z m0 23.2v-6.6h20v6.6h-20z m0-8.2v-6.8h20v6.8h-20z m-8.4-8.4v-6.6h6.8v6.6h-6.8z m0 16.6v-6.6h6.8v6.6h-6.8z m0-8.2v-6.8h6.8v6.8h-6.8z' })
)
);
};
export default MdViewList;