@semcore/icon 2.29.1 → 2.29.4
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/AppBlock/l/index.d.ts +4 -6
- package/AppBlock/l/index.js +9 -44
- package/AppBlock/l/index.mjs +6 -27
- package/AppBlock/m/index.d.ts +4 -6
- package/AppBlock/m/index.js +9 -48
- package/AppBlock/m/index.mjs +6 -31
- package/AppsBlock/l/index.d.ts +7 -0
- package/AppsBlock/l/index.js +49 -0
- package/AppsBlock/l/index.mjs +29 -0
- package/AppsBlock/m/index.d.ts +7 -0
- package/AppsBlock/m/index.js +53 -0
- package/AppsBlock/m/index.mjs +33 -0
- package/CHANGELOG.md +18 -0
- package/lib/cjs/Icon.js +7 -7
- package/lib/es6/Icon.js +7 -7
- package/package.json +3 -3
- /package/svg-new/icon/{AppBlock → AppsBlock}/l.svg +0 -0
- /package/svg-new/icon/{AppBlock → AppsBlock}/m.svg +0 -0
package/AppBlock/l/index.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
declare const _default: import("@semcore/core").ComponentType<Merge<IIconProps, React.SVGAttributes<SVGElement>>, {}, {}>;
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated Please, use `AppsBlock/l` instead. This icon will be removed in the next major release
|
|
3
|
+
* */
|
|
4
|
+
declare const _default: typeof import('../../AppsBlock/l');
|
|
6
5
|
export default _default;
|
|
7
|
-
|
package/AppBlock/l/index.js
CHANGED
|
@@ -1,49 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
3
|
+
Object.defineProperty(exports, '__esModule', {
|
|
4
|
+
value: true,
|
|
7
5
|
});
|
|
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 AppBlock(_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": "AppBlock",
|
|
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: "M3 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Zm2 5V5h4v4H5ZM3 14a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-6Zm2 5v-4h4v4H5ZM13 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V4Zm2 5V5h4v4h-4ZM17 13a1 1 0 0 0-1 1v2h-2a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2h-2v-2a1 1 0 0 0-1-1Z",
|
|
41
|
-
shapeRendering: "geometricPrecision"
|
|
42
|
-
}));
|
|
43
|
-
}
|
|
44
6
|
|
|
45
|
-
|
|
7
|
+
var AppsBlock = require('../../AppsBlock/l');
|
|
46
8
|
|
|
47
|
-
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Please, use `AppsBlock/l` instead. This icon will be removed in the next major release
|
|
11
|
+
* */
|
|
12
|
+
var AppBlock = AppsBlock;
|
|
48
13
|
|
|
49
|
-
exports[
|
|
14
|
+
exports['default'] = AppBlock;
|
package/AppBlock/l/index.mjs
CHANGED
|
@@ -1,29 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
import AppsBlock from '../../AppsBlock/l';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated Please, use `AppsBlock/l` instead. This icon will be removed in the next major release
|
|
5
|
+
* */
|
|
6
|
+
const AppBlock = AppsBlock;
|
|
6
7
|
|
|
7
|
-
|
|
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": "AppBlock",
|
|
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: "M3 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Zm2 5V5h4v4H5ZM3 14a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-6Zm2 5v-4h4v4H5ZM13 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V4Zm2 5V5h4v4h-4ZM17 13a1 1 0 0 0-1 1v2h-2a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2h-2v-2a1 1 0 0 0-1-1Z",
|
|
24
|
-
shapeRendering: "geometricPrecision"
|
|
25
|
-
}));
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
AppBlock.displayName = 'AppBlock';
|
|
29
|
-
export default createBaseComponent(AppBlock);
|
|
8
|
+
export default AppBlock;
|
package/AppBlock/m/index.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
declare const _default: import("@semcore/core").ComponentType<Merge<IIconProps, React.SVGAttributes<SVGElement>>, {}, {}>;
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated Please, use `AppsBlock/m` instead. This icon will be removed in the next major release
|
|
3
|
+
* */
|
|
4
|
+
declare const _default: typeof import('../../AppsBlock/m');
|
|
6
5
|
export default _default;
|
|
7
|
-
|
package/AppBlock/m/index.js
CHANGED
|
@@ -1,53 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
3
|
+
Object.defineProperty(exports, '__esModule', {
|
|
4
|
+
value: true,
|
|
7
5
|
});
|
|
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 AppBlock(_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": "AppBlock",
|
|
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: "M1 2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2Zm2 3V3h2v2H3ZM9 2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V2Zm2 3V3h2v2h-2ZM1 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-4Zm2 3v-2h2v2H3Z",
|
|
41
|
-
fill: "#191B23",
|
|
42
|
-
shapeRendering: "geometricPrecision"
|
|
43
|
-
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
44
|
-
d: "M11 10a1 1 0 1 1 2 0v1h1a1 1 0 1 1 0 2h-1v1a1 1 0 1 1-2 0v-1h-1a1 1 0 1 1 0-2h1v-1Z",
|
|
45
|
-
shapeRendering: "geometricPrecision"
|
|
46
|
-
}));
|
|
47
|
-
}
|
|
48
6
|
|
|
49
|
-
|
|
7
|
+
var AppsBlock = require('../../AppsBlock/m');
|
|
50
8
|
|
|
51
|
-
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Please, use `AppsBlock/m` instead. This icon will be removed in the next major release
|
|
11
|
+
* */
|
|
12
|
+
var AppBlock = AppsBlock;
|
|
52
13
|
|
|
53
|
-
exports[
|
|
14
|
+
exports['default'] = AppBlock;
|
package/AppBlock/m/index.mjs
CHANGED
|
@@ -1,33 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
import AppsBlock from '../../AppsBlock/m';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated Please, use `AppsBlock/m` instead. This icon will be removed in the next major release
|
|
5
|
+
* */
|
|
6
|
+
const AppBlock = AppsBlock;
|
|
6
7
|
|
|
7
|
-
|
|
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": "AppBlock",
|
|
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: "M1 2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2Zm2 3V3h2v2H3ZM9 2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V2Zm2 3V3h2v2h-2ZM1 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-4Zm2 3v-2h2v2H3Z",
|
|
24
|
-
fill: "#191B23",
|
|
25
|
-
shapeRendering: "geometricPrecision"
|
|
26
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
d: "M11 10a1 1 0 1 1 2 0v1h1a1 1 0 1 1 0 2h-1v1a1 1 0 1 1-2 0v-1h-1a1 1 0 1 1 0-2h1v-1Z",
|
|
28
|
-
shapeRendering: "geometricPrecision"
|
|
29
|
-
}));
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
AppBlock.displayName = 'AppBlock';
|
|
33
|
-
export default createBaseComponent(AppBlock);
|
|
8
|
+
export default AppBlock;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { Merge } from '@semcore/core';
|
|
4
|
+
import { IIconProps } from '@semcore/icon';
|
|
5
|
+
declare const _default: import("@semcore/core").ComponentType<Merge<IIconProps, React.SVGAttributes<SVGElement>>, {}, {}>;
|
|
6
|
+
export default _default;
|
|
7
|
+
|
|
@@ -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 AppsBlock(_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": "AppsBlock",
|
|
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: "M3 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Zm2 5V5h4v4H5ZM3 14a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-6Zm2 5v-4h4v4H5ZM13 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V4Zm2 5V5h4v4h-4ZM17 13a1 1 0 0 0-1 1v2h-2a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2h-2v-2a1 1 0 0 0-1-1Z",
|
|
41
|
+
shapeRendering: "geometricPrecision"
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
AppsBlock.displayName = 'AppsBlock';
|
|
46
|
+
|
|
47
|
+
var _default = (0, _core.createBaseComponent)(AppsBlock);
|
|
48
|
+
|
|
49
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
function _extends() { _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; }; 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 AppsBlock({
|
|
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": "AppsBlock",
|
|
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: "M3 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Zm2 5V5h4v4H5ZM3 14a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-6Zm2 5v-4h4v4H5ZM13 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V4Zm2 5V5h4v4h-4ZM17 13a1 1 0 0 0-1 1v2h-2a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2h-2v-2a1 1 0 0 0-1-1Z",
|
|
24
|
+
shapeRendering: "geometricPrecision"
|
|
25
|
+
}));
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
AppsBlock.displayName = 'AppsBlock';
|
|
29
|
+
export default createBaseComponent(AppsBlock);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { Merge } from '@semcore/core';
|
|
4
|
+
import { IIconProps } from '@semcore/icon';
|
|
5
|
+
declare const _default: import("@semcore/core").ComponentType<Merge<IIconProps, React.SVGAttributes<SVGElement>>, {}, {}>;
|
|
6
|
+
export default _default;
|
|
7
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
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 AppsBlock(_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": "AppsBlock",
|
|
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: "M1 2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2Zm2 3V3h2v2H3ZM9 2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V2Zm2 3V3h2v2h-2ZM1 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-4Zm2 3v-2h2v2H3Z",
|
|
41
|
+
fill: "#191B23",
|
|
42
|
+
shapeRendering: "geometricPrecision"
|
|
43
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
44
|
+
d: "M11 10a1 1 0 1 1 2 0v1h1a1 1 0 1 1 0 2h-1v1a1 1 0 1 1-2 0v-1h-1a1 1 0 1 1 0-2h1v-1Z",
|
|
45
|
+
shapeRendering: "geometricPrecision"
|
|
46
|
+
}));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
AppsBlock.displayName = 'AppsBlock';
|
|
50
|
+
|
|
51
|
+
var _default = (0, _core.createBaseComponent)(AppsBlock);
|
|
52
|
+
|
|
53
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
function _extends() { _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; }; 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 AppsBlock({
|
|
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": "AppsBlock",
|
|
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: "M1 2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2Zm2 3V3h2v2H3ZM9 2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V2Zm2 3V3h2v2h-2ZM1 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-4Zm2 3v-2h2v2H3Z",
|
|
24
|
+
fill: "#191B23",
|
|
25
|
+
shapeRendering: "geometricPrecision"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M11 10a1 1 0 1 1 2 0v1h1a1 1 0 1 1 0 2h-1v1a1 1 0 1 1-2 0v-1h-1a1 1 0 1 1 0-2h1v-1Z",
|
|
28
|
+
shapeRendering: "geometricPrecision"
|
|
29
|
+
}));
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
AppsBlock.displayName = 'AppsBlock';
|
|
33
|
+
export default createBaseComponent(AppsBlock);
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
+
## [2.29.4] - 2022-08-11
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Version patch update due to children dependencies update (`@semcore/utils` [3.35.1 ~> 3.36.0], `@semcore/flex-box` [4.5.8 ~> 4.5.9]).
|
|
10
|
+
|
|
11
|
+
## [2.29.3] - 2022-08-01
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Version patch update due to children dependencies update (`@semcore/utils` [3.35.0 ~> 3.35.1], `@semcore/flex-box` [4.5.7 ~> 4.5.8]).
|
|
16
|
+
|
|
17
|
+
## [2.29.2] - 2022-07-25
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Renamed icon from `AppBlock` to `AppsBlock`. Old name is deprecated.
|
|
22
|
+
|
|
5
23
|
## [2.29.1] - 2022-07-22
|
|
6
24
|
|
|
7
25
|
### Changed
|
package/lib/cjs/Icon.js
CHANGED
|
@@ -46,16 +46,16 @@ var styles = (
|
|
|
46
46
|
/*__reshadow_css_start__*/
|
|
47
47
|
_core.sstyled.insert(
|
|
48
48
|
/*__inner_css_start__*/
|
|
49
|
-
".
|
|
49
|
+
".___SIcon_1mkma_gg_{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;shape-rendering:geometricPrecision;box-sizing:content-box;fill:currentColor;flex-shrink:0;outline:none;color:var(--color_1mkma)}.___SIcon_1mkma_gg_.__keyboardFocused_1mkma_gg_{box-shadow:0 0 0 3px rgba(0, 143, 248, 0.2)}.___SIcon_1mkma_gg_.__interactive_1mkma_gg_{cursor:pointer}.___SIcon_1mkma_gg_.__interactive_1mkma_gg_:hover{color:var(--color-interactive_1mkma)}"
|
|
50
50
|
/*__inner_css_end__*/
|
|
51
|
-
, "
|
|
51
|
+
, "1mkma_gg_")
|
|
52
52
|
/*__reshadow_css_end__*/
|
|
53
53
|
, {
|
|
54
|
-
"__SIcon": "
|
|
55
|
-
"--color": "--
|
|
56
|
-
"_keyboardFocused": "
|
|
57
|
-
"_interactive": "
|
|
58
|
-
"--color-interactive": "--color-
|
|
54
|
+
"__SIcon": "___SIcon_1mkma_gg_",
|
|
55
|
+
"--color": "--color_1mkma",
|
|
56
|
+
"_keyboardFocused": "__keyboardFocused_1mkma_gg_",
|
|
57
|
+
"_interactive": "__interactive_1mkma_gg_",
|
|
58
|
+
"--color-interactive": "--color-interactive_1mkma"
|
|
59
59
|
});
|
|
60
60
|
|
|
61
61
|
function Icon(props, ref) {
|
package/lib/es6/Icon.js
CHANGED
|
@@ -22,16 +22,16 @@ var styles = (
|
|
|
22
22
|
/*__reshadow_css_start__*/
|
|
23
23
|
_sstyled.insert(
|
|
24
24
|
/*__inner_css_start__*/
|
|
25
|
-
".
|
|
25
|
+
".___SIcon_1mkma_gg_{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;shape-rendering:geometricPrecision;box-sizing:content-box;fill:currentColor;flex-shrink:0;outline:none;color:var(--color_1mkma)}.___SIcon_1mkma_gg_.__keyboardFocused_1mkma_gg_{box-shadow:0 0 0 3px rgba(0, 143, 248, 0.2)}.___SIcon_1mkma_gg_.__interactive_1mkma_gg_{cursor:pointer}.___SIcon_1mkma_gg_.__interactive_1mkma_gg_:hover{color:var(--color-interactive_1mkma)}"
|
|
26
26
|
/*__inner_css_end__*/
|
|
27
|
-
, "
|
|
27
|
+
, "1mkma_gg_")
|
|
28
28
|
/*__reshadow_css_end__*/
|
|
29
29
|
, {
|
|
30
|
-
"__SIcon": "
|
|
31
|
-
"--color": "--
|
|
32
|
-
"_keyboardFocused": "
|
|
33
|
-
"_interactive": "
|
|
34
|
-
"--color-interactive": "--color-
|
|
30
|
+
"__SIcon": "___SIcon_1mkma_gg_",
|
|
31
|
+
"--color": "--color_1mkma",
|
|
32
|
+
"_keyboardFocused": "__keyboardFocused_1mkma_gg_",
|
|
33
|
+
"_interactive": "__interactive_1mkma_gg_",
|
|
34
|
+
"--color-interactive": "--color-interactive_1mkma"
|
|
35
35
|
});
|
|
36
36
|
|
|
37
37
|
function Icon(props, ref) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/icon",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "2.29.
|
|
3
|
+
"description": "Semrush Icon Component",
|
|
4
|
+
"version": "2.29.4",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es6/index.js",
|
|
7
7
|
"typings": "lib/types/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"transform": "icon-transform-svg",
|
|
14
14
|
"build": "build --source=js && npm run transform -- --configFile=transform-svg-legacy.config.js && npm run transform -- --configFile=transform-svg.config.js",
|
|
15
15
|
"test": "jest",
|
|
16
|
-
"prebuild": "ls -d */ | egrep -v \"__tests__|src|svg|svg-new\" | xargs rm -rf"
|
|
16
|
+
"prebuild": "ls -d */ | egrep -v \"__tests__|src|svg|svg-new|AppBlock\" | xargs rm -rf"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@semcore/utils": "^3.15",
|
|
File without changes
|
|
File without changes
|