@ledgerhq/icons-ui 0.3.3 → 0.3.4-nightly.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 (55) hide show
  1. package/native/GiftMedium.d.ts +9 -0
  2. package/native/GiftMedium.js +8 -0
  3. package/native/LedgerLogoRegular.d.ts +9 -0
  4. package/native/LedgerLogoRegular.js +12 -0
  5. package/native/LockClosedMedium.d.ts +9 -0
  6. package/native/LockClosedMedium.js +8 -0
  7. package/native/PhotographMedium.d.ts +9 -0
  8. package/native/PhotographMedium.js +8 -0
  9. package/native/PhotographRegular.d.ts +9 -0
  10. package/native/PhotographRegular.js +8 -0
  11. package/native/StaxRegular.d.ts +9 -0
  12. package/native/StaxRegular.js +8 -0
  13. package/native/TicketMedium.d.ts +9 -0
  14. package/native/TicketMedium.js +8 -0
  15. package/native/UploadMedium.d.ts +9 -0
  16. package/native/UploadMedium.js +8 -0
  17. package/native/index.d.ts +8 -0
  18. package/native/index.js +8 -0
  19. package/package.json +1 -1
  20. package/react/GiftMedium.d.ts +8 -0
  21. package/react/GiftMedium.js +7 -0
  22. package/react/LedgerLogoRegular.d.ts +8 -0
  23. package/react/LedgerLogoRegular.js +11 -0
  24. package/react/LockClosedMedium.d.ts +8 -0
  25. package/react/LockClosedMedium.js +7 -0
  26. package/react/PhotographMedium.d.ts +8 -0
  27. package/react/PhotographMedium.js +7 -0
  28. package/react/PhotographRegular.d.ts +8 -0
  29. package/react/PhotographRegular.js +7 -0
  30. package/react/StaxRegular.d.ts +8 -0
  31. package/react/StaxRegular.js +7 -0
  32. package/react/TicketMedium.d.ts +8 -0
  33. package/react/TicketMedium.js +7 -0
  34. package/react/UploadMedium.d.ts +8 -0
  35. package/react/UploadMedium.js +7 -0
  36. package/react/cjs/GiftMedium.js +47 -0
  37. package/react/cjs/GiftMedium.js.map +7 -0
  38. package/react/cjs/LedgerLogoRegular.js +52 -0
  39. package/react/cjs/LedgerLogoRegular.js.map +7 -0
  40. package/react/cjs/LockClosedMedium.js +47 -0
  41. package/react/cjs/LockClosedMedium.js.map +7 -0
  42. package/react/cjs/PhotographMedium.js +47 -0
  43. package/react/cjs/PhotographMedium.js.map +7 -0
  44. package/react/cjs/PhotographRegular.js +47 -0
  45. package/react/cjs/PhotographRegular.js.map +7 -0
  46. package/react/cjs/StaxRegular.js +45 -0
  47. package/react/cjs/StaxRegular.js.map +7 -0
  48. package/react/cjs/TicketMedium.js +47 -0
  49. package/react/cjs/TicketMedium.js.map +7 -0
  50. package/react/cjs/UploadMedium.js +47 -0
  51. package/react/cjs/UploadMedium.js.map +7 -0
  52. package/react/cjs/index.js +16 -0
  53. package/react/cjs/index.js.map +2 -2
  54. package/react/index.d.ts +8 -0
  55. package/react/index.js +8 -0
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ type Props = {
4
+ size?: number | string;
5
+ color?: string;
6
+ style?: StyleProp<ViewStyle>;
7
+ };
8
+ declare function GiftMedium({ size, color, style }: Props): JSX.Element;
9
+ export default GiftMedium;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import { Path } from "react-native-svg";
3
+ import Svg from "./StyledSvg";
4
+ function GiftMedium({ size = 16, color = "neutral.c100", style }) {
5
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
6
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M8.837 2.165a3.4 3.4 0 013.49 1.446l.01.014A2.9 2.9 0 0116.682 7.1H19a2.9 2.9 0 01.9 5.657V19a2.9 2.9 0 01-2.9 2.9H7A2.9 2.9 0 014.1 19v-6.243A2.899 2.899 0 015 7.1h1.5a3.4 3.4 0 012.337-4.935zM9.5 7.1h1.6V5.5a1.6 1.6 0 10-1.6 1.6zm3.4 0V6A1.1 1.1 0 1114 7.1h-1.1zm-7 5.8V19A1.1 1.1 0 007 20.1h4.1v-7.2H5.9zm7 0v7.2H17a1.1 1.1 0 001.1-1.1v-6.1h-5.2zm0-1.8V8.9H19a1.1 1.1 0 010 2.2h-6.1zm-1.8-2.2v2.2H5a1.1 1.1 0 010-2.2h6.1z" }));
7
+ }
8
+ export default GiftMedium;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ type Props = {
4
+ size?: number | string;
5
+ color?: string;
6
+ style?: StyleProp<ViewStyle>;
7
+ };
8
+ declare function LedgerLogoRegular({ size, color, style }: Props): JSX.Element;
9
+ export default LedgerLogoRegular;
@@ -0,0 +1,12 @@
1
+ import * as React from "react";
2
+ import { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ import Svg from "./StyledSvg";
4
+ function LedgerLogoRegular({ size = 16, color = "neutral.c100", style }) {
5
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 29 24", fill: color, style: style },
6
+ React.createElement(G, { clipPath: "url(#prefix__clip0_1244_52272)" },
7
+ React.createElement(Path, { d: "M.715 17.185V24h10.37v-1.511H2.226v-5.304H.716zm26.059 0v5.304h-8.86v1.51h10.37v-6.814h-1.51zM11.1 6.815v10.37h6.815v-1.363H12.61V6.815h-1.51zM.715 0v6.815h1.511V1.51h8.86V0H.715zm17.2 0v1.511h8.859v5.304h1.51V0h-10.37z" })),
8
+ React.createElement(Defs, null,
9
+ React.createElement(ClipPath, { id: "prefix__clip0_1244_52272" },
10
+ React.createElement(Path, { transform: "translate(.715)", d: "M0 0h27.57v24H0z" }))));
11
+ }
12
+ export default LedgerLogoRegular;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ type Props = {
4
+ size?: number | string;
5
+ color?: string;
6
+ style?: StyleProp<ViewStyle>;
7
+ };
8
+ declare function LockClosedMedium({ size, color, style }: Props): JSX.Element;
9
+ export default LockClosedMedium;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import { Path } from "react-native-svg";
3
+ import Svg from "./StyledSvg";
4
+ function LockClosedMedium({ size = 16, color = "neutral.c100", style }) {
5
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
6
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M8.535 3.535A4.9 4.9 0 0116.9 7v3.1H18a2.9 2.9 0 012.9 2.9v6a2.9 2.9 0 01-2.9 2.9H6A2.9 2.9 0 013.1 19v-6A2.9 2.9 0 016 10.1h1.1V7a4.9 4.9 0 011.435-3.465zM8.9 10.1h6.2V7a3.1 3.1 0 10-6.2 0v3.1zM6 11.9A1.1 1.1 0 004.9 13v6A1.1 1.1 0 006 20.1h12a1.1 1.1 0 001.1-1.1v-6a1.1 1.1 0 00-1.1-1.1H6zm6 2.2a.9.9 0 01.9.9v2a.9.9 0 01-1.8 0v-2a.9.9 0 01.9-.9z" }));
7
+ }
8
+ export default LockClosedMedium;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ type Props = {
4
+ size?: number | string;
5
+ color?: string;
6
+ style?: StyleProp<ViewStyle>;
7
+ };
8
+ declare function PhotographMedium({ size, color, style }: Props): JSX.Element;
9
+ export default PhotographMedium;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import { Path } from "react-native-svg";
3
+ import Svg from "./StyledSvg";
4
+ function PhotographMedium({ size = 16, color = "neutral.c100", style }) {
5
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
6
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M3.805 3.805A2.75 2.75 0 015.75 3h12a2.75 2.75 0 012.75 2.75v12a2.75 2.75 0 01-2.75 2.75h-12A2.75 2.75 0 013 17.75v-12c0-.73.29-1.429.805-1.945zM4.5 16.061v1.689A1.25 1.25 0 005.75 19h12A1.25 1.25 0 0019 17.75v-3.69l-1.366-1.366a1.25 1.25 0 00-1.768 0l-1.055 1.056 1.47 1.47a.75.75 0 11-1.061 1.06l-4.586-4.586a1.25 1.25 0 00-1.768 0L4.5 16.061zm9.25-3.372l-2.056-2.055a2.75 2.75 0 00-3.888 0L4.5 13.939V5.75A1.25 1.25 0 015.75 4.5h12A1.25 1.25 0 0119 5.75v6.19l-.306-.306a2.75 2.75 0 00-3.888 0l-1.056 1.055zM13 7.75a.75.75 0 01.75-.75h.01a.75.75 0 010 1.5h-.01a.75.75 0 01-.75-.75z" }));
7
+ }
8
+ export default PhotographMedium;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ type Props = {
4
+ size?: number | string;
5
+ color?: string;
6
+ style?: StyleProp<ViewStyle>;
7
+ };
8
+ declare function PhotographRegular({ size, color, style }: Props): JSX.Element;
9
+ export default PhotographRegular;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import { Path } from "react-native-svg";
3
+ import Svg from "./StyledSvg";
4
+ function PhotographRegular({ size = 16, color = "neutral.c100", style }) {
5
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
6
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M3.805 3.805A2.75 2.75 0 015.75 3h12a2.75 2.75 0 012.75 2.75v12a2.75 2.75 0 01-2.75 2.75h-12A2.75 2.75 0 013 17.75v-12c0-.73.29-1.429.805-1.945zM4.5 16.061v1.689A1.25 1.25 0 005.75 19h12A1.25 1.25 0 0019 17.75v-3.69l-1.366-1.366a1.25 1.25 0 00-1.768 0l-1.055 1.056 1.47 1.47a.75.75 0 11-1.061 1.06l-4.586-4.586a1.25 1.25 0 00-1.768 0L4.5 16.061zm9.25-3.372l-2.056-2.055a2.75 2.75 0 00-3.888 0L4.5 13.939V5.75A1.25 1.25 0 015.75 4.5h12A1.25 1.25 0 0119 5.75v6.19l-.306-.306a2.75 2.75 0 00-3.888 0l-1.056 1.055zM13 7.75a.75.75 0 01.75-.75h.01a.75.75 0 010 1.5h-.01a.75.75 0 01-.75-.75z" }));
7
+ }
8
+ export default PhotographRegular;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ type Props = {
4
+ size?: number | string;
5
+ color?: string;
6
+ style?: StyleProp<ViewStyle>;
7
+ };
8
+ declare function StaxRegular({ size, color, style }: Props): JSX.Element;
9
+ export default StaxRegular;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import { Path } from "react-native-svg";
3
+ import Svg from "./StyledSvg";
4
+ function StaxRegular({ size = 16, color = "neutral.c100", style }) {
5
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
6
+ React.createElement(Path, { d: "M15.6 3.5H5.4v18h10.2a3 3 0 003-3v-9h.6V7.1h-.6v-.6a3 3 0 00-3-3zM7.2 19.7V5.3h8.4a1.2 1.2 0 011.2 1.2v12a1.2 1.2 0 01-1.2 1.2H7.2z" }));
7
+ }
8
+ export default StaxRegular;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ type Props = {
4
+ size?: number | string;
5
+ color?: string;
6
+ style?: StyleProp<ViewStyle>;
7
+ };
8
+ declare function TicketMedium({ size, color, style }: Props): JSX.Element;
9
+ export default TicketMedium;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import { Path } from "react-native-svg";
3
+ import Svg from "./StyledSvg";
4
+ function TicketMedium({ size = 16, color = "neutral.c100", style }) {
5
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
6
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M2.95 4.95A2.9 2.9 0 015 4.1h14A2.9 2.9 0 0121.9 7v3a.9.9 0 01-.9.9 1.1 1.1 0 100 2.2.9.9 0 01.9.9v3a2.9 2.9 0 01-2.9 2.9H5A2.9 2.9 0 012.1 17v-3a.9.9 0 01.9-.9 1.1 1.1 0 000-2.2.9.9 0 01-.9-.9V7a2.9 2.9 0 01.85-2.05zM5 5.9A1.1 1.1 0 003.9 7v2.243a2.9 2.9 0 010 5.514V17A1.1 1.1 0 005 18.1h9.1V17a.9.9 0 111.8 0v1.1H19a1.1 1.1 0 001.1-1.1v-2.243a2.899 2.899 0 010-5.514V7A1.1 1.1 0 0019 5.9h-3.1V7a.9.9 0 01-1.8 0V5.9H5zm10 4.2a.9.9 0 01.9.9v2a.9.9 0 01-1.8 0v-2a.9.9 0 01.9-.9z" }));
7
+ }
8
+ export default TicketMedium;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ type Props = {
4
+ size?: number | string;
5
+ color?: string;
6
+ style?: StyleProp<ViewStyle>;
7
+ };
8
+ declare function UploadMedium({ size, color, style }: Props): JSX.Element;
9
+ export default UploadMedium;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import { Path } from "react-native-svg";
3
+ import Svg from "./StyledSvg";
4
+ function UploadMedium({ size = 16, color = "neutral.c100", style }) {
5
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
6
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M12 2.1a.9.9 0 01.636.264l5 5a.9.9 0 11-1.273 1.273L12.9 5.172v11.829a.9.9 0 01-1.8 0V5.174L7.635 8.637a.9.9 0 01-1.272-1.272l5-5.001A.9.9 0 0112 2.1zm-9 14a.9.9 0 01.9.9A3.1 3.1 0 007 20.1h10a3.1 3.1 0 003.1-3.1.9.9 0 111.8 0 4.9 4.9 0 01-4.9 4.9H7A4.9 4.9 0 012.1 17a.9.9 0 01.9-.9z" }));
7
+ }
8
+ export default UploadMedium;
package/native/index.d.ts CHANGED
@@ -359,6 +359,7 @@ export { default as FullnodeErrorMedium } from "./FullnodeErrorMedium";
359
359
  export { default as FullnodeSyncMedium } from "./FullnodeSyncMedium";
