@epilot360/icons 1.17.15 → 1.17.16

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 (60) hide show
  1. package/build/index.js +154 -9
  2. package/build/index.js.map +1 -1
  3. package/build/react/Cards/index.d.ts +4 -0
  4. package/build/react/Cards/index.js +209 -0
  5. package/build/react/Cards/index.js.map +1 -0
  6. package/build/react/EpilotIcon.d.ts +2 -0
  7. package/build/react/EpilotIcon.js +112 -1
  8. package/build/react/EpilotIcon.js.map +1 -1
  9. package/build/react/index.d.ts +1 -0
  10. package/build/react/index.js +118 -4
  11. package/build/react/index.js.map +1 -1
  12. package/build/svg/Cards/icon-fill.svg +1 -0
  13. package/build/svg/Cards/icon.svg +1 -0
  14. package/build/svg/Cards/index.d.ts +3 -0
  15. package/build/svg/Cards/index.js +159 -0
  16. package/build/svg/Cards/index.js.map +1 -0
  17. package/build/svg/index.d.ts +1 -0
  18. package/build/svg/index.js +85 -4
  19. package/build/svg/index.js.map +1 -1
  20. package/build/svg/svgIcon.d.ts +1 -0
  21. package/build/svg/svgIcon.js +79 -1
  22. package/build/svg/svgIcon.js.map +1 -1
  23. package/build/version.json +2 -2
  24. package/dist/bundle.js +1 -1
  25. package/dist/bundle.js.map +1 -1
  26. package/dist/version.json +2 -2
  27. package/icons.config.yaml +4 -0
  28. package/index.js +154 -9
  29. package/index.js.map +1 -1
  30. package/package.json +1 -1
  31. package/react/Cards/index.d.ts +4 -0
  32. package/react/Cards/index.js +209 -0
  33. package/react/Cards/index.js.map +1 -0
  34. package/react/EpilotIcon.d.ts +2 -0
  35. package/react/EpilotIcon.js +112 -1
  36. package/react/EpilotIcon.js.map +1 -1
  37. package/react/index.d.ts +1 -0
  38. package/react/index.js +118 -4
  39. package/react/index.js.map +1 -1
  40. package/src/react/Cards/index.tsx +22 -0
  41. package/src/react/Cards/story.stories.tsx +13 -0
  42. package/src/react/EpilotIcon.tsx +2 -0
  43. package/src/react/index.ts +1 -0
  44. package/src/svg/Cards/icon-fill.svg +1 -0
  45. package/src/svg/Cards/icon.svg +1 -0
  46. package/src/svg/Cards/index.ts +12 -0
  47. package/src/svg/index.ts +1 -0
  48. package/src/svg/svgIcon.ts +2 -0
  49. package/svg/Cards/icon-fill.svg +1 -0
  50. package/svg/Cards/icon.svg +1 -0
  51. package/svg/Cards/index.d.ts +3 -0
  52. package/svg/Cards/index.js +159 -0
  53. package/svg/Cards/index.js.map +1 -0
  54. package/svg/index.d.ts +1 -0
  55. package/svg/index.js +85 -4
  56. package/svg/index.js.map +1 -1
  57. package/svg/svgIcon.d.ts +1 -0
  58. package/svg/svgIcon.js +79 -1
  59. package/svg/svgIcon.js.map +1 -1
  60. package/version.json +2 -2
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+
3
+ import { ReactComponent as Filled } from '../../svg/Cards/icon-fill.svg';
4
+ import { ReactComponent as Outlined } from '../../svg/Cards/icon.svg';
5
+ import { defaultIconProps } from '../common';
6
+ import type { IconPropsReact } from '../types';
7
+
8
+ const name = 'cards';
9
+
10
+ export function Cards(props: IconPropsReact) {
11
+ const { variant, ...restProps } = {
12
+ ...defaultIconProps,
13
+ ...props,
14
+ };
15
+ const IconComponent = variant === 'outlined' ? Outlined : Filled;
16
+
17
+ const overrides = props.size ? { width: props.size, height: props.size } : {};
18
+
19
+ return <IconComponent aria-label={name} {...restProps} {...overrides} />;
20
+ }
21
+
22
+ export default Cards;
@@ -0,0 +1,13 @@
1
+ import { generateStory } from '../../stories/util';
2
+
3
+ import { Cards } from '.';
4
+
5
+ const story = generateStory(Cards);
6
+
7
+ export default {
8
+ title: 'Icons/Cards',
9
+ tags: ['autodocs'],
10
+ ...story.meta,
11
+ };
12
+
13
+ export const Icon = story.story;
@@ -198,6 +198,7 @@ import { Target } from './Target';
198
198
  import { Campaign } from './Campaign';
