@livechat/design-system-icons 1.1.0 → 1.6.1

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 (47) hide show
  1. package/dist/ArrowBarLeft.cjs.js +1 -0
  2. package/dist/ArrowBarLeft.d.ts +3 -0
  3. package/dist/ArrowBarLeft.es.js +23 -0
  4. package/dist/ArrowBarRight.cjs.js +1 -0
  5. package/dist/ArrowBarRight.d.ts +3 -0
  6. package/dist/ArrowBarRight.es.js +23 -0
  7. package/dist/Cloud.cjs.js +1 -0
  8. package/dist/Cloud.d.ts +3 -0
  9. package/dist/Cloud.es.js +23 -0
  10. package/dist/CloudFilled.cjs.js +1 -0
  11. package/dist/CloudFilled.d.ts +3 -0
  12. package/dist/CloudFilled.es.js +24 -0
  13. package/dist/Key.cjs.js +1 -0
  14. package/dist/Key.d.ts +3 -0
  15. package/dist/Key.es.js +23 -0
  16. package/dist/PeopleFilled.cjs.js +1 -1
  17. package/dist/PeopleFilled.es.js +1 -1
  18. package/dist/ReportFilled.cjs.js +1 -1
  19. package/dist/ReportFilled.es.js +15 -23
  20. package/dist/Settings.cjs.js +1 -1
  21. package/dist/Settings.es.js +7 -6
  22. package/dist/SettingsFilled.cjs.js +1 -1
  23. package/dist/SettingsFilled.es.js +12 -6
  24. package/dist/ShieldLock.cjs.js +1 -0
  25. package/dist/ShieldLock.d.ts +3 -0
  26. package/dist/ShieldLock.es.js +23 -0
  27. package/dist/ShieldLockFilled.cjs.js +1 -0
  28. package/dist/ShieldLockFilled.d.ts +3 -0
  29. package/dist/ShieldLockFilled.es.js +20 -0
  30. package/dist/SourceCode.cjs.js +1 -0
  31. package/dist/SourceCode.d.ts +3 -0
  32. package/dist/SourceCode.es.js +23 -0
  33. package/dist/TelegramColored.cjs.js +1 -0
  34. package/dist/TelegramColored.d.ts +3 -0
  35. package/dist/TelegramColored.es.js +46 -0
  36. package/dist/TelegramMono.cjs.js +1 -0
  37. package/dist/TelegramMono.d.ts +3 -0
  38. package/dist/TelegramMono.es.js +22 -0
  39. package/dist/TextLogo.cjs.js +1 -1
  40. package/dist/TextLogo.es.js +6 -8
  41. package/dist/TextLogoFilled.cjs.js +1 -0
  42. package/dist/TextLogoFilled.d.ts +3 -0
  43. package/dist/TextLogoFilled.es.js +22 -0
  44. package/dist/index.cjs.js +1 -1
  45. package/dist/index.d.ts +11 -0
  46. package/dist/index.es.js +792 -770
  47. package/package.json +57 -2
