@snack-uikit/icons 0.25.2 → 0.26.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/cjs/components/interface-icons/index.d.ts +3 -0
  3. package/dist/cjs/components/interface-icons/index.js +23 -2
  4. package/dist/cjs/components/interface-icons/pause/PauseS.d.ts +9 -0
  5. package/dist/cjs/components/interface-icons/pause/PauseS.js +76 -0
  6. package/dist/cjs/components/interface-icons/pause/PauseXs.d.ts +9 -0
  7. package/dist/cjs/components/interface-icons/pause/PauseXs.js +76 -0
  8. package/dist/cjs/components/interface-icons/pause/index.d.ts +8 -0
  9. package/dist/cjs/components/interface-icons/pause/index.js +38 -0
  10. package/dist/cjs/components/interface-icons/play/PlayS.d.ts +9 -0
  11. package/dist/cjs/components/interface-icons/play/PlayS.js +76 -0
  12. package/dist/cjs/components/interface-icons/play/PlayXs.d.ts +9 -0
  13. package/dist/cjs/components/interface-icons/play/PlayXs.js +76 -0
  14. package/dist/cjs/components/interface-icons/play/index.d.ts +8 -0
  15. package/dist/cjs/components/interface-icons/play/index.js +38 -0
  16. package/dist/cjs/components/interface-icons/stop/StopS.d.ts +9 -0
  17. package/dist/cjs/components/interface-icons/stop/StopS.js +76 -0
  18. package/dist/cjs/components/interface-icons/stop/StopXs.d.ts +9 -0
  19. package/dist/cjs/components/interface-icons/stop/StopXs.js +76 -0
  20. package/dist/cjs/components/interface-icons/stop/index.d.ts +8 -0
  21. package/dist/cjs/components/interface-icons/stop/index.js +38 -0
  22. package/dist/cjs/sprite/svg/sprite.symbol.svg +1 -1
  23. package/dist/esm/components/interface-icons/index.d.ts +3 -0
  24. package/dist/esm/components/interface-icons/index.js +3 -0
  25. package/dist/esm/components/interface-icons/pause/PauseS.d.ts +9 -0
  26. package/dist/esm/components/interface-icons/pause/PauseS.js +29 -0
  27. package/dist/esm/components/interface-icons/pause/PauseXs.d.ts +9 -0
  28. package/dist/esm/components/interface-icons/pause/PauseXs.js +29 -0
  29. package/dist/esm/components/interface-icons/pause/index.d.ts +8 -0
  30. package/dist/esm/components/interface-icons/pause/index.js +22 -0
  31. package/dist/esm/components/interface-icons/play/PlayS.d.ts +9 -0
  32. package/dist/esm/components/interface-icons/play/PlayS.js +29 -0
  33. package/dist/esm/components/interface-icons/play/PlayXs.d.ts +9 -0
  34. package/dist/esm/components/interface-icons/play/PlayXs.js +29 -0
  35. package/dist/esm/components/interface-icons/play/index.d.ts +8 -0
  36. package/dist/esm/components/interface-icons/play/index.js +22 -0
  37. package/dist/esm/components/interface-icons/stop/StopS.d.ts +9 -0
  38. package/dist/esm/components/interface-icons/stop/StopS.js +29 -0
  39. package/dist/esm/components/interface-icons/stop/StopXs.d.ts +9 -0
  40. package/dist/esm/components/interface-icons/stop/StopXs.js +29 -0
  41. package/dist/esm/components/interface-icons/stop/index.d.ts +8 -0
  42. package/dist/esm/components/interface-icons/stop/index.js +22 -0
  43. package/dist/esm/sprite/svg/sprite.symbol.svg +1 -1
  44. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
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.26.1 (2025-03-17)
7
+
8
+ ### Only dependencies have been changed
9
+ * [@snack-uikit/utils@3.8.1](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/utils/CHANGELOG.md)
10
+
11
+
12
+
13
+
14
+
15
+ # 0.26.0 (2025-03-14)
16
+
17
+
18
+ ### Features
19
+
20
+ * **PDS-441:** alarm filled, check filled, cross filled, info filled, pause, play and stop icons ([68b04bb](https://github.com/cloud-ru-tech/snack-uikit/commit/68b04bb7297746b077597ced64315f2b1291b97f))
21
+
22
+
23
+
24
+
25
+
6
26
  ## 0.25.2 (2025-03-13)
7
27
 
8
28
 
@@ -34,8 +34,10 @@ export { default as LaptopPhoneSVG } from './laptopPhone';
34
34
  export { default as MinusSVG } from './minus';
35
35
  export { default as MoreSVG } from './more';
36
36
  export { default as NightSVG } from './night';
37
+ export { default as PauseSVG } from './pause';
37
38
  export { default as PinnedSVG } from './pinned';
38
39
  export { default as PlaceholderSVG } from './placeholder';
40
+ export { default as PlaySVG } from './play';
39
41
  export { default as PlusSVG } from './plus';
40
42
  export { default as QuestionSVG } from './question';
41
43
  export { default as ResizeSVG } from './resize';
@@ -43,6 +45,7 @@ export { default as SearchSVG } from './search';
43
45
  export { default as SettingsSVG } from './settings';
44
46
  export { default as StarSVG } from './star';
45
47
  export { default as StarFilledSVG } from './starFilled';
48
+ export { default as StopSVG } from './stop';
46
49
  export { default as ThemeContrastSVG } from './themeContrast';
47
50
  export { default as TrashSVG } from './trash';
48
51
  export { default as UnPinnedSVG } from './unPinned';
@@ -8,8 +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.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.DragDropSVG = 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;
11
+ exports.TrashSVG = exports.ThemeContrastSVG = exports.StopSVG = exports.StarFilledSVG = exports.StarSVG = exports.SettingsSVG = exports.SearchSVG = exports.ResizeSVG = exports.QuestionSVG = exports.PlusSVG = exports.PlaySVG = exports.PlaceholderSVG = exports.PinnedSVG = exports.PauseSVG = 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.DragDropSVG = 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 = exports.UploadSVG = exports.UpdateSVG = exports.UnPinnedSVG = void 0;
13
13
  var alarmFilled_1 = require("./alarmFilled");
14
14
  Object.defineProperty(exports, "AlarmFilledSVG", {
15
15
  enumerable: true,
@@ -262,6 +262,13 @@ Object.defineProperty(exports, "NightSVG", {
262
262
  return __importDefault(night_1).default;
263
263
  }
264
264
  });
265
+ var pause_1 = require("./pause");
266
+ Object.defineProperty(exports, "PauseSVG", {
267
+ enumerable: true,
268
+ get: function () {
269
+ return __importDefault(pause_1).default;
270
+ }
271
+ });
265
272
  var pinned_1 = require("./pinned");
266
273
  Object.defineProperty(exports, "PinnedSVG", {
267
274
  enumerable: true,
@@ -276,6 +283,13 @@ Object.defineProperty(exports, "PlaceholderSVG", {
276
283
  return __importDefault(placeholder_1).default;
277
284
  }
278
285
  });
286
+ var play_1 = require("./play");
287
+ Object.defineProperty(exports, "PlaySVG", {
288
+ enumerable: true,
289
+ get: function () {
290
+ return __importDefault(play_1).default;
291
+ }
292
+ });
279
293
  var plus_1 = require("./plus");
280
294
  Object.defineProperty(exports, "PlusSVG", {
281
295
  enumerable: true,
@@ -325,6 +339,13 @@ Object.defineProperty(exports, "StarFilledSVG", {
325
339
  return __importDefault(starFilled_1).default;
326
340
  }
327
341
  });
342
+ var stop_1 = require("./stop");
343
+ Object.defineProperty(exports, "StopSVG", {
344
+ enumerable: true,
345
+ get: function () {
346
+ return __importDefault(stop_1).default;
347
+ }
348
+ });
328
349
  var themeContrast_1 = require("./themeContrast");
329
350
  Object.defineProperty(exports, "ThemeContrastSVG", {
330
351
  enumerable: true,
@@ -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 SvgPauseS: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgPauseS;
@@ -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 SvgPauseS = 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 = '-pause-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 = SvgPauseS;
@@ -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 SvgPauseXs: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgPauseXs;
@@ -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 SvgPauseXs = 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 = '-pause-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 = SvgPauseXs;
@@ -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 PauseSVG: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
8
+ export default PauseSVG;
@@ -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 PauseS_1 = __importDefault(require("./PauseS"));
21
+ const PauseXs_1 = __importDefault(require("./PauseXs"));
22
+ const react_1 = require("react");
23
+ const PauseSVG = (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)(PauseS_1.default, Object.assign({
31
+ ref: ref,
32
+ size: size
33
+ }, props)) : (0, jsx_runtime_1.jsx)(PauseXs_1.default, Object.assign({
34
+ ref: ref,
35
+ size: size
36
+ }, props));
37
+ });
38
+ exports.default = PauseSVG;
@@ -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 SvgPlayS: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgPlayS;
@@ -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 SvgPlayS = 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 = '-play-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 = SvgPlayS;
@@ -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 SvgPlayXs: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgPlayXs;
@@ -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 SvgPlayXs = 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 = '-play-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 = SvgPlayXs;
@@ -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 PlaySVG: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
8
+ export default PlaySVG;
@@ -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 PlayS_1 = __importDefault(require("./PlayS"));
21
+ const PlayXs_1 = __importDefault(require("./PlayXs"));
22
+ const react_1 = require("react");
23
+ const PlaySVG = (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)(PlayS_1.default, Object.assign({
31
+ ref: ref,
32
+ size: size
33
+ }, props)) : (0, jsx_runtime_1.jsx)(PlayXs_1.default, Object.assign({
34
+ ref: ref,
35
+ size: size
36
+ }, props));
37
+ });
38
+ exports.default = PlaySVG;
@@ -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 SvgStopS: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgStopS;
@@ -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 SvgStopS = 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 = '-stop-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 = SvgStopS;
@@ -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 SvgStopXs: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgStopXs;