material-ui
Version:
Material Design UI components built with React
16 lines (12 loc) • 345 B
JSX
let React = require('react');
let SvgIcon = require('../../svg-icon');
let ActionViewList = React.createClass({
render() {
return (
<SvgIcon {...this.props}>
<path d="M4 14h4v-4H4v4zm0 5h4v-4H4v4zM4 9h4V5H4v4zm5 5h12v-4H9v4zm0 5h12v-4H9v4zM9 5v4h12V5H9z"/>
</SvgIcon>
);
}
});
module.exports = ActionViewList;