199
199
  import { Ticket } from './Ticket';
200
200
  import { Flow } from './Flow';
201
+ import { Cards } from './Cards';
201
202
 
202
203
  import type { IconPropsReact } from './types';
203
204
 
@@ -399,6 +400,7 @@ export const IconComponentsMap = {
399
400
  campaign: Campaign,
400
401
  ticket: Ticket,
401
402
  flow: Flow,
403
+ cards: Cards,
402
404
  };
403
405
 
404
406
  export type IconName = keyof typeof IconComponentsMap;
@@ -195,5 +195,6 @@ export * from './Target';
195
195
  export * from './Campaign';
196
196
  export * from './Ticket';
197
197
  export * from './Flow';
198
+ export * from './Cards';
198
199
 
199
200
  export * from './EpilotIcon';
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM285.09-560H401v-115.91H285.09V-560ZM560-560h115.91v-115.91H560V-560ZM285.09-284.09H401V-400H285.09v115.91Zm274.91 0h115.91V-400H560v115.91ZM401-560Zm159 0Zm0 160Zm-159 0ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z"/></svg>
@@ -0,0 +1,12 @@
1
+ import type { IconProps } from '../../types';
2
+
3
+ import FilledSVG from './icon-fill.svg';
4
+ import OutlinedSVG from './icon.svg';
5
+
6
+ export const CardsSVG = (opts?: IconProps): string => {
7
+ const variant = opts?.variant ?? 'filled';
8
+
9
+ return variant === 'outlined' ? OutlinedSVG : FilledSVG;
10
+ };
11
+
12
+ export default CardsSVG;
package/src/svg/index.ts CHANGED
@@ -195,5 +195,6 @@ export * from './Target';
195
195
  export * from './Campaign';
196
196
  export * from './Ticket';
197
197
  export * from './Flow';
198
+ export * from './Cards';
198
199
 
199
200
  export * from './svgIcon';
@@ -196,6 +196,7 @@ import { TargetSVG } from './Target';
196
196
  import { CampaignSVG } from './Campaign';
197
197
  import { TicketSVG } from './Ticket';
198
198
  import { FlowSVG } from './Flow';
199
+ import { CardsSVG } from './Cards';
199
200
 
200
201
  import type { IconProps } from '../types';
201
202
 
@@ -397,6 +398,7 @@ export const svgMap = {
397
398
  campaign: CampaignSVG,
398
399
  ticket: TicketSVG,
399
400
  flow: FlowSVG,
401
+ cards: CardsSVG,
400
402
  };
401
403
 