360
360
  export { default as FullnodeMedium } from "./FullnodeMedium";
361
361
  export { default as GiftCardMedium } from "./GiftCardMedium";
362
+ export { default as GiftMedium } from "./GiftMedium";
362
363
  export { default as GithubMedium } from "./GithubMedium";
363
364
  export { default as GlobeMedium } from "./GlobeMedium";
364
365
  export { default as GooglePlayMedium } from "./GooglePlayMedium";
@@ -389,6 +390,7 @@ export { default as LinkedinMedium } from "./LinkedinMedium";
389
390
  export { default as LinuxMedium } from "./LinuxMedium";
390
391
  export { default as ListMedium } from "./ListMedium";
391
392
  export { default as LockAltMedium } from "./LockAltMedium";
393
+ export { default as LockClosedMedium } from "./LockClosedMedium";
392
394
  export { default as LockMedium } from "./LockMedium";
393
395
  export { default as LogsMedium } from "./LogsMedium";
394
396
  export { default as MailMedium } from "./MailMedium";
@@ -433,6 +435,7 @@ export { default as PasteMedium } from "./PasteMedium";
433
435
  export { default as PenMedium } from "./PenMedium";
434
436
  export { default as PercentMedium } from "./PercentMedium";
435
437
  export { default as PhoneMedium } from "./PhoneMedium";
