@mobileaction/action-kit 1.1.26 → 1.1.28

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 (56) hide show
  1. package/dist/action-kit.js +3 -3
  2. package/dist/action-kit.mjs +631 -608
  3. package/dist/app-9534bacc.js +1 -0
  4. package/dist/app-f4f9f825.mjs +20 -0
  5. package/dist/apple-colored-0d1aab65.js +1 -0
  6. package/dist/apple-colored-bc5d7cc0.mjs +19 -0
  7. package/dist/aso-92081f02.js +1 -0
  8. package/dist/aso-ebb61c73.mjs +30 -0
  9. package/dist/buy-crypto-95976591.mjs +30 -0
  10. package/dist/buy-crypto-b478fa3c.js +1 -0
  11. package/dist/clipboard-51a06c3f.js +1 -0
  12. package/dist/clipboard-fdfcc45e.mjs +26 -0
  13. package/dist/color-filter-03f09a58.mjs +32 -0
  14. package/dist/color-filter-f5687705.js +1 -0
  15. package/dist/components/animation/index.vue.d.ts +6 -3
  16. package/dist/components/empty/index.vue.d.ts +20 -0
  17. package/dist/components/spin/index.vue.d.ts +9 -0
  18. package/dist/google-colored-b04cc62b.js +1 -0
  19. package/dist/google-colored-ba30c621.mjs +34 -0
  20. package/dist/justify-right-077e8f16.mjs +22 -0
  21. package/dist/justify-right-7f44889d.js +1 -0
  22. package/dist/layer-bulk-15ac189a.js +1 -0
  23. package/dist/layer-bulk-9f594537.mjs +32 -0
  24. package/dist/microscope-0e4350ff.js +1 -0
  25. package/dist/microscope-21832848.mjs +28 -0
  26. package/dist/money-send-1aa85fa1.mjs +30 -0
  27. package/dist/money-send-f02d7703.js +1 -0
  28. package/dist/plug-48296fd8.mjs +22 -0
  29. package/dist/plug-524ab565.js +1 -0
  30. package/dist/plug-bold-bd75ed93.js +1 -0
  31. package/dist/plug-bold-c1f9893e.mjs +19 -0
  32. package/dist/rocket-a66bab29.js +1 -0
  33. package/dist/rocket-e2d475e7.mjs +29 -0
  34. package/dist/src/components/animation/index.vue.d.ts +4 -1
  35. package/dist/src/components/empty/index.vue.d.ts +7 -0
  36. package/dist/src/components/empty/stories/animation.stories.d.ts +7 -0
  37. package/dist/src/components/spin/index.vue.d.ts +3 -0
  38. package/dist/src/components/spin/stories/constants.d.ts +2 -0
  39. package/dist/src/components/spin/stories/container.stories.d.ts +2 -0
  40. package/dist/src/components/spin/stories/default.stories.d.ts +2 -0
  41. package/dist/star-bulk-6313df75.js +1 -0
  42. package/dist/star-bulk-d8bdbc7a.mjs +36 -0
  43. package/dist/status-up-6547be80.mjs +30 -0
  44. package/dist/status-up-74b4a701.js +1 -0
  45. package/dist/story-717675e1.js +1 -0
  46. package/dist/story-b421beca.mjs +31 -0
  47. package/dist/style.css +1 -1
  48. package/dist/trend-up-a17b7c67.js +1 -0
  49. package/dist/trend-up-eca70766.mjs +26 -0
  50. package/dist/volume-low-58e56b04.mjs +30 -0
  51. package/dist/volume-low-7f53bd3e.js +1 -0
  52. package/package.json +1 -1
  53. package/dist/plug-2baa2e97.js +0 -1
  54. package/dist/plug-e2a7722a.mjs +0 -16
  55. package/dist/rocket-ace56b13.js +0 -1
  56. package/dist/rocket-d2bcd822.mjs +0 -16
@@ -1,7 +1,7 @@
1
1
  import { type AnimationName } from "./types";
