您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

RotateRightVariantIcon.js 1.7 KiB

1234567891011121314151617181920212223242526272829303132333435363738
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. 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; };
  6. var _react = require('react');
  7. var _react2 = _interopRequireDefault(_react);
  8. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  9. 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; }
  10. var DEFAULT_SIZE = 24;
  11. exports.default = function (_ref) {
  12. var _ref$fill = _ref.fill,
  13. fill = _ref$fill === undefined ? 'currentColor' : _ref$fill,
  14. _ref$width = _ref.width,
  15. width = _ref$width === undefined ? DEFAULT_SIZE : _ref$width,
  16. _ref$height = _ref.height,
  17. height = _ref$height === undefined ? DEFAULT_SIZE : _ref$height,
  18. _ref$style = _ref.style,
  19. style = _ref$style === undefined ? {} : _ref$style,
  20. props = _objectWithoutProperties(_ref, ['fill', 'width', 'height', 'style']);
  21. return _react2.default.createElement(
  22. 'svg',
  23. _extends({
  24. viewBox: '0 0 ' + DEFAULT_SIZE + ' ' + DEFAULT_SIZE,
  25. style: _extends({ fill: fill, width: width, height: height }, style)
  26. }, props),
  27. _react2.default.createElement('path', { d: 'M10,4V1L14,5L10,9V6C6.69,6 4,8.69 4,12L4.08,13H2.06L2,12C2,7.58 5.58,4 10,4M17,2H20C21.1,2 22,2.9 22,4V20C22,21.1 21.1,22 20,22H17C15.9,22 15,21.1 15,20V4C15,2.9 15.9,2 17,2M4,15H13V22H4C2.9,22 2,21.1 2,20V17C2,15.9 2.9,15 4,15Z' })
  28. );
  29. };