438
+ export { default as PhotographMedium } from "./PhotographMedium";
436
439
  export { default as PieChartMedium } from "./PieChartMedium";
437
440
  export { default as PlaneMedium } from "./PlaneMedium";
438
441
  export { default as PlanetMedium } from "./PlanetMedium";
@@ -486,6 +489,7 @@ export { default as ThreeCircledFinaMedium } from "./ThreeCircledFinaMedium";
486
489
  export { default as ThreeCircledInitMedium } from "./ThreeCircledInitMedium";
487
490
  export { default as ThreeCircledMediMedium } from "./ThreeCircledMediMedium";
488
491
  export { default as ThreeCircledMedium } from "./ThreeCircledMedium";
492
+ export { default as TicketMedium } from "./TicketMedium";
489
493
  export { default as ToolMedium } from "./ToolMedium";
490
494
  export { default as ToolboxMedium } from "./ToolboxMedium";
491
495
  export { default as ToolsMedium } from "./ToolsMedium";
@@ -503,6 +507,7 @@ export { default as TwoCircledMedium } from "./TwoCircledMedium";
503
507
  export { default as UndelegateMedium } from "./UndelegateMedium";
504
508
  export { default as UnfreezeMedium } from "./UnfreezeMedium";
505
509
  export { default as UnlockMedium } from "./UnlockMedium";