@@ -0,0 +1 @@
1
+ "use strict";const r=require("react/jsx-runtime"),o=e=>r.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...e,children:r.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M20 4v16M4 12h10M4 12l4 4m-4-4 4-4"})});module.exports=o;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgArrowBarLeft: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgArrowBarLeft;
@@ -0,0 +1,23 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ const e = (r) => /* @__PURE__ */ o(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...r,
9
+ children: /* @__PURE__ */ o(
10
+ "path",
11
+ {
12
+ stroke: "currentcolor",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round",
15
+ strokeWidth: 2,
16
+ d: "M20 4v16M4 12h10M4 12l4 4m-4-4 4-4"
17
+ }
18
+ )
19
+ }
20
+ );
21
+ export {
22
+ e as default
23
+ };
@@ -0,0 +1 @@
1
+ "use strict";const r=require("react/jsx-runtime"),t=o=>r.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...o,children:r.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"m20 12-4-4m4 4H10m10 0-4 4M4 4v16"})});module.exports=t;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgArrowBarRight: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgArrowBarRight;
@@ -0,0 +1,23 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ const e = (r) => /* @__PURE__ */ o(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...r,
9
+ children: /* @__PURE__ */ o(
10
+ "path",
11
+ {
12
+ stroke: "currentcolor",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round",
15
+ strokeWidth: 2,
16
+ d: "m20 12-4-4m4 4H10m10 0-4 4M4 4v16"
17
+ }
18
+ )
19
+ }
20
+ );
21
+ export {
22
+ e as default
23
+ };
@@ -0,0 +1 @@
1
+ "use strict";const o=require("react/jsx-runtime"),r=e=>o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...e,children:o.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M2.024 14.049c0 2.476 2.085 4.483 4.657 4.483l11.878.004c1.914 0 3.465-1.56 3.465-3.487 0-1.926-1.55-3.486-3.464-3.486h-.99c.392-1.762-.282-3.58-1.77-4.77-1.488-1.192-3.564-1.571-5.444-1-1.88.574-3.282 2.012-3.675 3.774-2.572 0-4.657 2.007-4.657 4.482Z"})});module.exports=r;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgCloud: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgCloud;
@@ -0,0 +1,23 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ const e = (r) => /* @__PURE__ */ o(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...r,
9
+ children: /* @__PURE__ */ o(
10
+ "path",
11
+ {
12
+ stroke: "currentcolor",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round",
15
+ strokeWidth: 2,
16
+ d: "M2.024 14.049c0 2.476 2.085 4.483 4.657 4.483l11.878.004c1.914 0 3.465-1.56 3.465-3.487 0-1.926-1.55-3.486-3.464-3.486h-.99c.392-1.762-.282-3.58-1.77-4.77-1.488-1.192-3.564-1.571-5.444-1-1.88.574-3.282 2.012-3.675 3.774-2.572 0-4.657 2.007-4.657 4.482Z"
17
+ }
18
+ )
19
+ }
20
+ );
21
+ export {
22
+ e as default
23
+ };
@@ -0,0 +1 @@
1
+ "use strict";const o=require("react/jsx-runtime"),e=r=>o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...r,children:o.jsx("path",{fill:"currentcolor",stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M2.024 14.049c0 2.476 2.085 4.483 4.657 4.483l11.878.004c1.914 0 3.465-1.56 3.465-3.487 0-1.926-1.55-3.486-3.464-3.486h-.99c.392-1.762-.282-3.58-1.77-4.77-1.488-1.192-3.564-1.571-5.444-1-1.88.574-3.282 2.012-3.675 3.774-2.572 0-4.657 2.007-4.657 4.482Z"})});module.exports=e;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgCloudFilled: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgCloudFilled;
@@ -0,0 +1,24 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ const t = (r) => /* @__PURE__ */ o(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...r,
9
+ children: /* @__PURE__ */ o(
10
+ "path",
11
+ {
12
+ fill: "currentcolor",
13
+ stroke: "currentcolor",
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round",
16
+ strokeWidth: 2,
17
+ d: "M2.024 14.049c0 2.476 2.085 4.483 4.657 4.483l11.878.004c1.914 0 3.465-1.56 3.465-3.487 0-1.926-1.55-3.486-3.464-3.486h-.99c.392-1.762-.282-3.58-1.77-4.77-1.488-1.192-3.564-1.571-5.444-1-1.88.574-3.282 2.012-3.675 3.774-2.572 0-4.657 2.007-4.657 4.482Z"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ export {
23
+ t as default
24
+ };
@@ -0,0 +1 @@
1
+ "use strict";const e=require("react/jsx-runtime"),r=o=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...o,children:e.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M10.85 12.15 19 4m-4 4 2 2m1-5 2 2m-8 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"})});module.exports=r;
package/dist/Key.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgKey: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgKey;
package/dist/Key.es.js ADDED
@@ -0,0 +1,23 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ const t = (r) => /* @__PURE__ */ o(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...r,
9
+ children: /* @__PURE__ */ o(
10
+ "path",
11
+ {
12
+ stroke: "currentcolor",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round",
15
+ strokeWidth: 2,
16
+ d: "M10.85 12.15 19 4m-4 4 2 2m1-5 2 2m-8 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
17
+ }
18
+ )
19
+ }
20
+ );
21
+ export {
22
+ t as default
23
+ };
@@ -1 +1 @@
1
- "use strict";const e=require("react/jsx-runtime"),a=l=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...l,children:e.jsx("path",{fill:"currentcolor",fillRule:"evenodd",d:"M9 2a5 5 0 1 0 0 10A5 5 0 0 0 9 2Zm7.25.159a1 1 0 0 0-1.133 1.437v.001l.005.01.025.049a9.354 9.354 0 0 1 .409.986C15.786 5.304 16 6.154 16 7c0 .846-.214 1.696-.444 2.358a9.36 9.36 0 0 1-.434 1.035l-.005.01a1 1 0 0 0 1.133 1.438 4.999 4.999 0 0 0 0-9.682ZM7 14a5 5 0 0 0-5 5v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2a5 5 0 0 0-5-5H7Zm11.447.105a1 1 0 0 0-1.341 1.342C17.982 17.2 18 19.664 18 21a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2.006a5 5 0 0 0-1.056-3.044c-.525-.674-1.441-1.317-2.497-1.845Z",clipRule:"evenodd"})});module.exports=a;
1
+ "use strict";const e=require("react/jsx-runtime"),a=l=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...l,children:e.jsx("path",{fill:"currentcolor",fillRule:"evenodd",d:"M5.979 10.182a4.5 4.5 0 1 1 6.364-6.364 4.5 4.5 0 0 1-6.364 6.364Zm9.45-7.055a.8.8 0 0 0-.906 1.15v.001l.004.007.02.04a7.472 7.472 0 0 1 .327.79c.184.528.356 1.208.356 1.885 0 .676-.172 1.357-.356 1.886a7.472 7.472 0 0 1-.327.79l-.02.038-.003.008a.8.8 0 0 0 .906 1.15 4 4 0 0 0 0-7.745ZM2.662 18.017V19.5a2 2 0 0 0 2 1.999h9a2 2 0 0 0 2-2v-1.484a4.645 4.645 0 0 0-4.645-4.645h-3.71a4.645 4.645 0 0 0-4.645 4.645Zm15.414-4.412a1 1 0 0 0-1.341 1.342c.93 2.203 1.225 5.677 0 6.553h2.605a2 2 0 0 0 2-2v-1.006a5.222 5.222 0 0 0-1.199-3.339c-.737-.896-2.065-1.55-2.065-1.55Z",clipRule:"evenodd"})});module.exports=a;
@@ -11,7 +11,7 @@ const o = (a) => /* @__PURE__ */ l(
11
11
  {
12
12
  fill: "currentcolor",
13
13
  fillRule: "evenodd",
14
- d: "M9 2a5 5 0 1 0 0 10A5 5 0 0 0 9 2Zm7.25.159a1 1 0 0 0-1.133 1.437v.001l.005.01.025.049a9.354 9.354 0 0 1 .409.986C15.786 5.304 16 6.154 16 7c0 .846-.214 1.696-.444 2.358a9.36 9.36 0 0 1-.434 1.035l-.005.01a1 1 0 0 0 1.133 1.438 4.999 4.999 0 0 0 0-9.682ZM7 14a5 5 0 0 0-5 5v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2a5 5 0 0 0-5-5H7Zm11.447.105a1 1 0 0 0-1.341 1.342C17.982 17.2 18 19.664 18 21a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2.006a5 5 0 0 0-1.056-3.044c-.525-.674-1.441-1.317-2.497-1.845Z",
14
+ d: "M5.979 10.182a4.5 4.5 0 1 1 6.364-6.364 4.5 4.5 0 0 1-6.364 6.364Zm9.45-7.055a.8.8 0 0 0-.906 1.15v.001l.004.007.02.04a7.472 7.472 0 0 1 .327.79c.184.528.356 1.208.356 1.885 0 .676-.172 1.357-.356 1.886a7.472 7.472 0 0 1-.327.79l-.02.038-.003.008a.8.8 0 0 0 .906 1.15 4 4 0 0 0 0-7.745ZM2.662 18.017V19.5a2 2 0 0 0 2 1.999h9a2 2 0 0 0 2-2v-1.484a4.645 4.645 0 0 0-4.645-4.645h-3.71a4.645 4.645 0 0 0-4.645 4.645Zm15.414-4.412a1 1 0 0 0-1.341 1.342c.93 2.203 1.225 5.677 0 6.553h2.605a2 2 0 0 0 2-2v-1.006a5.222 5.222 0 0 0-1.199-3.339c-.737-.896-2.065-1.55-2.065-1.55Z",
15
15
  clipRule: "evenodd"
16
16
  }
17
17
  )