402
404
  export type IconSVGName = keyof typeof svgMap;
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM285.09-560H401v-115.91H285.09V-560ZM560-560h115.91v-115.91H560V-560ZM285.09-284.09H401V-400H285.09v115.91Zm274.91 0h115.91V-400H560v115.91ZM401-560Zm159 0Zm0 160Zm-159 0ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z"/></svg>
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const CardsSVG: (opts?: IconProps) => string;
3
+ export default CardsSVG;
@@ -0,0 +1,159 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ var __webpack_modules__ = ({
4
+
5
+ /***/ 16305:
6
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7
+
8
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9
+ /* harmony export */ Z: () => (__WEBPACK_DEFAULT_EXPORT__)
10
+ /* harmony export */ });
11
+ /* unused harmony export ReactComponent */
12
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
13
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
14
+ var _path;
15
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
16
+
17
+ var SvgIconFill = function SvgIconFill(props) {
18
+ return /*#__PURE__*/React.createElement("svg", _extends({
19
+ xmlns: "http://www.w3.org/2000/svg",
20
+ width: 48,
21
+ height: 48,
22
+ viewBox: "0 -960 960 960"
23
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
24
+ d: "M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z"
25
+ })));
26
+ };
27
+
28
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z\"/></svg>");
29
+
30
+ /***/ }),
31
+
32
+ /***/ 20118:
33
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
34
+
35
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
36
+ /* harmony export */ Z: () => (__WEBPACK_DEFAULT_EXPORT__)
37
+ /* harmony export */ });
38
+ /* unused harmony export ReactComponent */
39
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
40
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
41
+ var _path;
42
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
43
+
44
+ var SvgIcon = function SvgIcon(props) {
45
+ return /*#__PURE__*/React.createElement("svg", _extends({
46
+ xmlns: "http://www.w3.org/2000/svg",
47
+ width: 48,
48
+ height: 48,
49
+ viewBox: "0 -960 960 960"
50
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
51
+ d: "M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM285.09-560H401v-115.91H285.09V-560ZM560-560h115.91v-115.91H560V-560ZM285.09-284.09H401V-400H285.09v115.91Zm274.91 0h115.91V-400H560v115.91ZM401-560Zm159 0Zm0 160Zm-159 0ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z"
52
+ })));
53
+ };
54
+
55
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM285.09-560H401v-115.91H285.09V-560ZM560-560h115.91v-115.91H560V-560ZM285.09-284.09H401V-400H285.09v115.91Zm274.91 0h115.91V-400H560v115.91ZM401-560Zm159 0Zm0 160Zm-159 0ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z\"/></svg>");
56
+
57
+ /***/ }),
58
+
59
+ /***/ 99497:
60
+ /***/ ((module) => {
61
+
62
+ module.exports = require("react");
63
+
64
+ /***/ })
65
+
66
+ /******/ });
67
+ /************************************************************************/
68
+ /******/ // The module cache
69
+ /******/ var __webpack_module_cache__ = {};
70
+ /******/
71
+ /******/ // The require function
72
+ /******/ function __webpack_require__(moduleId) {
73
+ /******/ // Check if module is in cache
74
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
75
+ /******/ if (cachedModule !== undefined) {
76
+ /******/ return cachedModule.exports;
77
+ /******/ }
78
+ /******/ // Create a new module (and put it into the cache)
79
+ /******/ var module = __webpack_module_cache__[moduleId] = {
80
+ /******/ // no module.id needed
81
+ /******/ // no module.loaded needed
82
+ /******/ exports: {}
83
+ /******/ };
84
+ /******/
85
+ /******/ // Execute the module function
86
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
87
+ /******/
88
+ /******/ // Return the exports of the module
89
+ /******/ return module.exports;
90
+ /******/ }
91
+ /******/
92
+ /************************************************************************/
93
+ /******/ /* webpack/runtime/compat get default export */
94
+ /******/ (() => {
95
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
96
+ /******/ __webpack_require__.n = (module) => {
97
+ /******/ var getter = module && module.__esModule ?
98
+ /******/ () => (module['default']) :
99
+ /******/ () => (module);
100
+ /******/ __webpack_require__.d(getter, { a: getter });
101
+ /******/ return getter;
102
+ /******/ };
103
+ /******/ })();
104
+ /******/
105
+ /******/ /* webpack/runtime/define property getters */
106
+ /******/ (() => {
107
+ /******/ // define getter functions for harmony exports
108
+ /******/ __webpack_require__.d = (exports, definition) => {
109
+ /******/ for(var key in definition) {
110
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
111
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
112
+ /******/ }
113
+ /******/ }
114
+ /******/ };
115
+ /******/ })();
116
+ /******/
117
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
118
+ /******/ (() => {
119
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
120
+ /******/ })();
121
+ /******/
122
+ /******/ /* webpack/runtime/make namespace object */
123
+ /******/ (() => {
124
+ /******/ // define __esModule on exports
125
+ /******/ __webpack_require__.r = (exports) => {
126
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
127
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
128
+ /******/ }
129
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
130
+ /******/ };
131
+ /******/ })();
132
+ /******/
133
+ /************************************************************************/
134
+ var __webpack_exports__ = {};
135
+ // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
136
+ (() => {
137
+ __webpack_require__.r(__webpack_exports__);
138
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
139
+ /* harmony export */ CardsSVG: () => (/* binding */ CardsSVG),
140
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
141
+ /* harmony export */ });
142
+ /* harmony import */ var _icon_fill_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16305);
143
+ /* harmony import */ var _icon_svg__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(20118);
144
+
145
+
146
+
147
+ const CardsSVG = (opts) => {
148
+ var _a;
149
+ const variant = (_a = opts == null ? void 0 : opts.variant) != null ? _a : "filled";
150
+ return variant === "outlined" ? _icon_svg__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z : _icon_fill_svg__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z;
151
+ };
152
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (CardsSVG);
153
+
154
+ })();
155
+
156
+ module.exports = __webpack_exports__;
157
+ /******/ })()
158
+ ;
159
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/Cards/index.js","mappings":";;;;;;;;;;;;;AAAA;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACyC;AACzC,iEAAe,8gCAA8gC;;;;;;;;;;;;;ACd7hC;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACqC;AACrC,iEAAe,yrCAAyrC;;;;;;;ACdxsC;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;ACJsB;AACE;AAEjB,MAAM,WAAW,CAAC,SAA6B;AALtD;AAME,QAAM,WAAU,kCAAM,YAAN,YAAiB;AAEjC,SAAO,YAAY,aAAa,0DAAW,GAAG,+DAAS;AACzD;AAEA,iEAAe,QAAQ,EAAC","sources":["webpack://icons/./src/svg/Cards/icon-fill.svg","webpack://icons/./src/svg/Cards/icon.svg","webpack://icons/external commonjs2 \"react\"","webpack://icons/webpack/bootstrap","webpack://icons/webpack/runtime/compat get default export","webpack://icons/webpack/runtime/define property getters","webpack://icons/webpack/runtime/hasOwnProperty shorthand","webpack://icons/webpack/runtime/make namespace object","webpack://icons/./src/svg/Cards/index.ts"],"sourcesContent":["var _path;\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\nimport * as React from \"react\";\nvar SvgIconFill = function SvgIconFill(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 48,\n height: 48,\n viewBox: \"0 -960 960 960\"\n }, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z\"\n })));\n};\nexport { SvgIconFill as ReactComponent };\nexport default \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" width=\\\"48\\\" height=\\\"48\\\" viewBox=\\\"0 -960 960 960\\\"><path d=\\\"M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z\\\"/></svg>\";","var _path;\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\nimport * as React from \"react\";\nvar SvgIcon = function SvgIcon(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 48,\n height: 48,\n viewBox: \"0 -960 960 960\"\n }, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM285.09-560H401v-115.91H285.09V-560ZM560-560h115.91v-115.91H560V-560ZM285.09-284.09H401V-400H285.09v115.91Zm274.91 0h115.91V-400H560v115.91ZM401-560Zm159 0Zm0 160Zm-159 0ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z\"\n })));\n};\nexport { SvgIcon as ReactComponent };\nexport default \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" width=\\\"48\\\" height=\\\"48\\\" viewBox=\\\"0 -960 960 960\\\"><path d=\\\"M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM285.09-560H401v-115.91H285.09V-560ZM560-560h115.91v-115.91H560V-560ZM285.09-284.09H401V-400H285.09v115.91Zm274.91 0h115.91V-400H560v115.91ZM401-560Zm159 0Zm0 160Zm-159 0ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z\\\"/></svg>\";","module.exports = require(\"react\");","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import type { IconProps } from '../../types';\n\nimport FilledSVG from './icon-fill.svg';\nimport OutlinedSVG from './icon.svg';\n\nexport const CardsSVG = (opts?: IconProps): string => {\n const variant = opts?.variant ?? 'filled';\n\n return variant === 'outlined' ? OutlinedSVG : FilledSVG;\n};\n\nexport default CardsSVG;\n"],"names":[],"sourceRoot":""}
package/svg/index.d.ts CHANGED
@@ -195,4 +195,5 @@ export * from './Target';
195
195
  export * from './Campaign';
