Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

40 строки
1.7 KiB

  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.UnfoldLessIcon = 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 UnfoldLessIcon = function UnfoldLessIcon(_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: 'M16.59,5.41L15.17,4L12,7.17L8.83,4L7.41,5.41L12,10M7.41,18.59L8.83,20L12,16.83L15.17,20L16.58,18.59L12,14L7.41,18.59Z' })
  29. );
  30. };
  31. exports.UnfoldLessIcon = UnfoldLessIcon;