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.
 
 
 
 

40 lines
1.7 KiB

  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.ArrowCompressIcon = undefined;
  6. var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  7. var _react = require('react');
  8. var _react2 = _interopRequireDefault(_react);
  9. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  10. function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
  11. var DEFAULT_SIZE = 24;
  12. var ArrowCompressIcon = function ArrowCompressIcon(_ref) {
  13. var _ref$fill = _ref.fill,
  14. fill = _ref$fill === undefined ? 'currentColor' : _ref$fill,
  15. _ref$width = _ref.width,
  16. width = _ref$width === undefined ? DEFAULT_SIZE : _ref$width,
  17. _ref$height = _ref.height,
  18. height = _ref$height === undefined ? DEFAULT_SIZE : _ref$height,
  19. _ref$style = _ref.style,
  20. style = _ref$style === undefined ? {} : _ref$style,
  21. props = _objectWithoutProperties(_ref, ['fill', 'width', 'height', 'style']);
  22. return _react2.default.createElement(
  23. 'svg',
  24. _extends({
  25. viewBox: '0 0 ' + DEFAULT_SIZE + ' ' + DEFAULT_SIZE,
  26. style: _extends({ fill: fill, width: width, height: height }, style)
  27. }, props),
  28. _react2.default.createElement('path', { d: 'M19.5,3.09L15,7.59V4H13V11H20V9H16.41L20.91,4.5L19.5,3.09M4,13V15H7.59L3.09,19.5L4.5,20.91L9,16.41V20H11V13H4Z' })
  29. );
  30. };
  31. exports.ArrowCompressIcon = ArrowCompressIcon;