@snack-uikit/icons 0.24.3 → 0.25.0

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.
Files changed (32) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/cjs/components/interface-icons/drag/DragS.d.ts +9 -0
  3. package/dist/cjs/components/interface-icons/drag/DragS.js +76 -0
  4. package/dist/cjs/components/interface-icons/drag/DragXs.d.ts +9 -0
  5. package/dist/cjs/components/interface-icons/drag/DragXs.js +76 -0
  6. package/dist/cjs/components/interface-icons/drag/index.d.ts +8 -0
  7. package/dist/cjs/components/interface-icons/drag/index.js +38 -0
  8. package/dist/cjs/components/interface-icons/functionSettings/FunctionSettingsS.d.ts +9 -0
  9. package/dist/cjs/components/interface-icons/functionSettings/FunctionSettingsS.js +76 -0
  10. package/dist/cjs/components/interface-icons/functionSettings/FunctionSettingsXs.d.ts +9 -0
  11. package/dist/cjs/components/interface-icons/functionSettings/FunctionSettingsXs.js +76 -0
  12. package/dist/cjs/components/interface-icons/functionSettings/index.d.ts +8 -0
  13. package/dist/cjs/components/interface-icons/functionSettings/index.js +38 -0
  14. package/dist/cjs/components/interface-icons/index.d.ts +2 -0
  15. package/dist/cjs/components/interface-icons/index.js +16 -1
  16. package/dist/cjs/sprite/svg/sprite.symbol.svg +1 -1
  17. package/dist/esm/components/interface-icons/drag/DragS.d.ts +9 -0
  18. package/dist/esm/components/interface-icons/drag/DragS.js +29 -0
  19. package/dist/esm/components/interface-icons/drag/DragXs.d.ts +9 -0
  20. package/dist/esm/components/interface-icons/drag/DragXs.js +29 -0
  21. package/dist/esm/components/interface-icons/drag/index.d.ts +8 -0
  22. package/dist/esm/components/interface-icons/drag/index.js +22 -0
  23. package/dist/esm/components/interface-icons/functionSettings/FunctionSettingsS.d.ts +9 -0
  24. package/dist/esm/components/interface-icons/functionSettings/FunctionSettingsS.js +29 -0
  25. package/dist/esm/components/interface-icons/functionSettings/FunctionSettingsXs.d.ts +9 -0
  26. package/dist/esm/components/interface-icons/functionSettings/FunctionSettingsXs.js +29 -0
  27. package/dist/esm/components/interface-icons/functionSettings/index.d.ts +8 -0
  28. package/dist/esm/components/interface-icons/functionSettings/index.js +22 -0
  29. package/dist/esm/components/interface-icons/index.d.ts +2 -0
  30. package/dist/esm/components/interface-icons/index.js +2 -0
  31. package/dist/esm/sprite/svg/sprite.symbol.svg +1 -1
  32. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 0.25.0 (2025-03-04)
