@semcore/icon 3.5.2 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -2
- package/Stoller/l/index.d.ts +3 -2
- package/Stoller/l/index.js +43 -31
- package/Stoller/l/index.mjs +41 -21
- package/Stoller/m/index.d.ts +3 -2
- package/Stoller/m/index.js +47 -34
- package/Stoller/m/index.mjs +46 -24
- package/Stroller/l/index.d.ts +6 -0
- package/Stroller/l/index.js +49 -0
- package/Stroller/l/index.mjs +29 -0
- package/Stroller/m/index.d.ts +6 -0
- package/Stroller/m/index.js +52 -0
- package/Stroller/m/index.mjs +32 -0
- package/lib/cjs/Icon.js +7 -7
- package/lib/es6/Icon.js +7 -7
- package/package.json +2 -2
- /package/svg-new/icon/{Stoller → Stroller}/l.svg +0 -0
- /package/svg-new/icon/{Stoller → Stroller}/m.svg +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
-
## [3.
|
|
5
|
+
## [3.6.1] - 2023-01-19
|
|
6
6
|
|
|
7
7
|
### Changed
|
|
8
8
|
|
|
9
|
-
- Version patch update due to children dependencies update (`@semcore/flex-box` [4.7.
|
|
9
|
+
- Version patch update due to children dependencies update (`@semcore/flex-box` [4.7.5 ~> 4.7.6], `@semcore/utils` [3.44.3 ~> 3.45.0]).
|
|
10
|
+
|
|
11
|
+
## [3.6.0] - 2023-01-10
|
|
12
|
+
|
|
13
|
+
### BREAK
|
|
14
|
+
|
|
15
|
+
- Remove `Stoller` icon, use `Stroller` instead.
|
|
16
|
+
|
|
17
|
+
## [3.5.1] - 2023-01-09
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Version patch update due to children dependencies update (`@semcore/flex-box` [4.7.3 ~> 4.7.4], `@semcore/utils` [3.44.1 ~> 3.44.2]).
|
|
10
22
|
|
|
11
23
|
## [3.5.0] - 2022-12-27
|
|
12
24
|
|
package/Stoller/l/index.d.ts
CHANGED
package/Stoller/l/index.js
CHANGED
|
@@ -1,49 +1,61 @@
|
|
|
1
|
-
|
|
1
|
+
'use strict';
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require(
|
|
3
|
+
var _interopRequireDefault = require('@babel/runtime/helpers/interopRequireDefault');
|
|
4
4
|
|
|
5
|
-
Object.defineProperty(exports,
|
|
6
|
-
value: true
|
|
5
|
+
Object.defineProperty(exports, '__esModule', {
|
|
6
|
+
value: true,
|
|
7
7
|
});
|
|
8
|
-
exports[
|
|
8
|
+
exports['default'] = void 0;
|
|
9
9
|
|
|
10
|
-
var _extends2 = _interopRequireDefault(require(
|
|
10
|
+
var _extends2 = _interopRequireDefault(require('@babel/runtime/helpers/extends'));
|
|
11
11
|
|
|
12
|
-
var _objectWithoutProperties2 = _interopRequireDefault(
|
|
12
|
+
var _objectWithoutProperties2 = _interopRequireDefault(
|
|
13
|
+
require('@babel/runtime/helpers/objectWithoutProperties'),
|
|
14
|
+
);
|
|
13
15
|
|
|
14
|
-
var _react = _interopRequireDefault(require(
|
|
16
|
+
var _react = _interopRequireDefault(require('react'));
|
|
15
17
|
|
|
16
|
-
var _core = require(
|
|
18
|
+
var _core = require('@semcore/core');
|
|
17
19
|
|
|
18
|
-
var _icon = _interopRequireDefault(require(
|
|
20
|
+
var _icon = _interopRequireDefault(require('@semcore/icon'));
|
|
19
21
|
|
|
20
|
-
var _excluded = [
|
|
22
|
+
var _excluded = ['width', 'height', 'viewBox'];
|
|
21
23
|
|
|
22
24
|
function Stoller(_ref, ref) {
|
|
23
25
|
var _ref$width = _ref.width,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
return /*#__PURE__*/_react[
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
26
|
+
width = _ref$width === void 0 ? '24' : _ref$width,
|
|
27
|
+
_ref$height = _ref.height,
|
|
28
|
+
height = _ref$height === void 0 ? '24' : _ref$height,
|
|
29
|
+
_ref$viewBox = _ref.viewBox,
|
|
30
|
+
viewBox = _ref$viewBox === void 0 ? '0 0 24 24' : _ref$viewBox,
|
|
31
|
+
props = (0, _objectWithoutProperties2['default'])(_ref, _excluded);
|
|
32
|
+
return /*#__PURE__*/ _react['default'].createElement(
|
|
33
|
+
_icon['default'],
|
|
34
|
+
(0, _extends2['default'])(
|
|
35
|
+
{
|
|
36
|
+
ref: ref,
|
|
37
|
+
'data-name': 'Stoller',
|
|
38
|
+
'data-group': 'l',
|
|
39
|
+
width: width,
|
|
40
|
+
height: height,
|
|
41
|
+
viewBox: viewBox,
|
|
42
|
+
},
|
|
43
|
+
props,
|
|
44
|
+
),
|
|
45
|
+
/*#__PURE__*/ _react['default'].createElement('path', {
|
|
46
|
+
fillRule: 'evenodd',
|
|
47
|
+
clipRule: 'evenodd',
|
|
48
|
+
d: 'M5.129 5.89 6.535 8H13V1.818C13 .814 13.814 0 14.818 0h.682a7.5 7.5 0 0 1 0 15H10a5 5 0 0 1-5-5v-.696L3.466 7H2a1 1 0 0 1 0-2h1.465a2 2 0 0 1 1.664.89ZM13 10a2 2 0 0 0 2-2V2h.5a5.5 5.5 0 1 1 0 11H10a3 3 0 0 1-3-3h6ZM7 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM15 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z',
|
|
49
|
+
shapeRendering: 'geometricPrecision',
|
|
50
|
+
}),
|
|
51
|
+
);
|
|
43
52
|
}
|
|
44
53
|
|
|
45
54
|
Stoller.displayName = 'Stoller';
|
|
46
55
|
|
|
47
56
|
var _default = (0, _core.createBaseComponent)(Stoller);
|
|
48
57
|
|
|
49
|
-
|
|
58
|
+
// eslint-disable-next-line no-console
|
|
59
|
+
console.warn(true, 'The "Stoller" icon is deprecated. Use the "Stroller"', 'Icon');
|
|
60
|
+
|
|
61
|
+
exports['default'] = _default;
|
package/Stoller/l/index.mjs
CHANGED
|
@@ -1,29 +1,49 @@
|
|
|
1
|
-
function _extends() {
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign
|
|
3
|
+
? Object.assign.bind()
|
|
4
|
+
: function (target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
2
17
|
|
|
3
18
|
import React from 'react';
|
|
4
19
|
import { createBaseComponent } from '@semcore/core';
|
|
5
20
|
import Icon from '@semcore/icon';
|
|
6
21
|
|
|
7
|
-
function Stoller({
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
function Stoller({ width = '24', height = '24', viewBox = '0 0 24 24', ...props }, ref) {
|
|
23
|
+
return /*#__PURE__*/ React.createElement(
|
|
24
|
+
Icon,
|
|
25
|
+
_extends(
|
|
26
|
+
{
|
|
27
|
+
ref: ref,
|
|
28
|
+
'data-name': 'Stoller',
|
|
29
|
+
'data-group': 'l',
|
|
30
|
+
width: width,
|
|
31
|
+
height: height,
|
|
32
|
+
viewBox: viewBox,
|
|
33
|
+
},
|
|
34
|
+
props,
|
|
35
|
+
),
|
|
36
|
+
/*#__PURE__*/ React.createElement('path', {
|
|
37
|
+
fillRule: 'evenodd',
|
|
38
|
+
clipRule: 'evenodd',
|
|
39
|
+
d: 'M5.129 5.89 6.535 8H13V1.818C13 .814 13.814 0 14.818 0h.682a7.5 7.5 0 0 1 0 15H10a5 5 0 0 1-5-5v-.696L3.466 7H2a1 1 0 0 1 0-2h1.465a2 2 0 0 1 1.664.89ZM13 10a2 2 0 0 0 2-2V2h.5a5.5 5.5 0 1 1 0 11H10a3 3 0 0 1-3-3h6ZM7 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM15 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z',
|
|
40
|
+
shapeRendering: 'geometricPrecision',
|
|
41
|
+
}),
|
|
42
|
+
);
|
|
26
43
|
}
|
|
27
44
|
|
|
45
|
+
// eslint-disable-next-line no-console
|
|
46
|
+
console.warn(true, 'The "Stoller" icon is deprecated. Use the "Stroller"', 'Icon');
|
|
47
|
+
|
|
28
48
|
Stoller.displayName = 'Stoller';
|
|
29
|
-
export default createBaseComponent(Stoller);
|
|
49
|
+
export default createBaseComponent(Stoller);
|
package/Stoller/m/index.d.ts
CHANGED
package/Stoller/m/index.js
CHANGED
|
@@ -1,52 +1,65 @@
|
|
|
1
|
-
|
|
1
|
+
'use strict';
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require(
|
|
3
|
+
var _interopRequireDefault = require('@babel/runtime/helpers/interopRequireDefault');
|
|
4
4
|
|
|
5
|
-
Object.defineProperty(exports,
|
|
6
|
-
value: true
|
|
5
|
+
Object.defineProperty(exports, '__esModule', {
|
|
6
|
+
value: true,
|
|
7
7
|
});
|
|
8
|
-
exports[
|
|
8
|
+
exports['default'] = void 0;
|
|
9
9
|
|
|
10
|
-
var _extends2 = _interopRequireDefault(require(
|
|
10
|
+
var _extends2 = _interopRequireDefault(require('@babel/runtime/helpers/extends'));
|
|
11
11
|
|
|
12
|
-
var _objectWithoutProperties2 = _interopRequireDefault(
|
|
12
|
+
var _objectWithoutProperties2 = _interopRequireDefault(
|
|
13
|
+
require('@babel/runtime/helpers/objectWithoutProperties'),
|
|
14
|
+
);
|
|
13
15
|
|
|
14
|
-
var _react = _interopRequireDefault(require(
|
|
16
|
+
var _react = _interopRequireDefault(require('react'));
|
|
15
17
|
|
|
16
|
-
var _core = require(
|
|
18
|
+
var _core = require('@semcore/core');
|
|
17
19
|
|
|
18
|
-
var _icon = _interopRequireDefault(require(
|
|
20
|
+
var _icon = _interopRequireDefault(require('@semcore/icon'));
|
|
19
21
|
|
|
20
|
-
var _excluded = [
|
|
22
|
+
var _excluded = ['width', 'height', 'viewBox'];
|
|
21
23
|
|
|
22
24
|
function Stoller(_ref, ref) {
|
|
23
25
|
var _ref$width = _ref.width,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
return /*#__PURE__*/_react[
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
26
|
+
width = _ref$width === void 0 ? '16' : _ref$width,
|
|
27
|
+
_ref$height = _ref.height,
|
|
28
|
+
height = _ref$height === void 0 ? '16' : _ref$height,
|
|
29
|
+
_ref$viewBox = _ref.viewBox,
|
|
30
|
+
viewBox = _ref$viewBox === void 0 ? '0 0 16 16' : _ref$viewBox,
|
|
31
|
+
props = (0, _objectWithoutProperties2['default'])(_ref, _excluded);
|
|
32
|
+
return /*#__PURE__*/ _react['default'].createElement(
|
|
33
|
+
_icon['default'],
|
|
34
|
+
(0, _extends2['default'])(
|
|
35
|
+
{
|
|
36
|
+
ref: ref,
|
|
37
|
+
'data-name': 'Stoller',
|
|
38
|
+
'data-group': 'm',
|
|
39
|
+
width: width,
|
|
40
|
+
height: height,
|
|
41
|
+
viewBox: viewBox,
|
|
42
|
+
},
|
|
43
|
+
props,
|
|
44
|
+
),
|
|
45
|
+
/*#__PURE__*/ _react['default'].createElement('path', {
|
|
46
|
+
fillRule: 'evenodd',
|
|
47
|
+
clipRule: 'evenodd',
|
|
48
|
+
d: 'M8 0a1 1 0 0 0-1 1v4H3.766l-.909-1.514A1 1 0 0 0 2 3H1a1 1 0 0 0 0 2h.434L2 5.946A1.016 1.016 0 0 0 2 6v1a4 4 0 0 0 4 4h3.5a5.5 5.5 0 1 0 0-11H8ZM7 7a2 2 0 0 0 2-2V2h.5a3.486 3.486 0 0 1 1.668.422A3.5 3.5 0 0 1 9.5 9H6a2 2 0 0 1-2-2h3Z',
|
|
49
|
+
shapeRendering: 'geometricPrecision',
|
|
50
|
+
}),
|
|
51
|
+
/*#__PURE__*/ _react['default'].createElement('path', {
|
|
52
|
+
d: 'M4 14.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM10.5 13a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z',
|
|
53
|
+
shapeRendering: 'geometricPrecision',
|
|
54
|
+
}),
|
|
55
|
+
);
|
|
46
56
|
}
|
|
47
57
|
|
|
48
58
|
Stoller.displayName = 'Stoller';
|
|
49
59
|
|
|
50
60
|
var _default = (0, _core.createBaseComponent)(Stoller);
|
|
51
61
|
|
|
52
|
-
|
|
62
|
+
// eslint-disable-next-line no-console
|
|
63
|
+
console.warn(true, 'The "Stoller" icon is deprecated. Use the "Stroller"', 'Icon');
|
|
64
|
+
|
|
65
|
+
exports['default'] = _default;
|
package/Stoller/m/index.mjs
CHANGED
|
@@ -1,32 +1,54 @@
|
|
|
1
|
-
function _extends() {
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign
|
|
3
|
+
? Object.assign.bind()
|
|
4
|
+
: function (target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
2
17
|
|
|
3
18
|
import React from 'react';
|
|
4
19
|
import { createBaseComponent } from '@semcore/core';
|
|
5
20
|
import Icon from '@semcore/icon';
|
|
6
21
|
|
|
7
|
-
function Stoller({
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
function Stoller({ width = '16', height = '16', viewBox = '0 0 16 16', ...props }, ref) {
|
|
23
|
+
return /*#__PURE__*/ React.createElement(
|
|
24
|
+
Icon,
|
|
25
|
+
_extends(
|
|
26
|
+
{
|
|
27
|
+
ref: ref,
|
|
28
|
+
'data-name': 'Stoller',
|
|
29
|
+
'data-group': 'm',
|
|
30
|
+
width: width,
|
|
31
|
+
height: height,
|
|
32
|
+
viewBox: viewBox,
|
|
33
|
+
},
|
|
34
|
+
props,
|
|
35
|
+
),
|
|
36
|
+
/*#__PURE__*/ React.createElement('path', {
|
|
37
|
+
fillRule: 'evenodd',
|
|
38
|
+
clipRule: 'evenodd',
|
|
39
|
+
d: 'M8 0a1 1 0 0 0-1 1v4H3.766l-.909-1.514A1 1 0 0 0 2 3H1a1 1 0 0 0 0 2h.434L2 5.946A1.016 1.016 0 0 0 2 6v1a4 4 0 0 0 4 4h3.5a5.5 5.5 0 1 0 0-11H8ZM7 7a2 2 0 0 0 2-2V2h.5a3.486 3.486 0 0 1 1.668.422A3.5 3.5 0 0 1 9.5 9H6a2 2 0 0 1-2-2h3Z',
|
|
40
|
+
shapeRendering: 'geometricPrecision',
|
|
41
|
+
}),
|
|
42
|
+
/*#__PURE__*/ React.createElement('path', {
|
|
43
|
+
d: 'M4 14.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM10.5 13a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z',
|
|
44
|
+
shapeRendering: 'geometricPrecision',
|
|
45
|
+
}),
|
|
46
|
+
);
|
|
29
47
|
}
|
|
30
48
|
|
|
31
49
|
Stoller.displayName = 'Stoller';
|
|
32
|
-
|
|
50
|
+
|
|
51
|
+
// eslint-disable-next-line no-console
|
|
52
|
+
console.warn(true, 'The "Stoller" icon is deprecated. Use the "Stroller"', 'Icon');
|
|
53
|
+
|
|
54
|
+
export default createBaseComponent(Stoller);
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
|
15
|
+
|
|
16
|
+
var _core = require("@semcore/core");
|
|
17
|
+
|
|
18
|
+
var _icon = _interopRequireDefault(require("@semcore/icon"));
|
|
19
|
+
|
|
20
|
+
var _excluded = ["width", "height", "viewBox"];
|
|
21
|
+
|
|
22
|
+
function Stroller(_ref, ref) {
|
|
23
|
+
var _ref$width = _ref.width,
|
|
24
|
+
width = _ref$width === void 0 ? '24' : _ref$width,
|
|
25
|
+
_ref$height = _ref.height,
|
|
26
|
+
height = _ref$height === void 0 ? '24' : _ref$height,
|
|
27
|
+
_ref$viewBox = _ref.viewBox,
|
|
28
|
+
viewBox = _ref$viewBox === void 0 ? '0 0 24 24' : _ref$viewBox,
|
|
29
|
+
props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
|
|
31
|
+
ref: ref,
|
|
32
|
+
"data-name": "Stroller",
|
|
33
|
+
"data-group": "l",
|
|
34
|
+
width: width,
|
|
35
|
+
height: height,
|
|
36
|
+
viewBox: viewBox
|
|
37
|
+
}, props), /*#__PURE__*/_react["default"].createElement("path", {
|
|
38
|
+
fillRule: "evenodd",
|
|
39
|
+
clipRule: "evenodd",
|
|
40
|
+
d: "M5.129 5.89 6.535 8H13V1.818C13 .814 13.814 0 14.818 0h.682a7.5 7.5 0 0 1 0 15H10a5 5 0 0 1-5-5v-.696L3.466 7H2a1 1 0 0 1 0-2h1.465a2 2 0 0 1 1.664.89ZM13 10a2 2 0 0 0 2-2V2h.5a5.5 5.5 0 1 1 0 11H10a3 3 0 0 1-3-3h6ZM7 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM15 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
|
|
41
|
+
shapeRendering: "geometricPrecision"
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
Stroller.displayName = 'Stroller';
|
|
46
|
+
|
|
47
|
+
var _default = (0, _core.createBaseComponent)(Stroller);
|
|
48
|
+
|
|
49
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : 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; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { createBaseComponent } from '@semcore/core';
|
|
5
|
+
import Icon from '@semcore/icon';
|
|
6
|
+
|
|
7
|
+
function Stroller({
|
|
8
|
+
width = '24',
|
|
9
|
+
height = '24',
|
|
10
|
+
viewBox = '0 0 24 24',
|
|
11
|
+
...props
|
|
12
|
+
}, ref) {
|
|
13
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({
|
|
14
|
+
ref: ref,
|
|
15
|
+
"data-name": "Stroller",
|
|
16
|
+
"data-group": "l",
|
|
17
|
+
width: width,
|
|
18
|
+
height: height,
|
|
19
|
+
viewBox: viewBox
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M5.129 5.89 6.535 8H13V1.818C13 .814 13.814 0 14.818 0h.682a7.5 7.5 0 0 1 0 15H10a5 5 0 0 1-5-5v-.696L3.466 7H2a1 1 0 0 1 0-2h1.465a2 2 0 0 1 1.664.89ZM13 10a2 2 0 0 0 2-2V2h.5a5.5 5.5 0 1 1 0 11H10a3 3 0 0 1-3-3h6ZM7 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM15 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
|
|
24
|
+
shapeRendering: "geometricPrecision"
|
|
25
|
+
}));
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
Stroller.displayName = 'Stroller';
|
|
29
|
+
export default createBaseComponent(Stroller);
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
|
15
|
+
|
|
16
|
+
var _core = require("@semcore/core");
|
|
17
|
+
|
|
18
|
+
var _icon = _interopRequireDefault(require("@semcore/icon"));
|
|
19
|
+
|
|
20
|
+
var _excluded = ["width", "height", "viewBox"];
|
|
21
|
+
|
|
22
|
+
function Stroller(_ref, ref) {
|
|
23
|
+
var _ref$width = _ref.width,
|
|
24
|
+
width = _ref$width === void 0 ? '16' : _ref$width,
|
|
25
|
+
_ref$height = _ref.height,
|
|
26
|
+
height = _ref$height === void 0 ? '16' : _ref$height,
|
|
27
|
+
_ref$viewBox = _ref.viewBox,
|
|
28
|
+
viewBox = _ref$viewBox === void 0 ? '0 0 16 16' : _ref$viewBox,
|
|
29
|
+
props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
|
|
31
|
+
ref: ref,
|
|
32
|
+
"data-name": "Stroller",
|
|
33
|
+
"data-group": "m",
|
|
34
|
+
width: width,
|
|
35
|
+
height: height,
|
|
36
|
+
viewBox: viewBox
|
|
37
|
+
}, props), /*#__PURE__*/_react["default"].createElement("path", {
|
|
38
|
+
fillRule: "evenodd",
|
|
39
|
+
clipRule: "evenodd",
|
|
40
|
+
d: "M8 0a1 1 0 0 0-1 1v4H3.766l-.909-1.514A1 1 0 0 0 2 3H1a1 1 0 0 0 0 2h.434L2 5.946A1.016 1.016 0 0 0 2 6v1a4 4 0 0 0 4 4h3.5a5.5 5.5 0 1 0 0-11H8ZM7 7a2 2 0 0 0 2-2V2h.5a3.486 3.486 0 0 1 1.668.422A3.5 3.5 0 0 1 9.5 9H6a2 2 0 0 1-2-2h3Z",
|
|
41
|
+
shapeRendering: "geometricPrecision"
|
|
42
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
43
|
+
d: "M4 14.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM10.5 13a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",
|
|
44
|
+
shapeRendering: "geometricPrecision"
|
|
45
|
+
}));
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
Stroller.displayName = 'Stroller';
|
|
49
|
+
|
|
50
|
+
var _default = (0, _core.createBaseComponent)(Stroller);
|
|
51
|
+
|
|
52
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : 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; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { createBaseComponent } from '@semcore/core';
|
|
5
|
+
import Icon from '@semcore/icon';
|
|
6
|
+
|
|
7
|
+
function Stroller({
|
|
8
|
+
width = '16',
|
|
9
|
+
height = '16',
|
|
10
|
+
viewBox = '0 0 16 16',
|
|
11
|
+
...props
|
|
12
|
+
}, ref) {
|
|
13
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({
|
|
14
|
+
ref: ref,
|
|
15
|
+
"data-name": "Stroller",
|
|
16
|
+
"data-group": "m",
|
|
17
|
+
width: width,
|
|
18
|
+
height: height,
|
|
19
|
+
viewBox: viewBox
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M8 0a1 1 0 0 0-1 1v4H3.766l-.909-1.514A1 1 0 0 0 2 3H1a1 1 0 0 0 0 2h.434L2 5.946A1.016 1.016 0 0 0 2 6v1a4 4 0 0 0 4 4h3.5a5.5 5.5 0 1 0 0-11H8ZM7 7a2 2 0 0 0 2-2V2h.5a3.486 3.486 0 0 1 1.668.422A3.5 3.5 0 0 1 9.5 9H6a2 2 0 0 1-2-2h3Z",
|
|
24
|
+
shapeRendering: "geometricPrecision"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M4 14.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM10.5 13a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",
|
|
27
|
+
shapeRendering: "geometricPrecision"
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
Stroller.displayName = 'Stroller';
|
|
32
|
+
export default createBaseComponent(Stroller);
|
package/lib/cjs/Icon.js
CHANGED
|
@@ -52,16 +52,16 @@ var styles = (
|
|
|
52
52
|
/*__reshadow_css_start__*/
|
|
53
53
|
_core.sstyled.insert(
|
|
54
54
|
/*__inner_css_start__*/
|
|
55
|
-
".
|
|
55
|
+
".___SIcon_1da30_gg_{display:inline-block;-webkit-user-select:none;-moz-user-select:none;user-select:none;shape-rendering:geometricPrecision;box-sizing:content-box;fill:currentColor;flex-shrink:0;outline:none;color:var(--color_1da30)}.___SIcon_1da30_gg_.__keyboardFocused_1da30_gg_{box-shadow:var(--intergalactic-keyboard-focus,0 0 0 3px rgba(0,143,248,.3))}.___SIcon_1da30_gg_.__interactive_1da30_gg_{cursor:pointer}.___SIcon_1da30_gg_.__interactive_1da30_gg_:hover{color:var(--color-interactive_1da30)}"
|
|
56
56
|
/*__inner_css_end__*/
|
|
57
|
-
, "
|
|
57
|
+
, "1da30_gg_")
|
|
58
58
|
/*__reshadow_css_end__*/
|
|
59
59
|
, {
|
|
60
|
-
"__SIcon": "
|
|
61
|
-
"--color": "--
|
|
62
|
-
"_keyboardFocused": "
|
|
63
|
-
"_interactive": "
|
|
64
|
-
"--color-interactive": "--color-
|
|
60
|
+
"__SIcon": "___SIcon_1da30_gg_",
|
|
61
|
+
"--color": "--color_1da30",
|
|
62
|
+
"_keyboardFocused": "__keyboardFocused_1da30_gg_",
|
|
63
|
+
"_interactive": "__interactive_1da30_gg_",
|
|
64
|
+
"--color-interactive": "--color-interactive_1da30"
|
|
65
65
|
});
|
|
66
66
|
|
|
67
67
|
function Icon(props, ref) {
|
package/lib/es6/Icon.js
CHANGED
|
@@ -25,16 +25,16 @@ var styles = (
|
|
|
25
25
|
/*__reshadow_css_start__*/
|
|
26
26
|
_sstyled.insert(
|
|
27
27
|
/*__inner_css_start__*/
|
|
28
|
-
".
|
|
28
|
+
".___SIcon_1da30_gg_{display:inline-block;-webkit-user-select:none;-moz-user-select:none;user-select:none;shape-rendering:geometricPrecision;box-sizing:content-box;fill:currentColor;flex-shrink:0;outline:none;color:var(--color_1da30)}.___SIcon_1da30_gg_.__keyboardFocused_1da30_gg_{box-shadow:var(--intergalactic-keyboard-focus,0 0 0 3px rgba(0,143,248,.3))}.___SIcon_1da30_gg_.__interactive_1da30_gg_{cursor:pointer}.___SIcon_1da30_gg_.__interactive_1da30_gg_:hover{color:var(--color-interactive_1da30)}"
|
|
29
29
|
/*__inner_css_end__*/
|
|
30
|
-
, "
|
|
30
|
+
, "1da30_gg_")
|
|
31
31
|
/*__reshadow_css_end__*/
|
|
32
32
|
, {
|
|
33
|
-
"__SIcon": "
|
|
34
|
-
"--color": "--
|
|
35
|
-
"_keyboardFocused": "
|
|
36
|
-
"_interactive": "
|
|
37
|
-
"--color-interactive": "--color-
|
|
33
|
+
"__SIcon": "___SIcon_1da30_gg_",
|
|
34
|
+
"--color": "--color_1da30",
|
|
35
|
+
"_keyboardFocused": "__keyboardFocused_1da30_gg_",
|
|
36
|
+
"_interactive": "__interactive_1da30_gg_",
|
|
37
|
+
"--color-interactive": "--color-interactive_1da30"
|
|
38
38
|
});
|
|
39
39
|
|
|
40
40
|
function Icon(props, ref) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/icon",
|
|
3
3
|
"description": "Semrush Icon Component",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.6.1",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es6/index.js",
|
|
7
7
|
"typings": "lib/types/index.d.ts",
|
|
@@ -36,6 +36,6 @@
|
|
|
36
36
|
"transform": "pnpm icon-transform-svg",
|
|
37
37
|
"build": "pnpm run clean && pnpm semcore-builder --source=js && pnpm run transform --configFile=./transform-svg-legacy.config.js && pnpm run transform --configFile=./transform-svg.config.js",
|
|
38
38
|
"test": "jest",
|
|
39
|
-
"clean": "ls -d */ | egrep -v \"__tests__|src|svg|svg-new|node_modules\" | xargs rm -rf"
|
|
39
|
+
"clean": "ls -d */ | egrep -v \"__tests__|src|svg|svg-new|node_modules|Stoller\" | xargs rm -rf"
|
|
40
40
|
}
|
|
41
41
|
}
|
|
File without changes
|
|
File without changes
|