510
+ export { default as UploadMedium } from "./UploadMedium";
506
511
  export { default as UsbMedium } from "./UsbMedium";
507
512
  export { default as UserCheckMedium } from "./UserCheckMedium";
508
513
  export { default as UserSecretMedium } from "./UserSecretMedium";
@@ -642,6 +647,7 @@ export { default as KeyRegular } from "./KeyRegular";
642
647
  export { default as LanguageRegular } from "./LanguageRegular";
643
648
  export { default as LayersRegular } from "./LayersRegular";
644
649
  export { default as LedgerBlueRegular } from "./LedgerBlueRegular";
650
+ export { default as LedgerLogoRegular } from "./LedgerLogoRegular";
645
651
  export { default as LendRegular } from "./LendRegular";
646
652
  export { default as LifeRingRegular } from "./LifeRingRegular";
647
653
  export { default as LightbulbRegular } from "./LightbulbRegular";
@@ -687,6 +693,7 @@ export { default as OthersRegular } from "./OthersRegular";
687
693
  export { default as PasteRegular } from "./PasteRegular";
688
694
  export { default as PenRegular } from "./PenRegular";
689
695
  export { default as PhoneRegular } from "./PhoneRegular";
696
+ export { default as PhotographRegular } from "./PhotographRegular";
690
697
  export { default as PlaneRegular } from "./PlaneRegular";
691
698
  export { default as PlusRegular } from "./PlusRegular";
692
699
  export { default as PodcastRegular } from "./PodcastRegular";
@@ -720,6 +727,7 @@ export { default as SixCircledRegular } from "./SixCircledRegular";
720
727
  export { default as SortRegular } from "./SortRegular";
721
728
  export { default as StarSolidRegular } from "./StarSolidRegular";
722
729
  export { default as StarRegular } from "./StarRegular";
730
+ export { default as StaxRegular } from "./StaxRegular";
723
731
  export { default as StopRegular } from "./StopRegular";
724
732
  export { default as StopwatchRegular } from "./StopwatchRegular";
725
733
  export { default as StorageRegular } from "./StorageRegular";
package/native/index.js CHANGED
@@ -359,6 +359,7 @@ export { default as FullnodeErrorMedium } from "./FullnodeErrorMedium";
359
359
  export { default as FullnodeSyncMedium } from "./FullnodeSyncMedium";
360
360
  export { default as FullnodeMedium } from "./FullnodeMedium";
361
361
  export { default as GiftCardMedium } from "./GiftCardMedium";
362
+ export { default as GiftMedium } from "./GiftMedium";
362
363
  export { default as GithubMedium } from "./GithubMedium";
363
364
  export { default as GlobeMedium } from "./GlobeMedium";
364
365
  export { default as GooglePlayMedium } from "./GooglePlayMedium";
@@ -389,6 +390,7 @@ export { default as LinkedinMedium } from "./LinkedinMedium";
389
390
  export { default as LinuxMedium } from "./LinuxMedium";
390
391
  export { default as ListMedium } from "./ListMedium";
391
392
  export { default as LockAltMedium } from "./LockAltMedium";
393
+ export { default as LockClosedMedium } from "./LockClosedMedium";
392
394
  export { default as LockMedium } from "./LockMedium";
393
395
  export { default as LogsMedium } from "./LogsMedium";
394
396
  export { default as MailMedium } from "./MailMedium";
@@ -433,6 +435,7 @@ export { default as PasteMedium } from "./PasteMedium";
433
435
  export { default as PenMedium } from "./PenMedium";
434
436
  export { default as PercentMedium } from "./PercentMedium";
435
437
  export { default as PhoneMedium } from "./PhoneMedium";
438
+ export { default as PhotographMedium } from "./PhotographMedium";
436
439
  export { default as PieChartMedium } from "./PieChartMedium";
437
440
  export { default as PlaneMedium } from "./PlaneMedium";
438
441
  export { default as PlanetMedium } from "./PlanetMedium";
@@ -486,6 +489,7 @@ export { default as ThreeCircledFinaMedium } from "./ThreeCircledFinaMedium";
486
489
  export { default as ThreeCircledInitMedium } from "./ThreeCircledInitMedium";
487
490
  export { default as ThreeCircledMediMedium } from "./ThreeCircledMediMedium";
488
491
  export { default as ThreeCircledMedium } from "./ThreeCircledMedium";
492
+ export { default as TicketMedium } from "./TicketMedium";
489
493
  export { default as ToolMedium } from "./ToolMedium";
