material-ui
Version:
Material Design UI components built with React
16 lines (12 loc) • 350 B
JSX
let React = require('react');
let SvgIcon = require('../../svg-icon');
let ActionViewModule = React.createClass({
render() {
return (
<SvgIcon {...this.props}>
<path d="M4 11h5V5H4v6zm0 7h5v-6H4v6zm6 0h5v-6h-5v6zm6 0h5v-6h-5v6zm-6-7h5V5h-5v6zm6-6v6h5V5h-5z"/>
</SvgIcon>
);
}
});
module.exports = ActionViewModule;