@epilot360/icons 1.12.2 → 1.12.3

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 (57) hide show
  1. package/build/index.js +1 -1
  2. package/build/index.js.map +1 -1
  3. package/build/react/EpilotIcon.d.ts +2 -0
  4. package/build/react/EpilotIcon.js +1 -1
  5. package/build/react/EpilotIcon.js.map +1 -1
  6. package/build/react/Pending/index.d.ts +4 -0
  7. package/build/react/Pending/index.js +2 -0
  8. package/build/react/Pending/index.js.map +1 -0
  9. package/build/react/index.d.ts +1 -0
  10. package/build/react/index.js +1 -1
  11. package/build/react/index.js.map +1 -1
  12. package/build/svg/Pending/icon-fill.svg +1 -0
  13. package/build/svg/Pending/icon.svg +1 -0
  14. package/build/svg/Pending/index.d.ts +3 -0
  15. package/build/svg/Pending/index.js +2 -0
  16. package/build/svg/Pending/index.js.map +1 -0
  17. package/build/svg/index.d.ts +1 -0
  18. package/build/svg/index.js +1 -1
  19. package/build/svg/index.js.map +1 -1
  20. package/build/svg/svgIcon.d.ts +1 -0
  21. package/build/svg/svgIcon.js +1 -1
  22. package/build/svg/svgIcon.js.map +1 -1
  23. package/dist/bundle.js +1 -1
  24. package/dist/bundle.js.map +1 -1
  25. package/icons.config.yaml +4 -0
  26. package/index.js +1 -1
  27. package/index.js.map +1 -1
  28. package/package.json +1 -1
  29. package/react/EpilotIcon.d.ts +2 -0
  30. package/react/EpilotIcon.js +1 -1
  31. package/react/EpilotIcon.js.map +1 -1
  32. package/react/Pending/index.d.ts +4 -0
  33. package/react/Pending/index.js +2 -0
  34. package/react/Pending/index.js.map +1 -0
  35. package/react/index.d.ts +1 -0
  36. package/react/index.js +1 -1
  37. package/react/index.js.map +1 -1
  38. package/src/react/EpilotIcon.tsx +2 -0
  39. package/src/react/Pending/index.tsx +22 -0
  40. package/src/react/Pending/story.stories.tsx +13 -0
  41. package/src/react/index.ts +1 -0
  42. package/src/svg/Pending/icon-fill.svg +1 -0
  43. package/src/svg/Pending/icon.svg +1 -0
  44. package/src/svg/Pending/index.ts +12 -0
  45. package/src/svg/index.ts +1 -0
  46. package/src/svg/svgIcon.ts +2 -0
  47. package/svg/Pending/icon-fill.svg +1 -0
  48. package/svg/Pending/icon.svg +1 -0
  49. package/svg/Pending/index.d.ts +3 -0
  50. package/svg/Pending/index.js +2 -0
  51. package/svg/Pending/index.js.map +1 -0
  52. package/svg/index.d.ts +1 -0
  53. package/svg/index.js +1 -1
  54. package/svg/index.js.map +1 -1
  55. package/svg/svgIcon.d.ts +1 -0
  56. package/svg/svgIcon.js +1 -1
  57. package/svg/svgIcon.js.map +1 -1
@@ -131,6 +131,7 @@ import { Diagram } from './Diagram';
131
131
  import { Repeat } from './Repeat';
132
132
  import { MoveDown } from './MoveDown';
133
133
  import { StepOver } from './StepOver';
134
+ import { Pending } from './Pending';
134
135
 
135
136
  import type { IconPropsReact } from './types';
136
137
 
@@ -265,6 +266,7 @@ export const IconComponentsMap = {
265
266
  repeat: Repeat,
266
267
  move_down: MoveDown,
267
268
  step_over: StepOver,
269
+ pending_actions: Pending,
268
270
  };
269
271
 