2
2
  import { SVGRendererConfig } from 'lottie-web/build/player/lottie_light';
3
3
  export interface MaAnimationProps {
4
- name: AnimationName;
4
+ name?: AnimationName;
5
5
  loop?: boolean;
6
6
  autoplay?: boolean;
7
7
  width?: number;
@@ -11,16 +11,19 @@ export interface MaAnimationProps {
11
11
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAnimationProps>, {
12
12
  loop: boolean;
13
13
  autoplay: boolean;
14
+ name: string;
14
15
  }>, {
15
16
  animation: any;
16
17
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onLoaded" | "onComplete" | "onError")[], "onError" | "onLoaded" | "onComplete", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAnimationProps>, {
17
18
  loop: boolean;
18
19
  autoplay: boolean;
20
+ name: string;
19
21
  }>>> & {
20
22
  onOnLoaded?: (...args: any[]) => any;
21
23
  onOnComplete?: (...args: any[]) => any;
22
24
  onOnError?: (...args: any[]) => any;
23
25
  }, {
26
+ name: "rocket" | "success-confetti" | "rounded-loading" | "fly-waiting" | "no-data-found" | "sad-not-found";
24
27
  loop: boolean;
25
28
  autoplay: boolean;
26
29
  }>;
@@ -1,7 +1,11 @@
1
1
  import { MaEmptySize, MaEmptyVariant } from './types';
2
+ import { AnimationName } from "../animation/types";
3
+ import { MaAnimationProps } from "../animation/index.vue";
2
4
  export interface MaRateProps {
3
5
  size?: MaEmptySize;
4
6
  variant?: MaEmptyVariant;
7
+ animation?: AnimationName;
8
+ animationProps?: MaAnimationProps;
5
9
  title?: string;
6
10
  description?: string;
7
11
  }
@@ -15,6 +19,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
15
19
  size: "small" | "medium" | "large";
16
20
  variant: "table" | "general" | "add-app" | "selection";
17
21
  }>, {
22
+ icon: (_: {}) => any;
23
+ title: (_: {}) => any;
24
+ description: (_: {}) => any;
18
25
  default: (_: {}) => any;
19
26
  }>;
20
27
  export default _default;
@@ -0,0 +1,7 @@
1
+ import type { Meta, StoryObj } from '@storybook/vue3';
2
+ import type MaEmpty from '../index.vue';
3
+ declare const meta: Meta<typeof MaEmpty>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof MaEmpty>;
6
+ export declare const Animation: Story;
7
+ export declare const AnimationProps: Story;
@@ -3,6 +3,7 @@ export interface MaSpinProps {
3
3
  type?: MaSpinType;
4
4
  color?: MaSpinColor;
5
5
  spinning?: boolean;
6
+ tip?: string;
6
7
  }
7
8
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaSpinProps>, {
8
9
  type: string;
@@ -17,6 +18,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
17
18
  color: "dark" | "blue" | "orange" | "jordy" | "grey";
18
19
  spinning: boolean;
19
20
  }>, {
21
+ indicator: (_: {}) => any;
22
+ tip: (_: {}) => any;
20
23
  default: (_: {}) => any;
21
24
  }>;
22
25
  export default _default;
@@ -3,3 +3,5 @@ import MaSpin from '../index.vue';
3
3
  export declare const baseConfig: Meta<typeof MaSpin>;
4
4
  export declare const Template: StoryFn;
5
5
  export declare const TemplateContainer: StoryFn;
6
+ export declare const TemplateCustomIndicator: StoryFn;
7
+ export declare const TemplateContainerIndicator: StoryFn;
@@ -4,3 +4,5 @@ declare const meta: Meta<typeof MaSpin>;
4
4
  export default meta;
5
5
  declare type Story = StoryObj<typeof MaSpin>;
6
6
  export declare const Container: Story;
7
+ export declare const WithTip: Story;
8
+ export declare const CustomIndicator: Story;
@@ -4,3 +4,5 @@ declare const meta: Meta<typeof MaSpin>;
4
4
  export default meta;
5
5
  declare type Story = StoryObj<typeof MaSpin>;
6
6
  export declare const Default: Story;
7
+ export declare const WithTip: Story;
8
+ export declare const CustomIndicator: Story;
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),l={xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 20 20"},o=e.createElementVNode("path",{fill:"currentColor",stroke:"currentColor",d:"m14.85 7.883.01.002 2.125.35c.593.098.786.33.83.47.045.141.023.446-.403.875v.001l-1.657 1.657.353.354-.353-.354c-.213.213-.357.5-.436.777-.08.277-.11.6-.04.899l.476 2.049c.177.764-.002 1.043-.092 1.108-.09.066-.409.151-1.082-.25l-1.99-1.183a1.799 1.799 0 0 0-.916-.234c-.304 0-.639.067-.915.234l-1.99 1.181c-.673.399-.994.315-1.084.248-.09-.064-.268-.34-.09-1.104l.474-2.047v-.002c.07-.296.04-.617-.04-.893a1.864 1.864 0 0 0-.43-.778l-.005-.005L5.937 9.58l-.354.353.354-.353c-.426-.426-.447-.728-.403-.868.046-.141.24-.375.832-.477l2.123-.35a1.81 1.81 0 0 0 .764-.342 1.81 1.81 0 0 0 .545-.63l1.174-2.348.002-.003c.277-.566.559-.677.695-.677.138 0 .423.114.71.68v.001l1.173 2.347c.124.255.333.47.547.628.216.159.48.292.751.342Z"},null,-1),c=e.createElementVNode("path",{fill:"currentColor",stroke:"currentColor",d:"M6.667 4.292h-5a.123.123 0 0 1-.088-.038.123.123 0 0 1-.037-.087c0-.03.012-.062.037-.087a.123.123 0 0 1 .088-.038h5c.03 0 .06.012.087.038a.123.123 0 0 1 .038.087c0 .03-.013.061-.038.087a.123.123 0 0 1-.087.038Z",opacity:".4"},null,-1),r=e.createElementVNode("path",{fill:"currentColor",d:"M4.167 16.458h-2.5a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h2.5a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625Z",opacity:".4"},null,-1),n=e.createElementVNode("path",{fill:"#292D32",d:"M2.5 10.625h-.833A.63.63 0 0 1 1.042 10a.63.63 0 0 1 .625-.625H2.5a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625Z",opacity:".4"},null,-1),a=[o,c,r,n];function t(d,i){return e.openBlock(),e.createElementBlock("svg",l,a)}const s={render:t};exports.default=s;exports.render=t;
@@ -0,0 +1,36 @@
1
+ import { openBlock as t, createElementBlock as o, createElementVNode as l } from "vue";
2
+ const c = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "none",
5
+ viewBox: "0 0 20 20"
6
+ }, e = /* @__PURE__ */ l("path", {
7
+ fill: "currentColor",
8
+ stroke: "currentColor",
9
+ d: "m14.85 7.883.01.002 2.125.35c.593.098.786.33.83.47.045.141.023.446-.403.875v.001l-1.657 1.657.353.354-.353-.354c-.213.213-.357.5-.436.777-.08.277-.11.6-.04.899l.476 2.049c.177.764-.002 1.043-.092 1.108-.09.066-.409.151-1.082-.25l-1.99-1.183a1.799 1.799 0 0 0-.916-.234c-.304 0-.639.067-.915.234l-1.99 1.181c-.673.399-.994.315-1.084.248-.09-.064-.268-.34-.09-1.104l.474-2.047v-.002c.07-.296.04-.617-.04-.893a1.864 1.864 0 0 0-.43-.778l-.005-.005L5.937 9.58l-.354.353.354-.353c-.426-.426-.447-.728-.403-.868.046-.141.24-.375.832-.477l2.123-.35a1.81 1.81 0 0 0 .764-.342 1.81 1.81 0 0 0 .545-.63l1.174-2.348.002-.003c.277-.566.559-.677.695-.677.138 0 .423.114.71.68v.001l1.173 2.347c.124.255.333.47.547.628.216.159.48.292.751.342Z"
10
+ }, null, -1), r = /* @__PURE__ */ l("path", {
11
+ fill: "currentColor",
12
+ stroke: "currentColor",
13
+ d: "M6.667 4.292h-5a.123.123 0 0 1-.088-.038.123.123 0 0 1-.037-.087c0-.03.012-.062.037-.087a.123.123 0 0 1 .088-.038h5c.03 0 .06.012.087.038a.123.123 0 0 1 .038.087c0 .03-.013.061-.038.087a.123.123 0 0 1-.087.038Z",
14
+ opacity: ".4"
15
+ }, null, -1), n = /* @__PURE__ */ l("path", {
16
+ fill: "currentColor",
17
+ d: "M4.167 16.458h-2.5a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h2.5a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625Z",
18
+ opacity: ".4"
19
+ }, null, -1), a = /* @__PURE__ */ l("path", {
20
+ fill: "#292D32",
21
+ d: "M2.5 10.625h-.833A.63.63 0 0 1 1.042 10a.63.63 0 0 1 .625-.625H2.5a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625Z",
22
+ opacity: ".4"
23
+ }, null, -1), s = [
24
+ e,
25
+ r,
26
+ n,
27
+ a
28
+ ];
29
+ function h(i, d) {
30
+ return t(), o("svg", c, s);
31
+ }
32
+ const u = { render: h };
33
+ export {
34
+ u as default,
35
+ h as render
36
+ };
@@ -0,0 +1,30 @@
1
+ import { openBlock as c, createElementBlock as o, createElementVNode as t } from "vue";
2
+ const e = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "none",
5
+ viewBox: "0 0 20 20"
6
+ }, r = /* @__PURE__ */ t("path", {
7
+ fill: "currentColor",
8
+ stroke: "currentColor",
9
+ d: "M17.825 6.507v6.985c0 1.417-.42 2.488-1.137 3.204-.716.717-1.788 1.137-3.205 1.137H6.508c-1.417 0-2.488-.42-3.204-1.137-.717-.718-1.137-1.79-1.137-3.213V6.508c0-1.417.42-2.488 1.136-3.204.717-.717 1.788-1.137 3.205-1.137h6.984c1.417 0 2.488.42 3.203 1.136.715.716 1.134 1.787 1.13 3.204Z",
10
+ opacity: ".4"
11
+ }, null, -1), l = /* @__PURE__ */ t("path", {
12
+ fill: "currentColor",
13
+ stroke: "currentColor",
14
+ d: "M5.733 15.25a.123.123 0 0 1-.087-.038.123.123 0 0 1-.038-.087V13.4c0-.03.013-.062.038-.087a.123.123 0 0 1 .087-.038c.03 0 .062.012.087.038a.124.124 0 0 1 .038.087v1.725c0 .07-.055.125-.125.125ZM10 15.25a.123.123 0 0 1-.087-.038.123.123 0 0 1-.038-.087v-3.458c0-.03.012-.062.038-.087a.123.123 0 0 1 .087-.038c.03 0 .061.012.087.038a.123.123 0 0 1 .038.087v3.458c0 .07-.055.125-.125.125Z"
15
+ }, null, -1), n = /* @__PURE__ */ t("path", {
16
+ fill: "currentColor",
17
+ d: "M14.267 15.75a.63.63 0 0 1-.625-.625V9.942a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v5.183c0 .35-.275.625-.625.625ZM14.892 4.85c0-.042-.017-.092-.025-.133l-.026-.109c-.016-.033-.041-.058-.058-.091-.025-.034-.05-.075-.083-.1-.008-.009-.008-.017-.017-.017-.025-.017-.05-.025-.075-.042a.532.532 0 0 0-.117-.066c-.041-.017-.083-.017-.124-.025-.034-.009-.059-.017-.092-.017h-2.442a.63.63 0 0 0-.625.625.63.63 0 0 0 .625.625h1.042a15.123 15.123 0 0 1-7.292 4.258.63.63 0 0 0-.458.759.624.624 0 0 0 .608.475c.05 0 .1-.009.15-.017a16.277 16.277 0 0 0 7.759-4.467v.809a.63.63 0 0 0 .625.625.63.63 0 0 0 .625-.625V4.85Z"
18
+ }, null, -1), a = [
19
+ r,
20
+ l,
21
+ n
22
+ ];
23
+ function s(h, i) {
24
+ return c(), o("svg", e, a);
25
+ }
26
+ const u = { render: s };
27
+ export {
28
+ u as default,
29
+ s as render
30
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),c={xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 20 20"},o=e.createElementVNode("path",{fill:"currentColor",stroke:"currentColor",d:"M17.825 6.507v6.985c0 1.417-.42 2.488-1.137 3.204-.716.717-1.788 1.137-3.205 1.137H6.508c-1.417 0-2.488-.42-3.204-1.137-.717-.718-1.137-1.79-1.137-3.213V6.508c0-1.417.42-2.488 1.136-3.204.717-.717 1.788-1.137 3.205-1.137h6.984c1.417 0 2.488.42 3.203 1.136.715.716 1.134 1.787 1.13 3.204Z",opacity:".4"},null,-1),r=e.createElementVNode("path",{fill:"currentColor",stroke:"currentColor",d:"M5.733 15.25a.123.123 0 0 1-.087-.038.123.123 0 0 1-.038-.087V13.4c0-.03.013-.062.038-.087a.123.123 0 0 1 .087-.038c.03 0 .062.012.087.038a.124.124 0 0 1 .038.087v1.725c0 .07-.055.125-.125.125ZM10 15.25a.123.123 0 0 1-.087-.038.123.123 0 0 1-.038-.087v-3.458c0-.03.012-.062.038-.087a.123.123 0 0 1 .087-.038c.03 0 .061.012.087.038a.123.123 0 0 1 .038.087v3.458c0 .07-.055.125-.125.125Z"},null,-1),l=e.createElementVNode("path",{fill:"currentColor",d:"M14.267 15.75a.63.63 0 0 1-.625-.625V9.942a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v5.183c0 .35-.275.625-.625.625ZM14.892 4.85c0-.042-.017-.092-.025-.133l-.026-.109c-.016-.033-.041-.058-.058-.091-.025-.034-.05-.075-.083-.1-.008-.009-.008-.017-.017-.017-.025-.017-.05-.025-.075-.042a.532.532 0 0 0-.117-.066c-.041-.017-.083-.017-.124-.025-.034-.009-.059-.017-.092-.017h-2.442a.63.63 0 0 0-.625.625.63.63 0 0 0 .625.625h1.042a15.123 15.123 0 0 1-7.292 4.258.63.63 0 0 0-.458.759.624.624 0 0 0 .608.475c.05 0 .1-.009.15-.017a16.277 16.277 0 0 0 7.759-4.467v.809a.63.63 0 0 0 .625.625.63.63 0 0 0 .625-.625V4.85Z"},null,-1),n=[o,r,l];function t(s,d){return e.openBlock(),e.createElementBlock("svg",c,n)}const a={render:t};exports.default=a;exports.render=t;
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),o={xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 20 20"},r=e.createElementVNode("path",{fill:"currentColor",stroke:"currentColor",d:"M13.33 6.979a4.71 4.71 0 0 1 0 6.66 4.71 4.71 0 0 1-6.66 0 4.71 4.71 0 0 1 0-6.66 4.71 4.71 0 0 1 6.66 0Z"},null,-1),l=e.createElementVNode("path",{fill:"currentColor",stroke:"currentColor",d:"M1.612 9.248v-.004a.117.117 0 0 1 .049-.078.13.13 0 0 1 .094-.028h.001c.06.007.115.068.106.143l.496.06-.496-.063a8.145 8.145 0 0 0 1.02 5.13h.002a8.087 8.087 0 0 0 4.025 3.496c.07.031.1.108.074.175l-.003.007a.104.104 0 0 1-.04.051.119.119 0 0 1-.065.021.265.265 0 0 1-.064-.012 8.363 8.363 0 0 1-4.145-3.605 8.333 8.333 0 0 1-1.054-5.293Z",opacity:".4"},null,-1),n=e.createElementVNode("path",{fill:"currentColor",d:"M4.875 4.358a.627.627 0 0 1-.492-.241.615.615 0 0 1 .109-.875A8.87 8.87 0 0 1 10 1.342c1.967 0 3.842.633 5.417 1.833a.624.624 0 1 1-.758.992A7.592 7.592 0 0 0 10 2.592a7.644 7.644 0 0 0-4.742 1.633.613.613 0 0 1-.383.133ZM13.125 18.658a.632.632 0 0 1-.584-.391.633.633 0 0 1 .35-.817 7.626 7.626 0 0 0 3.784-3.283 7.537 7.537 0 0 0 .958-4.817.628.628 0 0 1 .542-.7c.333-.042.658.2.7.542a8.898 8.898 0 0 1-1.117 5.608 8.868 8.868 0 0 1-4.408 3.825.911.911 0 0 1-.225.033Z",opacity:".4"},null,-1),c=[r,l,n];function t(s,d){return e.openBlock(),e.createElementBlock("svg",o,c)}const a={render:t};exports.default=a;exports.render=t;
@@ -0,0 +1,31 @@
1
+ import { openBlock as t, createElementBlock as e, createElementVNode as o } from "vue";
2
+ const r = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "none",
5
+ viewBox: "0 0 20 20"
6
+ }, l = /* @__PURE__ */ o("path", {
7
+ fill: "currentColor",
8
+ stroke: "currentColor",
9
+ d: "M13.33 6.979a4.71 4.71 0 0 1 0 6.66 4.71 4.71 0 0 1-6.66 0 4.71 4.71 0 0 1 0-6.66 4.71 4.71 0 0 1 6.66 0Z"
10
+ }, null, -1), c = /* @__PURE__ */ o("path", {
11
+ fill: "currentColor",
12
+ stroke: "currentColor",
13
+ d: "M1.612 9.248v-.004a.117.117 0 0 1 .049-.078.13.13 0 0 1 .094-.028h.001c.06.007.115.068.106.143l.496.06-.496-.063a8.145 8.145 0 0 0 1.02 5.13h.002a8.087 8.087 0 0 0 4.025 3.496c.07.031.1.108.074.175l-.003.007a.104.104 0 0 1-.04.051.119.119 0 0 1-.065.021.265.265 0 0 1-.064-.012 8.363 8.363 0 0 1-4.145-3.605 8.333 8.333 0 0 1-1.054-5.293Z",
14
+ opacity: ".4"
15
+ }, null, -1), n = /* @__PURE__ */ o("path", {
16
+ fill: "currentColor",
17
+ d: "M4.875 4.358a.627.627 0 0 1-.492-.241.615.615 0 0 1 .109-.875A8.87 8.87 0 0 1 10 1.342c1.967 0 3.842.633 5.417 1.833a.624.624 0 1 1-.758.992A7.592 7.592 0 0 0 10 2.592a7.644 7.644 0 0 0-4.742 1.633.613.613 0 0 1-.383.133ZM13.125 18.658a.632.632 0 0 1-.584-.391.633.633 0 0 1 .35-.817 7.626 7.626 0 0 0 3.784-3.283 7.537 7.537 0 0 0 .958-4.817.628.628 0 0 1 .542-.7c.333-.042.658.2.7.542a8.898 8.898 0 0 1-1.117 5.608 8.868 8.868 0 0 1-4.408 3.825.911.911 0 0 1-.225.033Z",
18
+ opacity: ".4"
19
+ }, null, -1), a = [
20
+ l,
21
+ c,
22
+ n
23
+ ];
24
+ function s(i, d) {
25
+ return t(), e("svg", r, a);
26
+ }
27
+ const _ = { render: s };
28
+ export {
29
+ _ as default,
30
+ s as render
31
+ };