7
+
8
+
9
+ ### Features
10
+
11
+ * **PDS-1765:** add drag and functionSettings icons ([82d647c](https://github.com/cloud-ru-tech/snack-uikit/commit/82d647c3c8b68f1b1d25beaed9b3342dafe5a80c))
12
+
13
+
14
+
15
+
16
+
6
17
  ## 0.24.3 (2025-03-04)
7
18
 
8
19
  ### Only dependencies have been changed
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgDragS: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgDragS;
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+
3
+ var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = {
8
+ enumerable: true,
9
+ get: function () {
10
+ return m[k];
11
+ }
12
+ };
13
+ }
14
+ Object.defineProperty(o, k2, desc);
15
+ } : function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ o[k2] = m[k];
18
+ });
19
+ var __setModuleDefault = void 0 && (void 0).__setModuleDefault || (Object.create ? function (o, v) {
20
+ Object.defineProperty(o, "default", {
21
+ enumerable: true,
22
+ value: v
23
+ });
24
+ } : function (o, v) {
25
+ o["default"] = v;
26
+ });
27
+ var __importStar = void 0 && (void 0).__importStar || function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
35
+ var t = {};
36
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
37
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
38
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
39
+ }
40
+ return t;
41
+ };
42
+ Object.defineProperty(exports, "__esModule", {
43
+ value: true
44
+ });
45
+ const jsx_runtime_1 = require("react/jsx-runtime");
46
+ // DO NOT EDIT IT MANUALLY
47
+ const React = __importStar(require("react"));
48
+ const SvgDragS = React.forwardRef((_a, ref) => {
49
+ var {
50
+ size = 24
51
+ } = _a,
52
+ props = __rest(_a, ["size"]);
53
+ props.width = undefined;
54
+ props.height = undefined;
55
+ const testId = '-drag-s';
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ if (!props.style) props.style = {};
59
+ props.style.width = size + 'px';
60
+ props.style.height = size + 'px';
61
+ }
62
+ return (0, jsx_runtime_1.jsx)("svg", Object.assign({
63
+ ref: ref,
64
+ xmlns: 'http://www.w3.org/2000/svg',
65
+ width: 24,
66
+ height: 24,
67
+ fill: 'currentColor',
68
+ viewBox: '0 0 24 24',
69
+ "data-test-id": 'icon' + testId
70
+ }, props, {
71
+ children: (0, jsx_runtime_1.jsx)("use", {
72
+ href: '#snack-uikit-' + testId.substring(1)
73
+ })
74
+ }));
75
+ });
76
+ exports.default = SvgDragS;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgDragXs: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgDragXs;
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+
3
+ var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = {
8
+ enumerable: true,
9
+ get: function () {
10
+ return m[k];
11
+ }
12
+ };
13
+ }
14
+ Object.defineProperty(o, k2, desc);
15
+ } : function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ o[k2] = m[k];
18
+ });
19
+ var __setModuleDefault = void 0 && (void 0).__setModuleDefault || (Object.create ? function (o, v) {
20
+ Object.defineProperty(o, "default", {
21
+ enumerable: true,
22
+ value: v
23
+ });
24
+ } : function (o, v) {
25
+ o["default"] = v;
26
+ });
27
+ var __importStar = void 0 && (void 0).__importStar || function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
35
+ var t = {};
36
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
37
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
38
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
39
+ }
40
+ return t;
41
+ };
42
+ Object.defineProperty(exports, "__esModule", {
43
+ value: true
44
+ });
45
+ const jsx_runtime_1 = require("react/jsx-runtime");
46
+ // DO NOT EDIT IT MANUALLY
47
+ const React = __importStar(require("react"));
48
+ const SvgDragXs = React.forwardRef((_a, ref) => {
49
+ var {
50
+ size = 24
51
+ } = _a,
52
+ props = __rest(_a, ["size"]);
53
+ props.width = undefined;
54
+ props.height = undefined;
55
+ const testId = '-drag-xs';
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ if (!props.style) props.style = {};
59
+ props.style.width = size + 'px';
60
+ props.style.height = size + 'px';
61
+ }
62
+ return (0, jsx_runtime_1.jsx)("svg", Object.assign({
63
+ ref: ref,
64
+ xmlns: 'http://www.w3.org/2000/svg',
65
+ width: 24,
66
+ height: 24,
67
+ fill: 'currentColor',
68
+ viewBox: '0 0 24 24',
69
+ "data-test-id": 'icon' + testId
70
+ }, props, {
71
+ children: (0, jsx_runtime_1.jsx)("use", {
72
+ href: '#snack-uikit-' + testId.substring(1)
73
+ })
74
+ }));
75
+ });
76
+ exports.default = SvgDragXs;
@@ -0,0 +1,8 @@
1
+ import { SVGProps } from 'react';
2
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
3
+ className?: string;
4
+ size?: number;
5
+ style?: React.CSSProperties;
6
+ }
7
+ declare const DragSVG: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
8
+ export default DragSVG;
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+
3
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
4
+ var t = {};
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
6
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
8
+ }
9
+ return t;
10
+ };
11
+ var __importDefault = void 0 && (void 0).__importDefault || function (mod) {
12
+ return mod && mod.__esModule ? mod : {
13
+ "default": mod
14
+ };
15
+ };
16
+ Object.defineProperty(exports, "__esModule", {
17
+ value: true
18
+ });
19
+ const jsx_runtime_1 = require("react/jsx-runtime");
20
+ const DragS_1 = __importDefault(require("./DragS"));
21
+ const DragXs_1 = __importDefault(require("./DragXs"));
22
+ const react_1 = require("react");
23
+ const DragSVG = (0, react_1.forwardRef)((_a, ref) => {
24
+ var {
25
+ size = 24
26
+ } = _a,
27
+ props = __rest(_a, ["size"]);
28
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
29
+ // @ts-ignore
30
+ return Number(size) >= 20 ? (0, jsx_runtime_1.jsx)(DragS_1.default, Object.assign({
31
+ ref: ref,
32
+ size: size
33
+ }, props)) : (0, jsx_runtime_1.jsx)(DragXs_1.default, Object.assign({
34
+ ref: ref,
35
+ size: size
36
+ }, props));
37
+ });
38
+ exports.default = DragSVG;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgFunctionSettingsS: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgFunctionSettingsS;
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+
3
+ var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = {
8
+ enumerable: true,
9
+ get: function () {
10
+ return m[k];
11
+ }
12
+ };
13
+ }
14
+ Object.defineProperty(o, k2, desc);
15
+ } : function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ o[k2] = m[k];
18
+ });
19
+ var __setModuleDefault = void 0 && (void 0).__setModuleDefault || (Object.create ? function (o, v) {
20
+ Object.defineProperty(o, "default", {
21
+ enumerable: true,
22
+ value: v
23
+ });
24
+ } : function (o, v) {
25
+ o["default"] = v;
26
+ });
27
+ var __importStar = void 0 && (void 0).__importStar || function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
35
+ var t = {};
36
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
37
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
38
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
39
+ }
40
+ return t;
41
+ };
42
+ Object.defineProperty(exports, "__esModule", {
43
+ value: true
44
+ });
45
+ const jsx_runtime_1 = require("react/jsx-runtime");
46
+ // DO NOT EDIT IT MANUALLY
47
+ const React = __importStar(require("react"));
48
+ const SvgFunctionSettingsS = React.forwardRef((_a, ref) => {
49
+ var {
50
+ size = 24
51
+ } = _a,
52
+ props = __rest(_a, ["size"]);
53
+ props.width = undefined;
54
+ props.height = undefined;
55
+ const testId = '-function-settings-s';
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ if (!props.style) props.style = {};
59
+ props.style.width = size + 'px';
60
+ props.style.height = size + 'px';
61
+ }
62
+ return (0, jsx_runtime_1.jsx)("svg", Object.assign({
63
+ ref: ref,
64
+ xmlns: 'http://www.w3.org/2000/svg',
65
+ width: 24,
66
+ height: 24,
67
+ fill: 'currentColor',
68
+ viewBox: '0 0 24 24',
69
+ "data-test-id": 'icon' + testId
70
+ }, props, {
71
+ children: (0, jsx_runtime_1.jsx)("use", {
72
+ href: '#snack-uikit-' + testId.substring(1)
73
+ })
74
+ }));
75
+ });
76
+ exports.default = SvgFunctionSettingsS;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgFunctionSettingsXs: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgFunctionSettingsXs;
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+
3
+ var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = {
8
+ enumerable: true,
9
+ get: function () {
10
+ return m[k];
11
+ }
12
+ };
13
+ }
14
+ Object.defineProperty(o, k2, desc);
15
+ } : function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ o[k2] = m[k];
18
+ });
19
+ var __setModuleDefault = void 0 && (void 0).__setModuleDefault || (Object.create ? function (o, v) {
20
+ Object.defineProperty(o, "default", {
21
+ enumerable: true,
22
+ value: v
23
+ });
24
+ } : function (o, v) {
25
+ o["default"] = v;
26
+ });
27
+ var __importStar = void 0 && (void 0).__importStar || function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
35
+ var t = {};
36
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
37
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
38
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
39
+ }
40
+ return t;
41
+ };
42
+ Object.defineProperty(exports, "__esModule", {
43
+ value: true
44
+ });
45
+ const jsx_runtime_1 = require("react/jsx-runtime");
46
+ // DO NOT EDIT IT MANUALLY
47
+ const React = __importStar(require("react"));
48
+ const SvgFunctionSettingsXs = React.forwardRef((_a, ref) => {
49
+ var {
50
+ size = 24
51
+ } = _a,
52
+ props = __rest(_a, ["size"]);
53
+ props.width = undefined;
54
+ props.height = undefined;
55
+ const testId = '-function-settings-xs';
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ if (!props.style) props.style = {};
59
+ props.style.width = size + 'px';
60
+ props.style.height = size + 'px';
61
+ }
62
+ return (0, jsx_runtime_1.jsx)("svg", Object.assign({
63
+ ref: ref,
64
+ xmlns: 'http://www.w3.org/2000/svg',
65
+ width: 24,
66
+ height: 24,
67
+ fill: 'currentColor',
68
+ viewBox: '0 0 24 24',
69
+ "data-test-id": 'icon' + testId
70
+ }, props, {
71
+ children: (0, jsx_runtime_1.jsx)("use", {
72
+ href: '#snack-uikit-' + testId.substring(1)
73
+ })
74
+ }));
75
+ });
76
+ exports.default = SvgFunctionSettingsXs;
@@ -0,0 +1,8 @@
1
+ import { SVGProps } from 'react';
2
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
3
+ className?: string;
4
+ size?: number;
5
+ style?: React.CSSProperties;
6
+ }
7
+ declare const FunctionSettingsSVG: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
8
+ export default FunctionSettingsSVG;
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+
3
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
4
+ var t = {};
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
6
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
8
+ }
9
+ return t;
10
+ };
11
+ var __importDefault = void 0 && (void 0).__importDefault || function (mod) {
12
+ return mod && mod.__esModule ? mod : {
13
+ "default": mod
14
+ };
15
+ };
16
+ Object.defineProperty(exports, "__esModule", {
17
+ value: true
18
+ });
19
+ const jsx_runtime_1 = require("react/jsx-runtime");
20
+ const FunctionSettingsS_1 = __importDefault(require("./FunctionSettingsS"));
21
+ const FunctionSettingsXs_1 = __importDefault(require("./FunctionSettingsXs"));
22
+ const react_1 = require("react");
23
+ const FunctionSettingsSVG = (0, react_1.forwardRef)((_a, ref) => {
24
+ var {
25
+ size = 24
26
+ } = _a,
27
+ props = __rest(_a, ["size"]);
28
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
29
+ // @ts-ignore
30
+ return Number(size) >= 20 ? (0, jsx_runtime_1.jsx)(FunctionSettingsS_1.default, Object.assign({
31
+ ref: ref,
32
+ size: size
33
+ }, props)) : (0, jsx_runtime_1.jsx)(FunctionSettingsXs_1.default, Object.assign({
34
+ ref: ref,
35
+ size: size
36
+ }, props));
37
+ });
38
+ exports.default = FunctionSettingsSVG;
@@ -16,6 +16,7 @@ export { default as CrossSVG } from './cross';
16
16
  export { default as CrossFilledSVG } from './crossFilled';