490
494
  export { default as ToolboxMedium } from "./ToolboxMedium";
491
495
  export { default as ToolsMedium } from "./ToolsMedium";
@@ -503,6 +507,7 @@ export { default as TwoCircledMedium } from "./TwoCircledMedium";
503
507
  export { default as UndelegateMedium } from "./UndelegateMedium";
504
508
  export { default as UnfreezeMedium } from "./UnfreezeMedium";
505
509
  export { default as UnlockMedium } from "./UnlockMedium";
510
+ export { default as UploadMedium } from "./UploadMedium";
506
511
  export { default as UsbMedium } from "./UsbMedium";
507
512
  export { default as UserCheckMedium } from "./UserCheckMedium";
508
513
  export { default as UserSecretMedium } from "./UserSecretMedium";
@@ -642,6 +647,7 @@ export { default as KeyRegular } from "./KeyRegular";
642
647
  export { default as LanguageRegular } from "./LanguageRegular";
643
648
  export { default as LayersRegular } from "./LayersRegular";
644
649
  export { default as LedgerBlueRegular } from "./LedgerBlueRegular";
650
+ export { default as LedgerLogoRegular } from "./LedgerLogoRegular";
645
651
  export { default as LendRegular } from "./LendRegular";
646
652
  export { default as LifeRingRegular } from "./LifeRingRegular";
647
653
  export { default as LightbulbRegular } from "./LightbulbRegular";
@@ -687,6 +693,7 @@ export { default as OthersRegular } from "./OthersRegular";
687
693
  export { default as PasteRegular } from "./PasteRegular";
688
694
  export { default as PenRegular } from "./PenRegular";
689
695
  export { default as PhoneRegular } from "./PhoneRegular";
696
+ export { default as PhotographRegular } from "./PhotographRegular";
690
697
  export { default as PlaneRegular } from "./PlaneRegular";
691
698
  export { default as PlusRegular } from "./PlusRegular";
692
699
  export { default as PodcastRegular } from "./PodcastRegular";
@@ -720,6 +727,7 @@ export { default as SixCircledRegular } from "./SixCircledRegular";
720
727
  export { default as SortRegular } from "./SortRegular";
721
728
  export { default as StarSolidRegular } from "./StarSolidRegular";
722
729
  export { default as StarRegular } from "./StarRegular";
730
+ export { default as StaxRegular } from "./StaxRegular";
723
731
  export { default as StopRegular } from "./StopRegular";
724
732
  export { default as StopwatchRegular } from "./StopwatchRegular";
725
733
  export { default as StorageRegular } from "./StorageRegular";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ledgerhq/icons-ui",
3
3
  "description": "Icons used by the Ledger design system.",