196
196
  export * from './Ticket';
197
197
  export * from './Flow';
198
+ export * from './Cards';
198
199
  export * from './svgIcon';
package/svg/index.js CHANGED
@@ -1732,6 +1732,60 @@ var SvgIcon = function SvgIcon(props) {
1732
1732
 
1733
1733
  /***/ }),
1734
1734
 
1735
+ /***/ 16305:
1736
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1737
+
1738
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1739
+ /* harmony export */ Z: () => (__WEBPACK_DEFAULT_EXPORT__)
1740
+ /* harmony export */ });
1741
+ /* unused harmony export ReactComponent */
1742
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
1743
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
1744
+ var _path;
1745
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
1746
+
1747
+ var SvgIconFill = function SvgIconFill(props) {
1748
+ return /*#__PURE__*/React.createElement("svg", _extends({
1749
+ xmlns: "http://www.w3.org/2000/svg",
1750
+ width: 48,
1751
+ height: 48,
1752
+ viewBox: "0 -960 960 960"
1753
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
1754
+ d: "M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z"
1755
+ })));
1756
+ };
1757
+
1758
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z\"/></svg>");
1759
+
1760
+ /***/ }),
1761
+
1762
+ /***/ 20118:
1763
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1764
+
1765
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1766
+ /* harmony export */ Z: () => (__WEBPACK_DEFAULT_EXPORT__)
1767
+ /* harmony export */ });
1768
+ /* unused harmony export ReactComponent */
1769
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
1770
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
1771
+ var _path;
1772
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
1773
+
1774
+ var SvgIcon = function SvgIcon(props) {
1775
+ return /*#__PURE__*/React.createElement("svg", _extends({
1776
+ xmlns: "http://www.w3.org/2000/svg",
1777
+ width: 48,
1778
+ height: 48,
1779
+ viewBox: "0 -960 960 960"
1780
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
1781
+ d: "M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM285.09-560H401v-115.91H285.09V-560ZM560-560h115.91v-115.91H560V-560ZM285.09-284.09H401V-400H285.09v115.91Zm274.91 0h115.91V-400H560v115.91ZM401-560Zm159 0Zm0 160Zm-159 0ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z"
1782
+ })));
1783
+ };
1784
+
1785
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M421.39-500H264.7q-16.71 0-28.16-11.45t-11.45-28.16V-696.3q0-16.71 11.45-28.16t28.16-11.45h156.69q16.71 0 28.16 11.45T461-696.3v156.69q0 16.71-11.45 28.16T421.39-500Zm0 275.91H264.7q-16.71 0-28.16-11.45t-11.45-28.16v-156.69q0-16.71 11.45-28.16T264.7-460h156.69q16.71 0 28.16 11.45T461-420.39v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM696.3-500H539.61q-16.71 0-28.16-11.45T500-539.61V-696.3q0-16.71 11.45-28.16t28.16-11.45H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16T696.3-500Zm0 275.91H539.61q-16.71 0-28.16-11.45T500-263.7v-156.69q0-16.71 11.45-28.16T539.61-460H696.3q16.71 0 28.16 11.45t11.45 28.16v156.69q0 16.71-11.45 28.16t-28.16 11.45ZM285.09-560H401v-115.91H285.09V-560ZM560-560h115.91v-115.91H560V-560ZM285.09-284.09H401V-400H285.09v115.91Zm274.91 0h115.91V-400H560v115.91ZM401-560Zm159 0Zm0 160Zm-159 0ZM185.09-105.87q-32.48 0-55.85-23.37-23.37-23.37-23.37-55.85v-589.82q0-32.48 23.37-56.13 23.37-23.66 55.85-23.66h589.82q32.48 0 56.13 23.66 23.66 23.65 23.66 56.13v589.82q0 32.48-23.66 55.85-23.65 23.37-56.13 23.37H185.09Zm0-79.22h589.82v-589.82H185.09v589.82Z\"/></svg>");
1786
+
1787
+ /***/ }),
1788
+
1735
1789
  /***/ 60799:
1736
1790
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1737
1791
 
@@ -11360,6 +11414,27 @@ const CampaignSVG = (opts) => {
11360
11414
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (CampaignSVG)));
11361
11415
 
11362
11416
 
11417
+ /***/ }),
11418
+
11419
+ /***/ 56461:
11420
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11421
+
11422
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
11423
+ /* harmony export */ CardsSVG: () => (/* binding */ CardsSVG)
11424
+ /* harmony export */ });
11425
+ /* harmony import */ var _icon_fill_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16305);
11426
+ /* harmony import */ var _icon_svg__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(20118);
11427
+
11428
+
11429
+
11430
+ const CardsSVG = (opts) => {
11431
+ var _a;
11432
+ const variant = (_a = opts == null ? void 0 : opts.variant) != null ? _a : "filled";
11433
+ return variant === "outlined" ? _icon_svg__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z : _icon_fill_svg__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z;
11434
+ };
11435
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (CardsSVG)));
11436
+
11437
+
11363
11438
  /***/ }),
11364
11439
 
11365
11440
  /***/ 41624:
@@ -15031,6 +15106,7 @@ const WorkflowSVG = (opts) => {
15031
15106
  /* harmony import */ var _Campaign__WEBPACK_IMPORTED_MODULE_194__ = __webpack_require__(3942);
15032
15107
  /* harmony import */ var _Ticket__WEBPACK_IMPORTED_MODULE_195__ = __webpack_require__(66255);
15033
15108
  /* harmony import */ var _Flow__WEBPACK_IMPORTED_MODULE_196__ = __webpack_require__(79431);
15109
+ /* harmony import */ var _Cards__WEBPACK_IMPORTED_MODULE_197__ = __webpack_require__(56461);
15034
15110
 
15035
15111
  var __defProp = Object.defineProperty;
15036
15112
  var __getOwnPropSymbols = Object.getOwnPropertySymbols;
@@ -15255,6 +15331,7 @@ var __objRest = (source, exclude) => {
15255
15331
 
15256
15332
 
15257
15333
 
15334
+
15258
15335
 
15259
15336
 
15260
15337
  const svgMap = {
@@ -15454,7 +15531,8 @@ const svgMap = {
15454
15531
  target: _Target__WEBPACK_IMPORTED_MODULE_193__.TargetSVG,
15455
15532
  campaign: _Campaign__WEBPACK_IMPORTED_MODULE_194__.CampaignSVG,
15456
15533
  ticket: _Ticket__WEBPACK_IMPORTED_MODULE_195__.TicketSVG,
15457
- flow: _Flow__WEBPACK_IMPORTED_MODULE_196__.FlowSVG
15534
+ flow: _Flow__WEBPACK_IMPORTED_MODULE_196__.FlowSVG,
15535
+ cards: _Cards__WEBPACK_IMPORTED_MODULE_197__.CardsSVG
15458
15536
  };
15459
15537
  const defaultOpts = {
15460
15538
  name: "epilot",
@@ -15599,6 +15677,7 @@ __webpack_require__.r(__webpack_exports__);
15599
15677
  /* harmony export */ CalendarTodaySVG: () => (/* reexport safe */ _CalendarToday__WEBPACK_IMPORTED_MODULE_31__.CalendarTodaySVG),
15600
15678
  /* harmony export */ CallSVG: () => (/* reexport safe */ _Call__WEBPACK_IMPORTED_MODULE_140__.CallSVG),
15601
15679
  /* harmony export */ CampaignSVG: () => (/* reexport safe */ _Campaign__WEBPACK_IMPORTED_MODULE_194__.CampaignSVG),
15680
+ /* harmony export */ CardsSVG: () => (/* reexport safe */ _Cards__WEBPACK_IMPORTED_MODULE_197__.CardsSVG),
15602
15681
  /* harmony export */ CategorySVG: () => (/* reexport safe */ _Category__WEBPACK_IMPORTED_MODULE_132__.CategorySVG),
15603
15682
  /* harmony export */ CheckBoxSVG: () => (/* reexport safe */ _CheckBox__WEBPACK_IMPORTED_MODULE_113__.CheckBoxSVG),
15604
15683
  /* harmony export */ CheckCircleSVG: () => (/* reexport safe */ _CheckCircle__WEBPACK_IMPORTED_MODULE_9__.CheckCircleSVG),
@@ -15764,8 +15843,8 @@ __webpack_require__.r(__webpack_exports__);
15764
15843
  /* harmony export */ WarningSVG: () => (/* reexport safe */ _Warning__WEBPACK_IMPORTED_MODULE_10__.WarningSVG),
15765
15844
  /* harmony export */ WebhookSVG: () => (/* reexport safe */ _Webhook__WEBPACK_IMPORTED_MODULE_73__.WebhookSVG),
15766
15845
  /* harmony export */ WorkflowSVG: () => (/* reexport safe */ _Workflow__WEBPACK_IMPORTED_MODULE_75__.WorkflowSVG),
15767
- /* harmony export */ svgIcon: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_197__.svgIcon),
15768
- /* harmony export */ svgMap: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_197__.svgMap)
15846
+ /* harmony export */ svgIcon: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_198__.svgIcon),
15847
+ /* harmony export */ svgMap: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_198__.svgMap)
15769
15848
  /* harmony export */ });
15770
15849
  /* harmony import */ var _Epilot__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81960);
15771
15850
  /* harmony import */ var _Edit__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(88885);
@@ -15964,7 +16043,9 @@ __webpack_require__.r(__webpack_exports__);
15964
16043
  /* harmony import */ var _Campaign__WEBPACK_IMPORTED_MODULE_194__ = __webpack_require__(3942);
15965
16044
  /* harmony import */ var _Ticket__WEBPACK_IMPORTED_MODULE_195__ = __webpack_require__(66255);
15966
16045
  /* harmony import */ var _Flow__WEBPACK_IMPORTED_MODULE_196__ = __webpack_require__(79431);
15967
- /* harmony import */ var _svgIcon__WEBPACK_IMPORTED_MODULE_197__ = __webpack_require__(30585);
16046
+ /* harmony import */ var _Cards__WEBPACK_IMPORTED_MODULE_197__ = __webpack_require__(56461);
16047
+ /* harmony import */ var _svgIcon__WEBPACK_IMPORTED_MODULE_198__ = __webpack_require__(30585);
16048
+
15968
16049
 
15969
16050
 
15970
16051