@@ -1 +1 @@
1
- "use strict";const a=require("react/jsx-runtime"),e=r=>a.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...r,children:[a.jsx("path",{fill:"currentcolor",d:"M9 9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V9ZM15 5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V5ZM3 13a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-6Z"}),a.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M15 19V9a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v10m6 0a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1m6 0a1 1 0 0 0 1 1h4m-5-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1M9 19v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h4m1-1a1 1 0 0 1-1 1m12 0H8"})]});module.exports=e;
1
+ "use strict";const r=require("react/jsx-runtime"),o=e=>r.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...e,children:r.jsx("path",{fill:"currentcolor",stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M16.5 5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-3V5Zm-7 4a1 1 0 0 1 1-1h2v12h-3V9Zm-7 4a1 1 0 0 1 1-1h2v8h-2a1 1 0 0 1-1-1v-6Z"})});module.exports=o;
@@ -1,32 +1,24 @@
1
- import { jsxs as r, jsx as a } from "react/jsx-runtime";
2
- const e = (o) => /* @__PURE__ */ r(
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ const t = (r) => /* @__PURE__ */ o(
3
3
  "svg",
4
4
  {
5
5
  xmlns: "http://www.w3.org/2000/svg",
6
6
  fill: "none",
7
7
  viewBox: "0 0 24 24",
8
- ...o,
9
- children: [
10
- /* @__PURE__ */ a(
11
- "path",
12
- {
13
- fill: "currentcolor",
14
- d: "M9 9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V9ZM15 5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V5ZM3 13a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-6Z"
15
- }
16
- ),
17
- /* @__PURE__ */ a(
18
- "path",
19
- {
20
- stroke: "currentcolor",
21
- strokeLinecap: "round",
22
- strokeLinejoin: "round",
23
- strokeWidth: 2,
24
- d: "M15 19V9a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v10m6 0a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1m6 0a1 1 0 0 0 1 1h4m-5-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1M9 19v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h4m1-1a1 1 0 0 1-1 1m12 0H8"
25
- }
26
- )
27
- ]
8
+ ...r,
9
+ children: /* @__PURE__ */ o(
10
+ "path",
11
+ {
12
+ fill: "currentcolor",
13
+ stroke: "currentcolor",
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round",
16
+ strokeWidth: 2,
17
+ d: "M16.5 5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-3V5Zm-7 4a1 1 0 0 1 1-1h2v12h-3V9Zm-7 4a1 1 0 0 1 1-1h2v8h-2a1 1 0 0 1-1-1v-6Z"
18
+ }
19
+ )
28
20
  }
29
21
  );
30
22
  export {
31
- e as default
23
+ t as default
32
24
  };
@@ -1 +1 @@
1
- "use strict";const o=require("react/jsx-runtime"),t=r=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...r,children:[o.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 0 0-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 0 0-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.723 1.723 0 0 0-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 0 0-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 0 0 1.066-2.573c-.94-1.543.826-3.31 2.37-2.37 1 .608 2.296.07 2.572-1.065Z"}),o.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 12a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z"})]});module.exports=t;
1
+ "use strict";const e=require("react/jsx-runtime"),r=o=>e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...o,children:[e.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12.675 3a1.8 1.8 0 0 1 1.8 1.8v1.407c.462.197.9.45 1.305.753l1.218-.703a1.8 1.8 0 0 1 2.459.658l.675 1.17a1.8 1.8 0 0 1-.66 2.458l-1.217.704a6.315 6.315 0 0 1 0 1.507l1.218.703a1.8 1.8 0 0 1 .659 2.458l-.675 1.17a1.8 1.8 0 0 1-2.46.658l-1.217-.703a6.302 6.302 0 0 1-1.305.754V19.2a1.8 1.8 0 0 1-1.8 1.8h-1.35a1.8 1.8 0 0 1-1.8-1.8v-1.406a6.3 6.3 0 0 1-1.305-.754l-1.218.703a1.8 1.8 0 0 1-2.46-.658l-.674-1.17a1.8 1.8 0 0 1 .659-2.458l1.218-.704a6.302 6.302 0 0 1 0-1.506l-1.218-.704a1.8 1.8 0 0 1-.66-2.458l.676-1.17a1.8 1.8 0 0 1 2.459-.658l1.218.703a6.3 6.3 0 0 1 1.305-.753V4.8a1.8 1.8 0 0 1 1.8-1.8h1.35Z",clipRule:"evenodd"}),e.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M14.696 12a2.696 2.696 0 1 1-5.392 0 2.696 2.696 0 0 1 5.392 0Z"})]});module.exports=r;
@@ -1,11 +1,11 @@
1
- import { jsxs as t, jsx as o } from "react/jsx-runtime";
2
- const n = (r) => /* @__PURE__ */ t(
1
+ import { jsxs as e, jsx as o } from "react/jsx-runtime";
2
+ const t = (a) => /* @__PURE__ */ e(
3
3
  "svg",
4
4
  {
5
5
  xmlns: "http://www.w3.org/2000/svg",
6
6
  fill: "none",
7
7
  viewBox: "0 0 24 24",
8
- ...r,
8
+ ...a,
9
9
  children: [
10
10
  /* @__PURE__ */ o(
11
11
  "path",
@@ -14,7 +14,8 @@ const n = (r) => /* @__PURE__ */ t(
14
14
  strokeLinecap: "round",
15
15
  strokeLinejoin: "round",
16
16
  strokeWidth: 2,
17
- d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 0 0-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 0 0-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.723 1.723 0 0 0-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 0 0-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 0 0 1.066-2.573c-.94-1.543.826-3.31 2.37-2.37 1 .608 2.296.07 2.572-1.065Z"
17
+ d: "M12.675 3a1.8 1.8 0 0 1 1.8 1.8v1.407c.462.197.9.45 1.305.753l1.218-.703a1.8 1.8 0 0 1 2.459.658l.675 1.17a1.8 1.8 0 0 1-.66 2.458l-1.217.704a6.315 6.315 0 0 1 0 1.507l1.218.703a1.8 1.8 0 0 1 .659 2.458l-.675 1.17a1.8 1.8 0 0 1-2.46.658l-1.217-.703a6.302 6.302 0 0 1-1.305.754V19.2a1.8 1.8 0 0 1-1.8 1.8h-1.35a1.8 1.8 0 0 1-1.8-1.8v-1.406a6.3 6.3 0 0 1-1.305-.754l-1.218.703a1.8 1.8 0 0 1-2.46-.658l-.674-1.17a1.8 1.8 0 0 1 .659-2.458l1.218-.704a6.302 6.302 0 0 1 0-1.506l-1.218-.704a1.8 1.8 0 0 1-.66-2.458l.676-1.17a1.8 1.8 0 0 1 2.459-.658l1.218.703a6.3 6.3 0 0 1 1.305-.753V4.8a1.8 1.8 0 0 1 1.8-1.8h1.35Z",
18
+ clipRule: "evenodd"
18
19
  }
19
20
  ),
20
21
  /* @__PURE__ */ o(
@@ -24,12 +25,12 @@ const n = (r) => /* @__PURE__ */ t(
24
25
  strokeLinecap: "round",
25
26
  strokeLinejoin: "round",
26
27
  strokeWidth: 2,
27
- d: "M9 12a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z"
28
+ d: "M14.696 12a2.696 2.696 0 1 1-5.392 0 2.696 2.696 0 0 1 5.392 0Z"
28
29
  }
29
30
  )
30
31
  ]
31
32
  }
32
33
  );
33
34
  export {
34
- n as default
35
+ t as default
35
36
  };
@@ -1 +1 @@
1
- "use strict";const c=require("react/jsx-runtime"),t=s=>c.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...s,children:c.jsx("path",{fill:"currentcolor",d:"M14.647 4.081a.724.724 0 0 0 1.08.448c2.439-1.485 5.23 1.305 3.745 3.744a.723.723 0 0 0 .447 1.08c2.775.673 2.775 4.62 0 5.294a.723.723 0 0 0-.448 1.08c1.485 2.439-1.305 5.23-3.744 3.745a.725.725 0 0 0-1.08.447c-.673 2.775-4.62 2.775-5.294 0a.723.723 0 0 0-1.08-.448c-2.44 1.485-5.23-1.305-3.745-3.744a.724.724 0 0 0-.447-1.08c-2.775-.673-2.775-4.62 0-5.294a.724.724 0 0 0 .448-1.08c-1.485-2.439 1.305-5.23 3.744-3.745a.722.722 0 0 0 1.08-.447c.673-2.775 4.62-2.775 5.294 0ZM12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z"})});module.exports=t;
1
+ "use strict";const l=require("react/jsx-runtime"),a=e=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...e,children:l.jsx("path",{fill:"currentcolor",fillRule:"evenodd",stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12.75 2.992a1.5 1.5 0 0 1 1.5 1.5v1.41a6.5 6.5 0 0 1 1.9 1.096l1.22-.705a1.5 1.5 0 0 1 2.05.55l.75 1.298a1.5 1.5 0 0 1-.55 2.05l-1.215.701a6.498 6.498 0 0 1 .002 2.201l1.213.7a1.5 1.5 0 0 1 .55 2.05l-.75 1.298a1.5 1.5 0 0 1-2.05.55l-1.208-.698c-.573.477-1.22.85-1.912 1.105v1.394a1.5 1.5 0 0 1-1.5 1.5h-1.5a1.5 1.5 0 0 1-1.5-1.5v-1.394a6.5 6.5 0 0 1-1.912-1.105l-1.208.697a1.5 1.5 0 0 1-2.05-.549l-.75-1.299a1.5 1.5 0 0 1 .55-2.049l1.213-.7a6.5 6.5 0 0 1 .002-2.2L4.38 10.19a1.5 1.5 0 0 1-.55-2.049l.75-1.299a1.5 1.5 0 0 1 2.05-.549l1.22.705a6.5 6.5 0 0 1 1.9-1.096v-1.41a1.5 1.5 0 0 1 1.5-1.5h1.5Zm-.75 13a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z",clipRule:"evenodd"})});module.exports=a;
@@ -1,20 +1,26 @@
1
- import { jsx as a } from "react/jsx-runtime";
2
- const t = (c) => /* @__PURE__ */ a(
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ const o = (a) => /* @__PURE__ */ l(
3
3
  "svg",
4
4
  {
5
5
  xmlns: "http://www.w3.org/2000/svg",
6
6
  fill: "none",
7
7
  viewBox: "0 0 24 24",
8
- ...c,
9
- children: /* @__PURE__ */ a(
8
+ ...a,
9
+ children: /* @__PURE__ */ l(
10
10
  "path",
11
11
  {
12
12
  fill: "currentcolor",
13
- d: "M14.647 4.081a.724.724 0 0 0 1.08.448c2.439-1.485 5.23 1.305 3.745 3.744a.723.723 0 0 0 .447 1.08c2.775.673 2.775 4.62 0 5.294a.723.723 0 0 0-.448 1.08c1.485 2.439-1.305 5.23-3.744 3.745a.725.725 0 0 0-1.08.447c-.673 2.775-4.62 2.775-5.294 0a.723.723 0 0 0-1.08-.448c-2.44 1.485-5.23-1.305-3.745-3.744a.724.724 0 0 0-.447-1.08c-2.775-.673-2.775-4.62 0-5.294a.724.724 0 0 0 .448-1.08c-1.485-2.439 1.305-5.23 3.744-3.745a.722.722 0 0 0 1.08-.447c.673-2.775 4.62-2.775 5.294 0ZM12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z"
13
+ fillRule: "evenodd",
14
+ stroke: "currentcolor",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round",
17
+ strokeWidth: 2,
18
+ d: "M12.75 2.992a1.5 1.5 0 0 1 1.5 1.5v1.41a6.5 6.5 0 0 1 1.9 1.096l1.22-.705a1.5 1.5 0 0 1 2.05.55l.75 1.298a1.5 1.5 0 0 1-.55 2.05l-1.215.701a6.498 6.498 0 0 1 .002 2.201l1.213.7a1.5 1.5 0 0 1 .55 2.05l-.75 1.298a1.5 1.5 0 0 1-2.05.55l-1.208-.698c-.573.477-1.22.85-1.912 1.105v1.394a1.5 1.5 0 0 1-1.5 1.5h-1.5a1.5 1.5 0 0 1-1.5-1.5v-1.394a6.5 6.5 0 0 1-1.912-1.105l-1.208.697a1.5 1.5 0 0 1-2.05-.549l-.75-1.299a1.5 1.5 0 0 1 .55-2.049l1.213-.7a6.5 6.5 0 0 1 .002-2.2L4.38 10.19a1.5 1.5 0 0 1-.55-2.049l.75-1.299a1.5 1.5 0 0 1 2.05-.549l1.22.705a6.5 6.5 0 0 1 1.9-1.096v-1.41a1.5 1.5 0 0 1 1.5-1.5h1.5Zm-.75 13a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z",
19
+ clipRule: "evenodd"
14
20
  }
15
21
  )
16
22
  }
17
23
  );
18
24
  export {
19
- t as default
25
+ o as default
20
26
  };
@@ -0,0 +1 @@
1
+ "use strict";const e=require("react/jsx-runtime"),r=o=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...o,children:e.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 12v2.5m0-2.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm0-9a12 12 0 0 0 8.5 3A12 12 0 0 1 12 21 12 12 0 0 1 3.5 6 12 12 0 0 0 12 3Z"})});module.exports=r;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgShieldLock: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgShieldLock;
@@ -0,0 +1,23 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ const t = (r) => /* @__PURE__ */ o(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...r,
9
+ children: /* @__PURE__ */ o(
10
+ "path",
11
+ {
12
+ stroke: "currentcolor",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round",
15
+ strokeWidth: 2,
16
+ d: "M12 12v2.5m0-2.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm0-9a12 12 0 0 0 8.5 3A12 12 0 0 1 12 21 12 12 0 0 1 3.5 6 12 12 0 0 0 12 3Z"
17
+ }
18
+ )
19
+ }
20
+ );
21
+ export {
22
+ t as default
23
+ };
@@ -0,0 +1 @@
1
+ "use strict";const l=require("react/jsx-runtime"),s=e=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...e,children:l.jsx("path",{fill:"currentcolor",d:"m11.998 2 .118.007.06.008.06.013.111.034c.077.028.15.066.217.112l.104.082.255.218a11 11 0 0 0 7.19 2.537l.341-.01a1 1 0 0 1 1.005.717 13.002 13.002 0 0 1-9.208 16.25 1 1 0 0 1-.502 0A13 13 0 0 1 2.54 5.718a1 1 0 0 1 1.005-.717 11 11 0 0 0 7.531-2.527l.263-.225.096-.075a.99.99 0 0 1 .217-.112l.112-.034a.968.968 0 0 1 .12-.021L11.997 2ZM12 9a2 2 0 0 0-1.995 1.85L10 11l.005.15A2 2 0 0 0 11 12.731V14.5l.007.117A1 1 0 0 0 13 14.5l.001-1.768a2 2 0 0 0-1-3.732Z"})});module.exports=s;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgShieldLockFilled: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgShieldLockFilled;
@@ -0,0 +1,20 @@
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ const e = (a) => /* @__PURE__ */ l(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...a,
9
+ children: /* @__PURE__ */ l(
10
+ "path",
11
+ {
12
+ fill: "currentcolor",
13
+ d: "m11.998 2 .118.007.06.008.06.013.111.034c.077.028.15.066.217.112l.104.082.255.218a11 11 0 0 0 7.19 2.537l.341-.01a1 1 0 0 1 1.005.717 13.002 13.002 0 0 1-9.208 16.25 1 1 0 0 1-.502 0A13 13 0 0 1 2.54 5.718a1 1 0 0 1 1.005-.717 11 11 0 0 0 7.531-2.527l.263-.225.096-.075a.99.99 0 0 1 .217-.112l.112-.034a.968.968 0 0 1 .12-.021L11.997 2ZM12 9a2 2 0 0 0-1.995 1.85L10 11l.005.15A2 2 0 0 0 11 12.731V14.5l.007.117A1 1 0 0 0 13 14.5l.001-1.768a2 2 0 0 0-1-3.732Z"
14
+ }
15
+ )
16
+ }
17
+ );
18
+ export {
19
+ e as default
20
+ };
@@ -0,0 +1 @@
1
+ "use strict";const e=require("react/jsx-runtime"),r=o=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...o,children:e.jsx("path",{stroke:"currentcolor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M14.5 3H17a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3v-5m6-3 2-2-2-2M6 4 4 6l2 2"})});module.exports=r;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgSourceCode: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgSourceCode;
@@ -0,0 +1,23 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ const t = (r) => /* @__PURE__ */ o(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...r,
9
+ children: /* @__PURE__ */ o(
10
+ "path",
11
+ {
12
+ stroke: "currentcolor",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round",
15
+ strokeWidth: 2,
16
+ d: "M14.5 3H17a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3v-5m6-3 2-2-2-2M6 4 4 6l2 2"
17
+ }
18
+ )
19
+ }
20
+ );
21
+ export {
22
+ t as default
23
+ };
@@ -0,0 +1 @@
1
+ "use strict";const e=require("react/jsx-runtime"),l=s=>e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...s,children:[e.jsx("path",{fill:"url(#telegram_colored_svg__a)",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"}),e.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M6.526 11.895a476.79 476.79 0 0 1 5.832-2.513c2.777-1.155 3.354-1.355 3.73-1.362.083-.001.268.02.388.116a.421.421 0 0 1 .142.271c.014.078.03.255.017.394-.15 1.581-.802 5.418-1.133 7.19-.14.749-.416 1-.683 1.025-.581.053-1.022-.384-1.585-.753-.88-.577-1.377-.936-2.231-1.499-.988-.65-.348-1.008.215-1.593.147-.153 2.706-2.48 2.756-2.691.006-.026.012-.125-.047-.177-.058-.052-.145-.034-.207-.02-.088.02-1.494.95-4.218 2.788-.4.274-.76.408-1.084.4-.358-.007-1.044-.201-1.555-.367-.626-.204-1.124-.311-1.08-.657.022-.18.27-.364.743-.552Z",clipRule:"evenodd"}),e.jsx("defs",{children:e.jsxs("linearGradient",{id:"telegram_colored_svg__a",x1:1002,x2:1002,y1:2,y2:1987.17,gradientUnits:"userSpaceOnUse",children:[e.jsx("stop",{stopColor:"#2AABEE"}),e.jsx("stop",{offset:1,stopColor:"#229ED9"})]})})]});module.exports=l;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgTelegramColored: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgTelegramColored;
@@ -0,0 +1,46 @@
1
+ import { jsxs as l, jsx as e } from "react/jsx-runtime";
2
+ const s = (o) => /* @__PURE__ */ l(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...o,
9
+ children: [
10
+ /* @__PURE__ */ e(
11
+ "path",
12
+ {
13
+ fill: "url(#telegram_colored_svg__a)",
14
+ d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"
15
+ }
16
+ ),
17
+ /* @__PURE__ */ e(
18
+ "path",
19
+ {
20
+ fill: "#fff",
21
+ fillRule: "evenodd",
22
+ d: "M6.526 11.895a476.79 476.79 0 0 1 5.832-2.513c2.777-1.155 3.354-1.355 3.73-1.362.083-.001.268.02.388.116a.421.421 0 0 1 .142.271c.014.078.03.255.017.394-.15 1.581-.802 5.418-1.133 7.19-.14.749-.416 1-.683 1.025-.581.053-1.022-.384-1.585-.753-.88-.577-1.377-.936-2.231-1.499-.988-.65-.348-1.008.215-1.593.147-.153 2.706-2.48 2.756-2.691.006-.026.012-.125-.047-.177-.058-.052-.145-.034-.207-.02-.088.02-1.494.95-4.218 2.788-.4.274-.76.408-1.084.4-.358-.007-1.044-.201-1.555-.367-.626-.204-1.124-.311-1.08-.657.022-.18.27-.364.743-.552Z",
23
+ clipRule: "evenodd"
24
+ }
25
+ ),
26
+ /* @__PURE__ */ e("defs", { children: /* @__PURE__ */ l(
27
+ "linearGradient",
28
+ {
29
+ id: "telegram_colored_svg__a",
30
+ x1: 1002,
31
+ x2: 1002,
32
+ y1: 2,
33
+ y2: 1987.17,
34
+ gradientUnits: "userSpaceOnUse",
35
+ children: [
36
+ /* @__PURE__ */ e("stop", { stopColor: "#2AABEE" }),
37
+ /* @__PURE__ */ e("stop", { offset: 1, stopColor: "#229ED9" })
38
+ ]
39
+ }
40
+ ) })
41
+ ]
42
+ }
43
+ );
44
+ export {
45
+ s as default
46
+ };
@@ -0,0 +1 @@
1
+ "use strict";const e=require("react/jsx-runtime"),o=l=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...l,children:e.jsx("path",{fill:"currentcolor",fillRule:"evenodd",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-9.642-2.618a476.79 476.79 0 0 0-5.832 2.513c-.473.188-.721.372-.744.552-.038.304.343.424.862.587l.22.07c.51.166 1.196.36 1.554.368.323.007.685-.127 1.084-.4 2.724-1.84 4.13-2.769 4.218-2.789.062-.014.149-.032.207.02.059.052.053.15.047.177-.038.161-1.534 1.552-2.308 2.271-.242.225-.413.384-.448.42-.078.082-.158.159-.235.233-.474.457-.83.8.02 1.36.408.27.735.492 1.06.714.357.242.712.484 1.171.785.117.077.23.156.338.234.415.296.787.56 1.247.519.267-.025.543-.276.683-1.026.331-1.77.982-5.608 1.133-7.19a1.763 1.763 0 0 0-.017-.393.421.421 0 0 0-.142-.27c-.12-.098-.305-.118-.388-.117-.376.007-.953.207-3.73 1.362Z",clipRule:"evenodd"})});module.exports=o;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgTelegramMono: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgTelegramMono;
@@ -0,0 +1,22 @@
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ const c = (e) => /* @__PURE__ */ l(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...e,
9
+ children: /* @__PURE__ */ l(
10
+ "path",
11
+ {
12
+ fill: "currentcolor",
13
+ fillRule: "evenodd",
14
+ d: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-9.642-2.618a476.79 476.79 0 0 0-5.832 2.513c-.473.188-.721.372-.744.552-.038.304.343.424.862.587l.22.07c.51.166 1.196.36 1.554.368.323.007.685-.127 1.084-.4 2.724-1.84 4.13-2.769 4.218-2.789.062-.014.149-.032.207.02.059.052.053.15.047.177-.038.161-1.534 1.552-2.308 2.271-.242.225-.413.384-.448.42-.078.082-.158.159-.235.233-.474.457-.83.8.02 1.36.408.27.735.492 1.06.714.357.242.712.484 1.171.785.117.077.23.156.338.234.415.296.787.56 1.247.519.267-.025.543-.276.683-1.026.331-1.77.982-5.608 1.133-7.19a1.763 1.763 0 0 0-.017-.393.421.421 0 0 0-.142-.27c-.12-.098-.305-.118-.388-.117-.376.007-.953.207-3.73 1.362Z",
15
+ clipRule: "evenodd"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ export {
21
+ c as default
22
+ };
@@ -1 +1 @@
1
- "use strict";const e=require("react/jsx-runtime"),l=h=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...h,children:e.jsx("path",{fill:"currentcolor",fillRule:"evenodd",d:"M5 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3H5Zm10.269 16.137h-1.515V5.734h1.515v12.403Zm-3.41-1.958h-1.227c-1.305 0-1.919-.731-1.919-1.933v-3.42h-.966V9.39h.966V7.536h1.789V9.39h1.449v1.436H10.5v3.29c0 .444.17.627.64.627h.719v1.436Z",clipRule:"evenodd"})});module.exports=l;
1
+ "use strict";const s=require("react/jsx-runtime"),v=t=>s.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...t,children:s.jsx("path",{fill:"currentcolor",d:"M17.158 21.4h-2.246V3h2.246v18.4ZM12.101 18.495h-1.82c-1.937 0-2.848-1.085-2.848-2.867v-5.074H6v-2.13h1.433V5.672h2.654v2.75h2.15v2.13h-2.15v4.881c0 .66.252.93.949.93H12.1v2.13Z"})});module.exports=v;
@@ -1,22 +1,20 @@
1
- import { jsx as e } from "react/jsx-runtime";
2
- const h = (l) => /* @__PURE__ */ e(
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ const t = (v) => /* @__PURE__ */ o(
3
3
  "svg",
4
4
  {
5
5
  xmlns: "http://www.w3.org/2000/svg",
6
6
  fill: "none",
7
7
  viewBox: "0 0 24 24",
8
- ...l,
9
- children: /* @__PURE__ */ e(
8
+ ...v,
9
+ children: /* @__PURE__ */ o(
10
10
  "path",
11
11
  {
12
12
  fill: "currentcolor",
13
- fillRule: "evenodd",
14
- d: "M5 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3H5Zm10.269 16.137h-1.515V5.734h1.515v12.403Zm-3.41-1.958h-1.227c-1.305 0-1.919-.731-1.919-1.933v-3.42h-.966V9.39h.966V7.536h1.789V9.39h1.449v1.436H10.5v3.29c0 .444.17.627.64.627h.719v1.436Z",
15
- clipRule: "evenodd"
13
+ d: "M17.158 21.4h-2.246V3h2.246v18.4ZM12.101 18.495h-1.82c-1.937 0-2.848-1.085-2.848-2.867v-5.074H6v-2.13h1.433V5.672h2.654v2.75h2.15v2.13h-2.15v4.881c0 .66.252.93.949.93H12.1v2.13Z"
16
14
  }
17
15
  )
18
16
  }
19
17
  );
20
18
  export {
21
- h as default
19
+ t as default
22
20
  };
@@ -0,0 +1 @@
1
+ "use strict";const e=require("react/jsx-runtime"),o=l=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...l,children:e.jsx("path",{fill:"currentcolor",fillRule:"evenodd",d:"M2 5a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5Zm12.407 14.914h1.939V4.04h-1.939v15.874Zm-3.995-2.506h1.57V15.57h-.918c-.602 0-.82-.234-.82-.802v-4.211H12.1V8.719h-1.855V6.346h-2.29V8.72H6.72v1.838h1.237v4.378c0 1.537.785 2.473 2.456 2.473Z",clipRule:"evenodd"})});module.exports=o;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgTextLogoFilled: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgTextLogoFilled;
@@ -0,0 +1,22 @@
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ const h = (e) => /* @__PURE__ */ l(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ fill: "none",
7
+ viewBox: "0 0 24 24",
8
+ ...e,
9
+ children: /* @__PURE__ */ l(
10
+ "path",
11
+ {
12
+ fill: "currentcolor",
13
+ fillRule: "evenodd",
14
+ d: "M2 5a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5Zm12.407 14.914h1.939V4.04h-1.939v15.874Zm-3.995-2.506h1.57V15.57h-.918c-.602 0-.82-.234-.82-.802v-4.211H12.1V8.719h-1.855V6.346h-2.29V8.72H6.72v1.838h1.237v4.378c0 1.537.785 2.473 2.456 2.473Z",
15
+ clipRule: "evenodd"
16
+ }
17
+ )
18
+ }
19
+ );
20
+ export {
21
+ h as default
22
+ };