17
17
  export { default as DaySVG } from './day';
18
18
  export { default as DownloadSVG } from './download';
19
+ export { default as DragSVG } from './drag';
19
20
  export { default as EmailSVG } from './email';
20
21
  export { default as EyeSVG } from './eye';
21
22
  export { default as EyeClosedSVG } from './eyeClosed';
@@ -23,6 +24,7 @@ export { default as FileSVG } from './file';
23
24
  export { default as FilterSVG } from './filter';
24
25
  export { default as FolderSVG } from './folder';
25
26
  export { default as FolderOpenSVG } from './folderOpen';
27
+ export { default as FunctionSettingsSVG } from './functionSettings';
26
28
  export { default as HeartSVG } from './heart';
27
29
  export { default as HeartFilledSVG } from './heartFilled';
28
30
  export { default as HomeSVG } from './home';
@@ -8,7 +8,8 @@ var __importDefault = void 0 && (void 0).__importDefault || function (mod) {
8
8
  Object.defineProperty(exports, "__esModule", {
9
9
  value: true
10
10
  });
11
- exports.WatchSVG = exports.WarningSVG = exports.UploadSVG = exports.UpdateSVG = exports.UnPinnedSVG = exports.TrashSVG = exports.ThemeContrastSVG = exports.StarFilledSVG = exports.StarSVG = exports.SettingsSVG = exports.SearchSVG = exports.ResizeSVG = exports.QuestionSVG = exports.PlusSVG = exports.PlaceholderSVG = exports.PinnedSVG = exports.NightSVG = exports.MoreSVG = exports.MinusSVG = exports.LaptopPhoneSVG = exports.KebabSVG = exports.InfoFilledSVG = exports.HomeSVG = exports.HeartFilledSVG = exports.HeartSVG = exports.FolderOpenSVG = exports.FolderSVG = exports.FilterSVG = exports.FileSVG = exports.EyeClosedSVG = exports.EyeSVG = exports.EmailSVG = exports.DownloadSVG = exports.DaySVG = exports.CrossFilledSVG = exports.CrossSVG = exports.CopySVG = exports.ChevronUpSVG = exports.ChevronRightSVG = exports.ChevronLeftSVG = exports.ChevronDownSVG = exports.CheckFilledSVG = exports.CheckSVG = exports.CalendarSVG = exports.ArrowUpSVG = exports.ArrowRightSVG = exports.ArrowLinksSVG = exports.ArrowLeftSVG = exports.ArrowDownSVG = exports.AlarmFilledSVG = void 0;
11
+ exports.UploadSVG = exports.UpdateSVG = exports.UnPinnedSVG = exports.TrashSVG = exports.ThemeContrastSVG = exports.StarFilledSVG = exports.StarSVG = exports.SettingsSVG = exports.SearchSVG = exports.ResizeSVG = exports.QuestionSVG = exports.PlusSVG = exports.PlaceholderSVG = exports.PinnedSVG = exports.NightSVG = exports.MoreSVG = exports.MinusSVG = exports.LaptopPhoneSVG = exports.KebabSVG = exports.InfoFilledSVG = exports.HomeSVG = exports.HeartFilledSVG = exports.HeartSVG = exports.FunctionSettingsSVG = exports.FolderOpenSVG = exports.FolderSVG = exports.FilterSVG = exports.FileSVG = exports.EyeClosedSVG = exports.EyeSVG = exports.EmailSVG = exports.DragSVG = exports.DownloadSVG = exports.DaySVG = exports.CrossFilledSVG = exports.CrossSVG = exports.CopySVG = exports.ChevronUpSVG = exports.ChevronRightSVG = exports.ChevronLeftSVG = exports.ChevronDownSVG = exports.CheckFilledSVG = exports.CheckSVG = exports.CalendarSVG = exports.ArrowUpSVG = exports.ArrowRightSVG = exports.ArrowLinksSVG = exports.ArrowLeftSVG = exports.ArrowDownSVG = exports.AlarmFilledSVG = void 0;
12
+ exports.WatchSVG = exports.WarningSVG = void 0;
12
13
  var alarmFilled_1 = require("./alarmFilled");
13
14
  Object.defineProperty(exports, "AlarmFilledSVG", {
14
15
  enumerable: true,
@@ -135,6 +136,13 @@ Object.defineProperty(exports, "DownloadSVG", {
135
136
  return __importDefault(download_1).default;
136
137
  }
137
138
  });
139
+ var drag_1 = require("./drag");
140
+ Object.defineProperty(exports, "DragSVG", {
141
+ enumerable: true,
142
+ get: function () {
143
+ return __importDefault(drag_1).default;
144
+ }
145
+ });
138
146
  var email_1 = require("./email");
139
147
  Object.defineProperty(exports, "EmailSVG", {
140
148
  enumerable: true,
@@ -184,6 +192,13 @@ Object.defineProperty(exports, "FolderOpenSVG", {
184
192
  return __importDefault(folderOpen_1).default;
185
193
  }
186
194
  });
195
+ var functionSettings_1 = require("./functionSettings");
196
+ Object.defineProperty(exports, "FunctionSettingsSVG", {
197
+ enumerable: true,
198
+ get: function () {
199
+ return __importDefault(functionSettings_1).default;
200
+ }
201
+ });
187
202
  var heart_1 = require("./heart");
188
203
  Object.defineProperty(exports, "HeartSVG", {
189
204
  enumerable: true,