@scottish-government/designsystem-react 0.5.1 → 0.6.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 (99) hide show
  1. package/.svgrrc +2 -1
  2. package/.svgrrc_documents +15 -0
  3. package/@types/common/FileIcon.d.ts +7 -0
  4. package/@types/components/FileDownload.d.ts +11 -0
  5. package/@types/sgds.d.ts +1 -0
  6. package/dist/common/file-icon.jsx +51 -0
  7. package/dist/common/icon.jsx +1 -1
  8. package/dist/components/file-download/file-download.jsx +50 -0
  9. package/dist/images/documents/audio.jsx +47 -0
  10. package/dist/images/documents/csv.jsx +57 -0
  11. package/dist/images/documents/excel.jsx +57 -0
  12. package/dist/images/documents/file.jsx +48 -0
  13. package/dist/images/documents/generic.jsx +47 -0
  14. package/dist/images/documents/geodata.jsx +44 -0
  15. package/dist/images/documents/ical.jsx +48 -0
  16. package/dist/images/documents/ico.jsx +48 -0
  17. package/dist/images/documents/image.jsx +43 -0
  18. package/dist/images/documents/index.js +50 -0
  19. package/dist/images/documents/odf.jsx +46 -0
  20. package/dist/images/documents/odg.jsx +46 -0
  21. package/dist/images/documents/odp.jsx +45 -0
  22. package/dist/images/documents/ods.jsx +55 -0
  23. package/dist/images/documents/odt.jsx +46 -0
  24. package/dist/images/documents/pdf.jsx +48 -0
  25. package/dist/images/documents/ppt.jsx +47 -0
  26. package/dist/images/documents/rtf.jsx +48 -0
  27. package/dist/images/documents/text.jsx +48 -0
  28. package/dist/images/documents/video.jsx +47 -0
  29. package/dist/images/documents/word.jsx +48 -0
  30. package/dist/images/documents/xml.jsx +48 -0
  31. package/dist/images/documents/zip.jsx +48 -0
  32. package/dist/images/icons/arrow_upward.jsx +41 -0
  33. package/dist/images/icons/calendar_today.jsx +41 -0
  34. package/dist/images/icons/cancel.jsx +40 -0
  35. package/dist/images/icons/check_circle.jsx +41 -0
  36. package/dist/images/icons/chevron_left.jsx +41 -0
  37. package/dist/images/icons/chevron_right.jsx +41 -0
  38. package/dist/images/icons/close.jsx +41 -0
  39. package/dist/images/icons/description.jsx +41 -0
  40. package/dist/images/icons/double_chevron_left.jsx +40 -0
  41. package/dist/images/icons/double_chevron_right.jsx +40 -0
  42. package/dist/images/icons/error.jsx +41 -0
  43. package/dist/images/icons/expand_less.jsx +41 -0
  44. package/dist/images/icons/expand_more.jsx +41 -0
  45. package/dist/images/icons/index.js +40 -0
  46. package/dist/images/icons/list.jsx +44 -0
  47. package/dist/images/icons/menu.jsx +41 -0
  48. package/dist/images/icons/priority_high.jsx +42 -0
  49. package/dist/images/icons/search.jsx +41 -0
  50. package/dist/tsconfig.tsbuildinfo +1 -1
  51. package/package.json +2 -1
  52. package/src/common/file-icon.test.tsx +50 -0
  53. package/src/common/file-icon.tsx +25 -0
  54. package/src/common/icon.tsx +1 -1
  55. package/src/components/file-download/file-download.test.tsx +167 -0
  56. package/src/components/file-download/file-download.tsx +67 -0
  57. package/src/images/documents/audio.tsx +34 -0
  58. package/src/images/documents/csv.tsx +39 -0
  59. package/src/images/documents/excel.tsx +39 -0
  60. package/src/images/documents/file.tsx +30 -0
  61. package/src/images/documents/generic.tsx +26 -0
  62. package/src/images/documents/geodata.tsx +29 -0
  63. package/src/images/documents/ical.tsx +30 -0
  64. package/src/images/documents/ico.tsx +30 -0
  65. package/src/images/documents/image.tsx +25 -0
  66. package/src/images/documents/index.ts +22 -0
  67. package/src/images/documents/odf.tsx +28 -0
  68. package/src/images/documents/odg.tsx +28 -0
  69. package/src/images/documents/odp.tsx +33 -0
  70. package/src/images/documents/ods.tsx +37 -0
  71. package/src/images/documents/odt.tsx +28 -0
  72. package/src/images/documents/pdf.tsx +30 -0
  73. package/src/images/documents/ppt.tsx +28 -0
  74. package/src/images/documents/rtf.tsx +30 -0
  75. package/src/images/documents/text.tsx +30 -0
  76. package/src/images/documents/video.tsx +34 -0
  77. package/src/images/documents/word.tsx +30 -0
  78. package/src/images/documents/xml.tsx +30 -0
  79. package/src/images/documents/zip.tsx +30 -0
  80. package/src/images/icons/index.ts +17 -0
  81. package/vite.config.ts +1 -1
  82. package/src/icons/index.ts +0 -17
  83. /package/src/{icons/ArrowUpward.tsx → images/icons/arrow_upward.tsx} +0 -0
  84. /package/src/{icons/CalendarToday.tsx → images/icons/calendar_today.tsx} +0 -0
  85. /package/src/{icons/Cancel.tsx → images/icons/cancel.tsx} +0 -0
  86. /package/src/{icons/CheckCircle.tsx → images/icons/check_circle.tsx} +0 -0
  87. /package/src/{icons/ChevronLeft.tsx → images/icons/chevron_left.tsx} +0 -0
  88. /package/src/{icons/ChevronRight.tsx → images/icons/chevron_right.tsx} +0 -0
  89. /package/src/{icons/Close.tsx → images/icons/close.tsx} +0 -0
  90. /package/src/{icons/Description.tsx → images/icons/description.tsx} +0 -0
  91. /package/src/{icons/DoubleChevronLeft.tsx → images/icons/double_chevron_left.tsx} +0 -0
  92. /package/src/{icons/DoubleChevronRight.tsx → images/icons/double_chevron_right.tsx} +0 -0
  93. /package/src/{icons/Error.tsx → images/icons/error.tsx} +0 -0
  94. /package/src/{icons/ExpandLess.tsx → images/icons/expand_less.tsx} +0 -0
  95. /package/src/{icons/ExpandMore.tsx → images/icons/expand_more.tsx} +0 -0
  96. /package/src/{icons/List.tsx → images/icons/list.tsx} +0 -0
  97. /package/src/{icons/Menu.tsx → images/icons/menu.tsx} +0 -0
  98. /package/src/{icons/PriorityHigh.tsx → images/icons/priority_high.tsx} +0 -0
  99. /package/src/{icons/Search.tsx → images/icons/search.tsx} +0 -0
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgWord = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
38
+ <path d="m1 119v-118h58.5858l19.4142 19.4142v98.5858z" fill="#fff" stroke="#0065bd" strokeWidth={2}/>
39
+ <g fill="#0065bd">
40
+ <path d="m80 20-20-20v20z"/>
41
+ <path d="m10 60h59.9997v5h-59.9997z"/>
42
+ <path d="m10 70h59.9997v5h-59.9997z"/>
43
+ <path d="m10 80h30v5h-30z"/>
44
+ <path d="m10 28h60v27h-60z"/>
45
+ </g>
46
+ <path d="m23.6023 46.0261 2.478-10.4675h1.3843l.3162 1.7432-2.6404 10.6982h-1.4868zm-1.2732-10.4675 2.0508 10.4675-.1709 1.9739h-1.6577l-2.76-12.4414zm7.6306 10.4248 2.0252-10.4248h2.5378l-2.7515 12.4414h-1.6577zm-1.7175-10.4248 2.4951 10.5102-.0684 1.9312h-1.4868l-2.6574-10.7068.3418-1.7346zm6.853 7.9126v-.1795c0-.6778.0969-1.3016.2905-1.8713.1937-.5753.4757-1.0738.846-1.4954.3703-.4215.826-.7491 1.3672-.9826.5412-.2393 1.1621-.3589 1.8628-.3589s1.3244.1196 1.8713.3589c.5469.2335 1.0055.5611 1.3757.9826.376.4216.6608.9201.8545 1.4954.1937.5697.2906 1.1935.2906 1.8713v.1795c0 .6722-.0969 1.296-.2906 1.8713-.1937.5697-.4785 1.0681-.8545 1.4954-.3702.4215-.826.7491-1.3671.9827-.5412.2335-1.1622.3503-1.8628.3503-.7007 0-1.3245-.1168-1.8714-.3503-.5412-.2336-.9997-.5612-1.3757-.9827-.3703-.4273-.6523-.9257-.846-1.4954-.1936-.5753-.2905-1.1991-.2905-1.8713zm2.461-.1795v.1795c0 .3874.0341.7491.1025 1.0852s.1766.6323.3247.8887c.1538.2506.3532.4472.5981.5896.245.1424.5441.2136.8973.2136.3418 0 .6351-.0712.8801-.2136.2449-.1424.4415-.339.5896-.5896.1481-.2564.2563-.5526.3247-.8887.074-.3361.1111-.6978.1111-1.0852v-.1795c0-.3759-.0371-.7291-.1111-1.0595-.0684-.3361-.1794-.6323-.3333-.8887-.1481-.262-.3446-.4671-.5896-.6152-.2449-.1481-.5411-.2222-.8886-.2222s-.6437.0741-.8887.2222c-.2393.1481-.4358.3532-.5896.6152-.1481.2564-.2563.5526-.3247.8887-.0684.3304-.1025.6836-.1025 1.0595zm10.2709-2.5207v7.229h-2.4609v-9.2456h2.3157zm2.7857-2.0764-.0427 2.2815c-.1197-.0171-.2649-.0314-.4358-.0428-.1652-.017-.3162-.0256-.4529-.0256-.3475 0-.6494.0456-.9058.1367-.2506.0855-.4614.2137-.6323.3846-.1652.1709-.2905.3788-.376.6237-.0797.245-.1253.5241-.1367.8374l-.4956-.1538c0-.5981.0598-1.1478.1795-1.6491.1196-.507.2933-.9485.5212-1.3245.2336-.376.5184-.6665.8545-.8716s.7206-.3076 1.1536-.3076c.1367 0 .2762.0114.4187.0342.1424.0171.2591.0427.3503.0769zm6.4514 7.2888v-11.1084h2.478v13.125h-2.2302zm-5.8447-2.4951v-.1795c0-.7063.0797-1.3472.2392-1.9226.1595-.581.3931-1.0795.7007-1.4953.3076-.4159.6865-.7377 1.1365-.9656s.9627-.3418 1.5381-.3418c.5412 0 1.014.1139 1.4184.3418.4102.2279.7577.5526 1.0425.9741.2905.4159.5241.9086.7007 1.4783.1766.564.3048 1.182.3845 1.8542v.3931c-.0797.6437-.2079 1.2419-.3845 1.7944-.1766.5526-.4102 1.0368-.7007 1.4527-.2848.4101-.6323.7291-1.0425.957-.4101.2279-.8886.3418-1.4355.3418-.5754 0-1.0881-.1168-1.5381-.3503-.4443-.2336-.8203-.5612-1.1279-.9827-.3019-.4216-.5327-.9172-.6922-1.4868-.1595-.5697-.2392-1.1906-.2392-1.8628zm2.4609-.1795v.1795c0 .3817.0285.7377.0855 1.0681.0626.3304.1623.6238.299.8801.1425.2507.3247.4472.5469.5896.2279.1367.5042.2051.8289.2051.4215 0 .769-.094 1.0425-.282.2734-.1937.4813-.4586.6237-.7947.1481-.3361.2336-.7234.2564-1.1621v-1.1194c-.0171-.3588-.0684-.6807-.1538-.9655-.0798-.2906-.1994-.5384-.3589-.7434-.1538-.2051-.3475-.3646-.5811-.4786-.2278-.1139-.4984-.1709-.8117-.1709-.319 0-.5925.0741-.8203.2222-.2279.1424-.4131.339-.5555.5896-.1367.2507-.2392.5469-.3076.8887-.0626.3361-.094.7007-.094 1.0937z" fill="#fff"/>
47
+ </svg>);
48
+ exports.default = SvgWord;
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgXml = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
38
+ <path d="m1 119v-118.000244h58.5858l19.4142 19.414244v98.586z" fill="#fff" stroke="#5e5e5e" strokeWidth={2}/>
39
+ <g fill="#5e5e5e">
40
+ <path d="m80 19.9998-20-20.00004414v20.00004414z"/>
41
+ <path d="m10 59.9998h59.9997v5h-59.9997z"/>
42
+ <path d="m10 69.9998h59.9997v5h-59.9997z"/>
43
+ <path d="m10 79.9998h30v5h-30z"/>
44
+ <path d="m10 27.9998h60v27h-60z"/>
45
+ </g>
46
+ <path d="m25.2686 35.5583 2.3413 4.3409 2.3413-4.3409h2.9309l-3.6145 6.1695 3.7085 6.272h-2.9566l-2.4096-4.4263-2.4097 4.4263h-2.9736l3.717-6.272-3.623-6.1695zm10.1684 0h2.1704l3.1958 9.1346 3.1958-9.1346h2.1704l-4.4946 12.4415h-1.7432zm-1.1706 0h2.1618l.3931 8.9039v3.5376h-2.5549zm10.9118 0h2.1704v12.4415h-2.5634v-3.5376zm12.4158 10.4419v1.9996h-6.2634v-1.9996zm-5.4346-10.4419v12.4415h-2.5635v-12.4415z" fill="#fff"/>
47
+ </svg>);
48
+ exports.default = SvgXml;
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgZip = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
38
+ <path d="m1 119v-118.000244h58.5858l19.4142 19.414244v98.586z" fill="#fff" stroke="#5e5e5e" strokeWidth={2}/>
39
+ <g fill="#5e5e5e">
40
+ <path d="m80 19.9998-20-20.00004414v20.00004414z"/>
41
+ <path d="m10 59.9998h59.9997v5h-59.9997z"/>
42
+ <path d="m10 69.9998h59.9997v5h-59.9997z"/>
43
+ <path d="m10 79.9998h30v5h-30z"/>
44
+ <path d="m10 27.9998h60v27h-60z"/>
45
+ </g>
46
+ <path d="m37.5562 46.0002v1.9996h-8.8184v-1.9996zm-.1282-9.0148-7.5537 11.0144h-1.803v-1.4698l7.6135-10.9717h1.7432zm-.8801-1.4271v2.0081h-8.4681v-2.0081zm5.0842 3.1959v9.2456h-2.4695v-9.2456zm-2.6233-2.4097c0-.3589.1253-.6551.376-.8887.2506-.2336.5867-.3503 1.0083-.3503.4158 0 .7491.1167.9997.3503.2564.2336.3845.5298.3845.8887s-.1281.6551-.3845.8887c-.2506.2335-.5839.3503-.9997.3503-.4216 0-.7577-.1168-1.0083-.3503-.2507-.2336-.376-.5298-.376-.8887zm7.1179 4.187v11.0229h-2.4609v-12.8002h2.2815zm5.8533 2.7429v.1795c0 .6722-.0798 1.2959-.2393 1.8713-.1538.5754-.3817 1.0767-.6836 1.5039-.3019.4216-.6779.752-1.1279.9912-.4443.2336-.957.3504-1.5381.3504-.564 0-1.0539-.114-1.4697-.3418-.4159-.2279-.7662-.5469-1.051-.9571-.2792-.4158-.5042-.8972-.6751-1.4441-.1709-.5468-.3019-1.1336-.3931-1.7602v-.47c.0912-.6722.2222-1.2874.3931-1.8457.1709-.564.3959-1.051.6751-1.4612.2848-.4158.6323-.7377 1.0424-.9656.4159-.2278.903-.3417 1.4612-.3417.5868 0 1.1023.111 1.5467.3332.45.2222.826.5412 1.1279.957.3076.4159.5383.9115.6921 1.4869.1595.5753.2393 1.2133.2393 1.914zm-2.4695.1795v-.1795c0-.3931-.0342-.7548-.1025-1.0852-.0627-.3361-.1652-.6295-.3077-.8801-.1367-.2507-.319-.4444-.5468-.5811-.2222-.1424-.4928-.2136-.8118-.2136-.3361 0-.6238.0541-.863.1624-.2336.1082-.4244.2649-.5725.4699-.1482.2051-.2592.4501-.3333.7349s-.1196.6067-.1367.9656v1.1877c.0285.4216.1082.8004.2392 1.1365.1311.3304.3333.5924.6067.7861.2735.1937.6324.2905 1.0767.2905.3247 0 .5981-.0712.8203-.2136.2222-.1481.4016-.3503.5383-.6067.1424-.2563.2421-.5525.2991-.8886.0627-.3361.094-.6979.094-1.0852z" fill="#fff"/>
47
+ </svg>);
48
+ exports.default = SvgZip;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgArrowUpward = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" role="img" {...props}>
38
+ <path d="M0 0h24v24H0V0z" fill="none"/>
39
+ <path d="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"/>
40
+ </svg>);
41
+ exports.default = SvgArrowUpward;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgCalendarToday = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" role="img" {...props}>
38
+ <path d="M0 0h24v24H0z" fill="none"/>
39
+ <path d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/>
40
+ </svg>);
41
+ exports.default = SvgCalendarToday;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgCancel = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="img" {...props}>
38
+ <path d="m8.4 17 3.6-3.6 3.6 3.6 1.4-1.4-3.6-3.6L17 8.4 15.6 7 12 10.6 8.4 7 7 8.4l3.6 3.6L7 15.6 8.4 17Zm3.6 5c-1.4 0-2.7-.3-3.9-.8S5.8 20 4.9 19.1s-1.6-2-2.1-3.2S2 13.4 2 12s.3-2.7.8-3.9S4 5.8 4.9 4.9s2-1.6 3.2-2.1S10.6 2 12 2s2.7.3 3.9.8 2.3 1.2 3.2 2.1 1.6 2 2.1 3.2.8 2.5.8 3.9-.3 2.7-.8 3.9-1.2 2.3-2.1 3.2-2 1.6-3.2 2.1-2.5.8-3.9.8Z"/>
39
+ </svg>);
40
+ exports.default = SvgCancel;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgCheckCircle = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" role="img" {...props}>
38
+ <path d="M0 0h24v24H0z" fill="none"/>
39
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/>
40
+ </svg>);
41
+ exports.default = SvgCheckCircle;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgChevronLeft = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" role="img" {...props}>
38
+ <path d="M0 0h24v24H0z" fill="none"/>
39
+ <path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/>
40
+ </svg>);
41
+ exports.default = SvgChevronLeft;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgChevronRight = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" role="img" {...props}>
38
+ <path d="M0 0h24v24H0z" fill="none"/>
39
+ <path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
40
+ </svg>);
41
+ exports.default = SvgChevronRight;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgClose = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" role="img" {...props}>
38
+ <path d="M0 0h24v24H0z" fill="none"/>
39
+ <path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>
40
+ </svg>);
41
+ exports.default = SvgClose;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgDescription = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" role="img" {...props}>
38
+ <path d="M0 0h24v24H0z" fill="none"/>
39
+ <path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/>
40
+ </svg>);
41
+ exports.default = SvgDescription;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgDoubleChevronLeft = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="img" {...props}>
38
+ <path d="M19 16.6 17.6 18l-6-6 6-6L19 7.4 14.4 12l4.6 4.6Zm-6.6 0L11 18l-6-6 6-6 1.4 1.4L7.8 12l4.6 4.6Z"/>
39
+ </svg>);
40
+ exports.default = SvgDoubleChevronLeft;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgDoubleChevronRight = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="img" {...props}>
38
+ <path d="M9.6 12 5 7.4 6.4 6l6 6-6 6L5 16.6 9.6 12Zm6.6 0-4.6-4.6L13 6l6 6-6 6-1.4-1.4 4.6-4.6Z"/>
39
+ </svg>);
40
+ exports.default = SvgDoubleChevronRight;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgError = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" role="img" {...props}>
38
+ <path d="M0 0h24v24H0z" fill="none"/>
39
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/>
40
+ </svg>);
41
+ exports.default = SvgError;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ const React = __importStar(require("react"));
37
+ const SvgExpandLess = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" role="img" {...props}>
38
+ <path d="M0 0h24v24H0z" fill="none"/>
39
+ <path d="M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z"/>
40
+ </svg>);
41
+ exports.default = SvgExpandLess;