270
272
  export type IconName = keyof typeof IconComponentsMap;
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+
3
+ import { ReactComponent as Filled } from '../../svg/Pending/icon-fill.svg';
4
+ import { ReactComponent as Outlined } from '../../svg/Pending/icon.svg';
5
+ import { defaultIconProps } from '../common';
6
+ import type { IconPropsReact } from '../types';
7
+
8
+ const name = 'pending_actions';
9
+
10
+ export function Pending(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 Pending;
@@ -0,0 +1,13 @@
1
+ import { generateStory } from '../../stories/util';
2
+
3
+ import { Pending } from '.';
4
+
5
+ const story = generateStory(Pending);
6
+
7
+ export default {
8
+ title: 'Icons/Pending',
9
+ tags: ['autodocs'],
10
+ ...story.meta,
11
+ };
12
+
13
+ export const Icon = story.story;
@@ -128,5 +128,6 @@ export * from './Diagram';
128
128
  export * from './Repeat';
129
129
  export * from './MoveDown';
130
130
  export * from './StepOver';
131
+ export * from './Pending';
131
132
 
132
133
  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="M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z"/></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 PendingSVG = (opts?: IconProps): string => {
7
+ const variant = opts?.variant ?? 'filled';
8
+
9
+ return variant === 'outlined' ? OutlinedSVG : FilledSVG;
10
+ };
11
+
12
+ export default PendingSVG;
package/src/svg/index.ts CHANGED
@@ -128,5 +128,6 @@ export * from './Diagram';
128
128
  export * from './Repeat';
129
129
  export * from './MoveDown';
130
130
  export * from './StepOver';
131
+ export * from './Pending';
131
132
 
132
133
  export * from './svgIcon';
@@ -129,6 +129,7 @@ import { DiagramSVG } from './Diagram';
129
129
  import { RepeatSVG } from './Repeat';
130
130
  import { MoveDownSVG } from './MoveDown';
131
131
  import { StepOverSVG } from './StepOver';
132
+ import { PendingSVG } from './Pending';
132
133
 
133
134
  import type { IconProps } from '../types';
134
135
 
@@ -263,6 +264,7 @@ export const svgMap = {
263
264
  repeat: RepeatSVG,
264
265
  move_down: MoveDownSVG,
265
266
  step_over: StepOverSVG,
267
+ pending_actions: PendingSVG,
266
268
  };
267
269
 
268
270
  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="M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z"/></svg>
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const PendingSVG: (opts?: IconProps) => string;
3
+ export default PendingSVG;
@@ -0,0 +1,2 @@
1
+ (()=>{"use strict";var t={51625:(t,e,r)=>{r.d(e,{Z:()=>o});r(99497);const o='<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z"/></svg>'},63642:(t,e,r)=>{r.d(e,{Z:()=>o});r(99497);const o='<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z"/></svg>'},99497:t=>{t.exports=require("react")}},e={};function r(o){var q=e[o];if(void 0!==q)return q.exports;var v=e[o]={exports:{}};return t[o](v,v.exports,r),v.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var o={};(()=>{r.r(o),r.d(o,{PendingSVG:()=>q,default:()=>v});var t=r(51625),e=r(63642);const q=r=>{var o;return"outlined"===(null!=(o=null==r?void 0:r.variant)?o:"filled")?e.Z:t.Z},v=q})(),module.exports=o})();
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/Pending/index.js","mappings":"oEAcA,o1C,4CCAA,o1C,YCdAA,EAAOC,QAAUC,QAAQ,Q,GCCrBC,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBE,IAAjBD,EACH,OAAOA,EAAaL,QAGrB,IAAID,EAASG,EAAyBE,GAAY,CAGjDJ,QAAS,CAAC,GAOX,OAHAO,EAAoBH,GAAUL,EAAQA,EAAOC,QAASG,GAG/CJ,EAAOC,OACf,CCrBAG,EAAoBK,EAAKT,IACxB,IAAIU,EAASV,GAAUA,EAAOW,WAC7B,IAAOX,EAAiB,QACxB,IAAM,EAEP,OADAI,EAAoBQ,EAAEF,EAAQ,CAAEG,EAAGH,IAC5BA,CAAM,ECLdN,EAAoBQ,EAAI,CAACX,EAASa,KACjC,IAAI,IAAIC,KAAOD,EACXV,EAAoBY,EAAEF,EAAYC,KAASX,EAAoBY,EAAEf,EAASc,IAC5EE,OAAOC,eAAejB,EAASc,EAAK,CAAEI,YAAY,EAAMC,IAAKN,EAAWC,IAE1E,ECNDX,EAAoBY,EAAI,CAACK,EAAKC,IAAUL,OAAOM,UAAUC,eAAeC,KAAKJ,EAAKC,GCClFlB,EAAoBsB,EAAKzB,IACH,oBAAX0B,QAA0BA,OAAOC,aAC1CX,OAAOC,eAAejB,EAAS0B,OAAOC,YAAa,CAAEC,MAAO,WAE7DZ,OAAOC,eAAejB,EAAS,aAAc,CAAE4B,OAAO,GAAO,E,wFCAvD,MAAMC,EAAcC,IAL3B,MAQE,MAAmB,cAFH,eAAAA,OAAA,EAAAA,EAAMC,SAAN,EAAiB,UAED,IAAc,GAAS,EAGzD,G","sources":["webpack://icons/./src/svg/Pending/icon-fill.svg","webpack://icons/./src/svg/Pending/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/Pending/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: \"M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z\"\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=\\\"M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z\\\"/></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: \"M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z\"\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=\\\"M698.913-80q-79 0-134-55.283-55-55.282-55-133.717 0-78.435 55-133.717 55-55.283 134-55.283 78.435 0 133.718 55.283Q887.913-347.435 887.913-269q0 78.435-55.282 133.717Q777.348-80 698.913-80Zm14.392-192.369v-92.116q0-9.211-6.669-15.559-6.669-6.347-15.561-6.347-9.292 0-16.423 6.791-7.13 6.791-7.13 16.646v91.128q0 7.998 2.848 14.865 2.848 6.868 7.978 12.918l62.304 64.304q6.566 6.565 15.979 6.565t15.978-7.211q6.565-7.211 6.848-16.261.283-9.05-6.848-16.202l-59.304-59.521Zm-528.218 166.5q-32.677 0-55.948-23.27-23.27-23.271-23.27-55.948v-589.826q0-34.464 22.377-57.124 22.377-22.659 56.841-22.659H371.26q9.261-35.566 39.421-58.631 30.16-23.065 69.319-23.065 38.261 0 68.587 23.065t40.718 58.631h185.608q34.464 0 57.124 22.659 22.659 22.66 22.659 57.124v220.912q0 17.272-11.833 28.724-11.834 11.451-28.566 11.451t-28.058-11.451q-11.326-11.452-11.326-28.724v-220.912h-57.174v57.174q0 16.707-11.451 28.158T678.13-678.13H281.87q-16.707 0-28.158-11.451t-11.451-28.158v-57.174h-57.174v589.826h249.522q16.706 0 28.157 11.501 11.452 11.502 11.452 28.283 0 16.782-11.452 28.108-11.451 11.326-28.157 11.326H185.087ZM480-782.826q17 0 28.5-11.5t11.5-28.5q0-16.435-11.5-28.218-11.5-11.782-28.5-11.782t-28.5 11.782Q440-839.261 440-822.826q0 17 11.5 28.5t28.5 11.5Z\\\"/></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 PendingSVG = (opts?: IconProps): string => {\n const variant = opts?.variant ?? 'filled';\n\n return variant === 'outlined' ? OutlinedSVG : FilledSVG;\n};\n\nexport default PendingSVG;\n"],"names":["module","exports","require","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","__webpack_modules__","n","getter","__esModule","d","a","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","r","Symbol","toStringTag","value","PendingSVG","opts","variant"],"sourceRoot":""}
package/svg/index.d.ts CHANGED
@@ -128,4 +128,5 @@ export * from './Diagram';
128
128
  export * from './Repeat';
129
129
  export * from './MoveDown';
130
130
  export * from './StepOver';
131
+ export * from './Pending';
131
132
  export * from './svgIcon';