4
- "version": "0.3.3",
4
+ "version": "0.3.4-nightly.0",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ size?: number | string;
4
+ color?: string;
5
+ style?: object;
6
+ };
7
+ declare function GiftMedium({ size, color, style }: Props): JSX.Element;
8
+ export default GiftMedium;
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import Svg from "./StyledSvg";
3
+ function GiftMedium({ size = 16, color = "currentColor", style }) {
4
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
5
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.837 2.165a3.4 3.4 0 013.49 1.446l.01.014A2.9 2.9 0 0116.682 7.1H19a2.9 2.9 0 01.9 5.657V19a2.9 2.9 0 01-2.9 2.9H7A2.9 2.9 0 014.1 19v-6.243A2.899 2.899 0 015 7.1h1.5a3.4 3.4 0 012.337-4.935zM9.5 7.1h1.6V5.5a1.6 1.6 0 10-1.6 1.6zm3.4 0V6A1.1 1.1 0 1114 7.1h-1.1zm-7 5.8V19A1.1 1.1 0 007 20.1h4.1v-7.2H5.9zm7 0v7.2H17a1.1 1.1 0 001.1-1.1v-6.1h-5.2zm0-1.8V8.9H19a1.1 1.1 0 010 2.2h-6.1zm-1.8-2.2v2.2H5a1.1 1.1 0 010-2.2h6.1z" }));
6
+ }
7
+ export default GiftMedium;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ size?: number | string;
4
+ color?: string;
5
+ style?: object;
6
+ };
7
+ declare function LedgerLogoRegular({ size, color, style }: Props): JSX.Element;
8
+ export default LedgerLogoRegular;
@@ -0,0 +1,11 @@
1
+ import * as React from "react";
2
+ import Svg from "./StyledSvg";
3
+ function LedgerLogoRegular({ size = 16, color = "currentColor", style }) {
4
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 29 24", fill: color, style: style },
5
+ React.createElement("g", { clipPath: "url(#prefix__clip0_1244_52272)" },
6
+ React.createElement("path", { d: "M.715 17.185V24h10.37v-1.511H2.226v-5.304H.716zm26.059 0v5.304h-8.86v1.51h10.37v-6.814h-1.51zM11.1 6.815v10.37h6.815v-1.363H12.61V6.815h-1.51zM.715 0v6.815h1.511V1.51h8.86V0H.715zm17.2 0v1.511h8.859v5.304h1.51V0h-10.37z" })),
7
+ React.createElement("defs", null,
8
+ React.createElement("clipPath", { id: "prefix__clip0_1244_52272" },
9
+ React.createElement("path", { transform: "translate(.715)", d: "M0 0h27.57v24H0z" }))));
10
+ }
11
+ export default LedgerLogoRegular;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ size?: number | string;
4
+ color?: string;
5
+ style?: object;
6
+ };
7
+ declare function LockClosedMedium({ size, color, style }: Props): JSX.Element;
8
+ export default LockClosedMedium;
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import Svg from "./StyledSvg";
3
+ function LockClosedMedium({ size = 16, color = "currentColor", style }) {
4
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
5
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.535 3.535A4.9 4.9 0 0116.9 7v3.1H18a2.9 2.9 0 012.9 2.9v6a2.9 2.9 0 01-2.9 2.9H6A2.9 2.9 0 013.1 19v-6A2.9 2.9 0 016 10.1h1.1V7a4.9 4.9 0 011.435-3.465zM8.9 10.1h6.2V7a3.1 3.1 0 10-6.2 0v3.1zM6 11.9A1.1 1.1 0 004.9 13v6A1.1 1.1 0 006 20.1h12a1.1 1.1 0 001.1-1.1v-6a1.1 1.1 0 00-1.1-1.1H6zm6 2.2a.9.9 0 01.9.9v2a.9.9 0 01-1.8 0v-2a.9.9 0 01.9-.9z" }));
6
+ }
7
+ export default LockClosedMedium;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ size?: number | string;
4
+ color?: string;
5
+ style?: object;
6
+ };
7
+ declare function PhotographMedium({ size, color, style }: Props): JSX.Element;
8
+ export default PhotographMedium;
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import Svg from "./StyledSvg";
3
+ function PhotographMedium({ size = 16, color = "currentColor", style }) {
4
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
5
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.805 3.805A2.75 2.75 0 015.75 3h12a2.75 2.75 0 012.75 2.75v12a2.75 2.75 0 01-2.75 2.75h-12A2.75 2.75 0 013 17.75v-12c0-.73.29-1.429.805-1.945zM4.5 16.061v1.689A1.25 1.25 0 005.75 19h12A1.25 1.25 0 0019 17.75v-3.69l-1.366-1.366a1.25 1.25 0 00-1.768 0l-1.055 1.056 1.47 1.47a.75.75 0 11-1.061 1.06l-4.586-4.586a1.25 1.25 0 00-1.768 0L4.5 16.061zm9.25-3.372l-2.056-2.055a2.75 2.75 0 00-3.888 0L4.5 13.939V5.75A1.25 1.25 0 015.75 4.5h12A1.25 1.25 0 0119 5.75v6.19l-.306-.306a2.75 2.75 0 00-3.888 0l-1.056 1.055zM13 7.75a.75.75 0 01.75-.75h.01a.75.75 0 010 1.5h-.01a.75.75 0 01-.75-.75z" }));
6
+ }
7
+ export default PhotographMedium;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ size?: number | string;
4
+ color?: string;
5
+ style?: object;
6
+ };
7
+ declare function PhotographRegular({ size, color, style }: Props): JSX.Element;
8
+ export default PhotographRegular;
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import Svg from "./StyledSvg";
3
+ function PhotographRegular({ size = 16, color = "currentColor", style }) {
4
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
5
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.805 3.805A2.75 2.75 0 015.75 3h12a2.75 2.75 0 012.75 2.75v12a2.75 2.75 0 01-2.75 2.75h-12A2.75 2.75 0 013 17.75v-12c0-.73.29-1.429.805-1.945zM4.5 16.061v1.689A1.25 1.25 0 005.75 19h12A1.25 1.25 0 0019 17.75v-3.69l-1.366-1.366a1.25 1.25 0 00-1.768 0l-1.055 1.056 1.47 1.47a.75.75 0 11-1.061 1.06l-4.586-4.586a1.25 1.25 0 00-1.768 0L4.5 16.061zm9.25-3.372l-2.056-2.055a2.75 2.75 0 00-3.888 0L4.5 13.939V5.75A1.25 1.25 0 015.75 4.5h12A1.25 1.25 0 0119 5.75v6.19l-.306-.306a2.75 2.75 0 00-3.888 0l-1.056 1.055zM13 7.75a.75.75 0 01.75-.75h.01a.75.75 0 010 1.5h-.01a.75.75 0 01-.75-.75z" }));
6
+ }
7
+ export default PhotographRegular;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ size?: number | string;
4
+ color?: string;
5
+ style?: object;
6
+ };
7
+ declare function StaxRegular({ size, color, style }: Props): JSX.Element;
8
+ export default StaxRegular;
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import Svg from "./StyledSvg";
3
+ function StaxRegular({ size = 16, color = "currentColor", style }) {
4
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
5
+ React.createElement("path", { d: "M15.6 3.5H5.4v18h10.2a3 3 0 003-3v-9h.6V7.1h-.6v-.6a3 3 0 00-3-3zM7.2 19.7V5.3h8.4a1.2 1.2 0 011.2 1.2v12a1.2 1.2 0 01-1.2 1.2H7.2z" }));
6
+ }
7
+ export default StaxRegular;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ size?: number | string;
4
+ color?: string;
5
+ style?: object;
6
+ };
7
+ declare function TicketMedium({ size, color, style }: Props): JSX.Element;
8
+ export default TicketMedium;
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import Svg from "./StyledSvg";
3
+ function TicketMedium({ size = 16, color = "currentColor", style }) {
4
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
5
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.95 4.95A2.9 2.9 0 015 4.1h14A2.9 2.9 0 0121.9 7v3a.9.9 0 01-.9.9 1.1 1.1 0 100 2.2.9.9 0 01.9.9v3a2.9 2.9 0 01-2.9 2.9H5A2.9 2.9 0 012.1 17v-3a.9.9 0 01.9-.9 1.1 1.1 0 000-2.2.9.9 0 01-.9-.9V7a2.9 2.9 0 01.85-2.05zM5 5.9A1.1 1.1 0 003.9 7v2.243a2.9 2.9 0 010 5.514V17A1.1 1.1 0 005 18.1h9.1V17a.9.9 0 111.8 0v1.1H19a1.1 1.1 0 001.1-1.1v-2.243a2.899 2.899 0 010-5.514V7A1.1 1.1 0 0019 5.9h-3.1V7a.9.9 0 01-1.8 0V5.9H5zm10 4.2a.9.9 0 01.9.9v2a.9.9 0 01-1.8 0v-2a.9.9 0 01.9-.9z" }));
6
+ }
7
+ export default TicketMedium;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ size?: number | string;
4
+ color?: string;
5
+ style?: object;
6
+ };
7
+ declare function UploadMedium({ size, color, style }: Props): JSX.Element;
8
+ export default UploadMedium;
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import Svg from "./StyledSvg";
3
+ function UploadMedium({ size = 16, color = "currentColor", style }) {
4
+ return React.createElement(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: color, style: style },
5
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 2.1a.9.9 0 01.636.264l5 5a.9.9 0 11-1.273 1.273L12.9 5.172v11.829a.9.9 0 01-1.8 0V5.174L7.635 8.637a.9.9 0 01-1.272-1.272l5-5.001A.9.9 0 0112 2.1zm-9 14a.9.9 0 01.9.9A3.1 3.1 0 007 20.1h10a3.1 3.1 0 003.1-3.1.9.9 0 111.8 0 4.9 4.9 0 01-4.9 4.9H7A4.9 4.9 0 012.1 17a.9.9 0 01.9-.9z" }));
6
+ }
7
+ export default UploadMedium;
@@ -0,0 +1,47 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __export = (target, all) => {
9
+ __markAsModule(target);
10
+ for (var name in all)
11
+ __defProp(target, name, { get: all[name], enumerable: true });
12
+ };
13
+ var __reExport = (target, module2, desc) => {
14
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
15
+ for (let key of __getOwnPropNames(module2))
16
+ if (!__hasOwnProp.call(target, key) && key !== "default")
17
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
18
+ }
19
+ return target;
20
+ };
21
+ var __toModule = (module2) => {
22
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
23
+ };
24
+ __export(exports, {
25
+ default: () => GiftMedium_default
26
+ });
27
+ var React = __toModule(require("react"));
28
+ var import_StyledSvg = __toModule(require("./StyledSvg"));
29
+ function GiftMedium({
30
+ size = 16,
31
+ color = "currentColor",
32
+ style
33
+ }) {
34
+ return /* @__PURE__ */ React.createElement(import_StyledSvg.default, {
35
+ width: size,
36
+ height: size,
37
+ viewBox: "0 0 24 24",
38
+ fill: color,
39
+ style
40
+ }, /* @__PURE__ */ React.createElement("path", {
41
+ fillRule: "evenodd",
42
+ clipRule: "evenodd",
43
+ d: "M8.837 2.165a3.4 3.4 0 013.49 1.446l.01.014A2.9 2.9 0 0116.682 7.1H19a2.9 2.9 0 01.9 5.657V19a2.9 2.9 0 01-2.9 2.9H7A2.9 2.9 0 014.1 19v-6.243A2.899 2.899 0 015 7.1h1.5a3.4 3.4 0 012.337-4.935zM9.5 7.1h1.6V5.5a1.6 1.6 0 10-1.6 1.6zm3.4 0V6A1.1 1.1 0 1114 7.1h-1.1zm-7 5.8V19A1.1 1.1 0 007 20.1h4.1v-7.2H5.9zm7 0v7.2H17a1.1 1.1 0 001.1-1.1v-6.1h-5.2zm0-1.8V8.9H19a1.1 1.1 0 010 2.2h-6.1zm-1.8-2.2v2.2H5a1.1 1.1 0 010-2.2h6.1z"
44
+ }));
45
+ }
46
+ var GiftMedium_default = GiftMedium;
47
+ //# sourceMappingURL=GiftMedium.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/react/GiftMedium.tsx"],
4
+ "sourcesContent": ["import * as React from \"react\";\nimport Svg from \"./StyledSvg\";\ntype Props = {\n size?: number | string;\n color?: string;\n style?: object;\n};\n\nfunction GiftMedium({\n size = 16,\n color = \"currentColor\",\n style\n}: Props): JSX.Element {\n return <Svg width={size} height={size} viewBox=\"0 0 24 24\" fill={color} style={style}><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.837 2.165a3.4 3.4 0 013.49 1.446l.01.014A2.9 2.9 0 0116.682 7.1H19a2.9 2.9 0 01.9 5.657V19a2.9 2.9 0 01-2.9 2.9H7A2.9 2.9 0 014.1 19v-6.243A2.899 2.899 0 015 7.1h1.5a3.4 3.4 0 012.337-4.935zM9.5 7.1h1.6V5.5a1.6 1.6 0 10-1.6 1.6zm3.4 0V6A1.1 1.1 0 1114 7.1h-1.1zm-7 5.8V19A1.1 1.1 0 007 20.1h4.1v-7.2H5.9zm7 0v7.2H17a1.1 1.1 0 001.1-1.1v-6.1h-5.2zm0-1.8V8.9H19a1.1 1.1 0 010 2.2h-6.1zm-1.8-2.2v2.2H5a1.1 1.1 0 010-2.2h6.1z\" /></Svg>;\n}\n\nexport default GiftMedium;"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA,YAAuB;AACvB,uBAAgB;AAOhB,oBAAoB;AAAA,EAClB,OAAO;AAAA,EACP,QAAQ;AAAA,EACR;AAAA,GACqB;AACrB,SAAO,oCAAC,0BAAD;AAAA,IAAK,OAAO;AAAA,IAAM,QAAQ;AAAA,IAAM,SAAQ;AAAA,IAAY,MAAM;AAAA,IAAO;AAAA,KAAc,oCAAC,QAAD;AAAA,IAAM,UAAS;AAAA,IAAU,UAAS;AAAA,IAAU,GAAE;AAAA;AAAA;AAGtI,IAAO,qBAAQ;",
6
+ "names": []
7
+ }
@@ -0,0 +1,52 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __export = (target, all) => {
9
+ __markAsModule(target);
10
+ for (var name in all)
11
+ __defProp(target, name, { get: all[name], enumerable: true });
12
+ };
13
+ var __reExport = (target, module2, desc) => {
14
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
15
+ for (let key of __getOwnPropNames(module2))
16
+ if (!__hasOwnProp.call(target, key) && key !== "default")
17
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
18
+ }
19
+ return target;
20
+ };
21
+ var __toModule = (module2) => {
22
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
23
+ };
24
+ __export(exports, {
25
+ default: () => LedgerLogoRegular_default
26
+ });
27
+ var React = __toModule(require("react"));
28
+ var import_StyledSvg = __toModule(require("./StyledSvg"));
29
+ function LedgerLogoRegular({
30
+ size = 16,
31
+ color = "currentColor",
32
+ style
33
+ }) {
34
+ return /* @__PURE__ */ React.createElement(import_StyledSvg.default, {
35
+ width: size,
36
+ height: size,
37
+ viewBox: "0 0 29 24",
38
+ fill: color,
39
+ style
40
+ }, /* @__PURE__ */ React.createElement("g", {
41
+ clipPath: "url(#prefix__clip0_1244_52272)"
42
+ }, /* @__PURE__ */ React.createElement("path", {
43
+ d: "M.715 17.185V24h10.37v-1.511H2.226v-5.304H.716zm26.059 0v5.304h-8.86v1.51h10.37v-6.814h-1.51zM11.1 6.815v10.37h6.815v-1.363H12.61V6.815h-1.51zM.715 0v6.815h1.511V1.51h8.86V0H.715zm17.2 0v1.511h8.859v5.304h1.51V0h-10.37z"
44
+ })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
45
+ id: "prefix__clip0_1244_52272"
46
+ }, /* @__PURE__ */ React.createElement("path", {
47
+ transform: "translate(.715)",
48
+ d: "M0 0h27.57v24H0z"
49
+ }))));
50
+ }
51
+ var LedgerLogoRegular_default = LedgerLogoRegular;
52
+ //# sourceMappingURL=LedgerLogoRegular.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/react/LedgerLogoRegular.tsx"],
4
+ "sourcesContent": ["import * as React from \"react\";\nimport Svg from \"./StyledSvg\";\ntype Props = {\n size?: number | string;\n color?: string;\n style?: object;\n};\n\nfunction LedgerLogoRegular({\n size = 16,\n color = \"currentColor\",\n style\n}: Props): JSX.Element {\n return <Svg width={size} height={size} viewBox=\"0 0 29 24\" fill={color} style={style}><g clipPath=\"url(#prefix__clip0_1244_52272)\"><path d=\"M.715 17.185V24h10.37v-1.511H2.226v-5.304H.716zm26.059 0v5.304h-8.86v1.51h10.37v-6.814h-1.51zM11.1 6.815v10.37h6.815v-1.363H12.61V6.815h-1.51zM.715 0v6.815h1.511V1.51h8.86V0H.715zm17.2 0v1.511h8.859v5.304h1.51V0h-10.37z\" /></g><defs><clipPath id=\"prefix__clip0_1244_52272\"><path transform=\"translate(.715)\" d=\"M0 0h27.57v24H0z\" /></clipPath></defs></Svg>;\n}\n\nexport default LedgerLogoRegular;"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA,YAAuB;AACvB,uBAAgB;AAOhB,2BAA2B;AAAA,EACzB,OAAO;AAAA,EACP,QAAQ;AAAA,EACR;AAAA,GACqB;AACrB,SAAO,oCAAC,0BAAD;AAAA,IAAK,OAAO;AAAA,IAAM,QAAQ;AAAA,IAAM,SAAQ;AAAA,IAAY,MAAM;AAAA,IAAO;AAAA,KAAc,oCAAC,KAAD;AAAA,IAAG,UAAS;AAAA,KAAiC,oCAAC,QAAD;AAAA,IAAM,GAAE;AAAA,OAAqO,oCAAC,QAAD,MAAM,oCAAC,YAAD;AAAA,IAAU,IAAG;AAAA,KAA2B,oCAAC,QAAD;AAAA,IAAO,WAAU;AAAA,IAAkB,GAAE;AAAA;AAAA;AAGrc,IAAO,4BAAQ;",
6
+ "names": []
7
+ }