You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 line
1.1 KiB

  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _react = require('react');
  6. var _react2 = _interopRequireDefault(_react);
  7. var _pure = require('recompose/pure');
  8. var _pure2 = _interopRequireDefault(_pure);
  9. var _SvgIcon = require('../../SvgIcon');
  10. var _SvgIcon2 = _interopRequireDefault(_SvgIcon);
  11. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  12. var ContentSelectAll = function ContentSelectAll(props) {
  13. return _react2.default.createElement(
  14. _SvgIcon2.default,
  15. props,
  16. _react2.default.createElement('path', { d: 'M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z' })
  17. );
  18. };
  19. ContentSelectAll = (0, _pure2.default)(ContentSelectAll);
  20. ContentSelectAll.displayName = 'ContentSelectAll';
  21. ContentSelectAll.muiName = 'SvgIcon';
  22. exports.default = ContentSelectAll;