@aliimam/logos 0.0.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 (63) hide show
  1. package/dist/cjs/icon/design/A.d.ts +3 -0
  2. package/dist/cjs/icon/design/A.js +50 -0
  3. package/dist/cjs/icon/design/C.d.ts +3 -0
  4. package/dist/cjs/icon/design/C.js +50 -0
  5. package/dist/cjs/icon/design/D.d.ts +3 -0
  6. package/dist/cjs/icon/design/D.js +50 -0
  7. package/dist/cjs/icon/design/index.d.ts +3 -0
  8. package/dist/cjs/icon/design/index.js +12 -0
  9. package/dist/cjs/index.d.ts +3 -0
  10. package/dist/cjs/index.js +19 -0
  11. package/dist/cjs/types.d.ts +27 -0
  12. package/dist/cjs/types.js +2 -0
  13. package/dist/cjs/wordmark/ai/Asfsbfd.d.ts +3 -0
  14. package/dist/cjs/wordmark/ai/Asfsbfd.js +50 -0
  15. package/dist/cjs/wordmark/ai/Erfg.d.ts +3 -0
  16. package/dist/cjs/wordmark/ai/Erfg.js +50 -0
  17. package/dist/cjs/wordmark/ai/Layes.d.ts +3 -0
  18. package/dist/cjs/wordmark/ai/Layes.js +50 -0
  19. package/dist/cjs/wordmark/ai/Save.d.ts +3 -0
  20. package/dist/cjs/wordmark/ai/Save.js +50 -0
  21. package/dist/cjs/wordmark/ai/index.d.ts +4 -0
  22. package/dist/cjs/wordmark/ai/index.js +14 -0
  23. package/dist/icon/design/A.d.ts +3 -0
  24. package/dist/icon/design/A.js +14 -0
  25. package/dist/icon/design/C.d.ts +3 -0
  26. package/dist/icon/design/C.js +14 -0
  27. package/dist/icon/design/D.d.ts +3 -0
  28. package/dist/icon/design/D.js +14 -0
  29. package/dist/icon/design/index.d.ts +3 -0
  30. package/dist/icon/design/index.js +3 -0
  31. package/dist/index.d.ts +3 -0
  32. package/dist/index.js +3 -0
  33. package/dist/types.d.ts +27 -0
  34. package/dist/types.js +1 -0
  35. package/dist/wordmark/ai/Asfsbfd.d.ts +3 -0
  36. package/dist/wordmark/ai/Asfsbfd.js +14 -0
  37. package/dist/wordmark/ai/Erfg.d.ts +3 -0
  38. package/dist/wordmark/ai/Erfg.js +14 -0
  39. package/dist/wordmark/ai/Layes.d.ts +3 -0
  40. package/dist/wordmark/ai/Layes.js +14 -0
  41. package/dist/wordmark/ai/Save.d.ts +3 -0
  42. package/dist/wordmark/ai/Save.js +14 -0
  43. package/dist/wordmark/ai/index.d.ts +4 -0
  44. package/dist/wordmark/ai/index.js +4 -0
  45. package/icons/icon/design/a.svg +1 -0
  46. package/icons/icon/design/c.svg +1 -0
  47. package/icons/icon/design/d.svg +1 -0
  48. package/icons/wordmark/ai/asfsbfd.svg +1 -0
  49. package/icons/wordmark/ai/erfg.svg +1 -0
  50. package/icons/wordmark/ai/layes.svg +1 -0
  51. package/icons/wordmark/ai/save.svg +1 -0
  52. package/package.json +70 -0
  53. package/src/icon/design/A.tsx +54 -0
  54. package/src/icon/design/C.tsx +66 -0
  55. package/src/icon/design/D.tsx +51 -0
  56. package/src/icon/design/index.ts +3 -0
  57. package/src/index.tsx +6 -0
  58. package/src/types.tsx +31 -0
  59. package/src/wordmark/ai/Asfsbfd.tsx +67 -0
  60. package/src/wordmark/ai/Erfg.tsx +51 -0
  61. package/src/wordmark/ai/Layes.tsx +54 -0
  62. package/src/wordmark/ai/Save.tsx +54 -0
  63. package/src/wordmark/ai/index.ts +4 -0
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const A: IconComponent;
3
+ export default A;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.A = void 0;
37
+ const jsx_runtime_1 = require("react/jsx-runtime");
38
+ const React = __importStar(require("react"));
39
+ exports.A = React.forwardRef(function A({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
40
+ return ((0, jsx_runtime_1.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: (0, jsx_runtime_1.jsx)("path", { d: "M14.0147 6.1382C14.1847 5.63312 14.2435 5.09807 14.1872 4.56879C14.1309 4.03951 13.9607 3.52818 13.688 3.06896C12.8585 1.64476 11.1914 0.912172 9.56328 1.25642C9.11247 0.761776 8.53765 0.392848 7.89656 0.186686C7.25547 -0.0194763 6.57067 -0.0556153 5.91093 0.0818985C5.2512 0.219412 4.63976 0.525737 4.13803 0.97011C3.63629 1.41448 3.26192 1.98126 3.05251 2.61351C2.52386 2.72044 2.02444 2.93744 1.58762 3.25002C1.1508 3.56259 0.786651 3.96353 0.519504 4.42605C-0.318973 5.848 -0.128601 7.64158 0.990188 8.86146C0.81953 9.36629 0.760128 9.90125 0.815958 10.4305C0.871787 10.9598 1.04156 11.4713 1.31392 11.9306C2.14443 13.3554 3.81259 14.0879 5.44162 13.7432C5.79978 14.141 6.23986 14.4589 6.73248 14.6756C7.2251 14.8923 7.75891 15.0029 8.2983 14.9999C9.96711 15.0014 11.4456 13.9387 11.9554 12.3712C12.4839 12.2641 12.9833 12.047 13.4201 11.7345C13.8568 11.4219 14.221 11.0211 14.4883 10.5587C15.3167 9.13929 15.1255 7.35542 14.0147 6.1382ZM8.2983 14.0182C7.63218 14.0193 6.98695 13.789 6.47574 13.3677L6.56568 13.3174L9.59322 11.5936C9.66857 11.55 9.73114 11.4879 9.77477 11.4132C9.81839 11.3386 9.84159 11.254 9.84207 11.1678V6.95725L11.122 7.68759C11.1348 7.694 11.1437 7.70608 11.146 7.72013V11.2092C11.1427 12.7592 9.86967 14.015 8.2983 14.0182ZM2.17724 11.4399C1.84318 10.8709 1.72324 10.2039 1.83851 9.55631L1.92839 9.60954L4.95898 11.3334C5.03396 11.3768 5.11933 11.3997 5.20627 11.3997C5.29322 11.3997 5.37858 11.3768 5.45357 11.3334L9.15558 9.22813V10.6859C9.15524 10.6934 9.15317 10.7008 9.14954 10.7074C9.14591 10.7141 9.14081 10.7198 9.13461 10.7243L6.0681 12.4689C4.70539 13.2432 2.96439 12.7828 2.17724 11.4399ZM1.37984 4.93467C1.71622 4.36202 2.24716 3.92525 2.87867 3.70167V7.24988C2.87753 7.33561 2.89973 7.42007 2.94297 7.49445C2.9862 7.56883 3.04888 7.6304 3.12447 7.67273L6.80849 9.76918L5.52851 10.4995C5.52159 10.5031 5.51387 10.505 5.50604 10.505C5.49821 10.505 5.49049 10.5031 5.48357 10.4995L2.42304 8.758C1.06302 7.98039 0.596614 6.26437 1.37984 4.91993V4.93467ZM11.8954 7.34456L8.19933 5.22742L9.47638 4.50003C9.48331 4.49641 9.49104 4.49451 9.49888 4.49451C9.50673 4.49451 9.51445 4.49641 9.52138 4.50003L12.5819 6.2446C13.0499 6.51095 13.4314 6.90311 13.6818 7.3753C13.9323 7.84749 14.0415 8.38022 13.9965 8.9113C13.9516 9.44238 13.7544 9.94989 13.428 10.3746C13.1016 10.7993 12.6595 11.1236 12.1532 11.3097V7.76145C12.1506 7.67588 12.1254 7.59246 12.0802 7.51937C12.035 7.44628 11.9713 7.38604 11.8954 7.34456ZM13.1694 5.45514L13.0794 5.40185L10.0549 3.66324C9.97944 3.61957 9.89356 3.59655 9.80609 3.59655C9.71862 3.59655 9.63274 3.61957 9.5573 3.66324L5.85822 5.76858V4.31086C5.85743 4.30345 5.85869 4.29597 5.86185 4.2892C5.86502 4.28244 5.86998 4.27664 5.87621 4.27243L8.93674 2.5308C9.4058 2.26425 9.94211 2.13496 10.4829 2.15803C11.0238 2.18111 11.5467 2.35561 11.9907 2.66111C12.4347 2.96662 12.7813 3.39051 12.99 3.8832C13.1987 4.37589 13.2609 4.91702 13.1693 5.44329V5.45514H13.1694ZM5.15984 8.0394L3.87986 7.31202C3.87346 7.3082 3.86799 7.30304 3.86384 7.29691C3.85969 7.29078 3.85696 7.28382 3.85583 7.27653V3.79634C3.85654 3.26246 4.01132 2.7398 4.30206 2.28949C4.5928 1.83917 5.0075 1.47981 5.49766 1.25341C5.98783 1.02701 6.5332 0.942928 7.07002 1.011C7.60684 1.07908 8.11293 1.29649 8.5291 1.63782L8.43916 1.68811L5.41162 3.41193C5.33627 3.45553 5.27372 3.5177 5.2301 3.59236C5.18649 3.66701 5.1633 3.75157 5.16283 3.83773L5.15984 8.03946V8.0394ZM5.85523 6.56093L7.50394 5.62362L9.15558 6.56099V8.43561L7.50992 9.37297L5.85828 8.43561L5.85523 6.56093Z", fill: color }) }));
41
+ });
42
+ exports.A.displayName = "A";
43
+ exports.A.metadata = {
44
+ name: "A",
45
+ category: "icon/design",
46
+ tags: ["icon"],
47
+ description: "A icon from icon/design category",
48
+ type: ["stroke", "solid"],
49
+ };
50
+ exports.default = exports.A;
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const C: IconComponent;
3
+ export default C;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.C = void 0;
37
+ const jsx_runtime_1 = require("react/jsx-runtime");
38
+ const React = __importStar(require("react"));
39
+ exports.C = React.forwardRef(function C({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
40
+ return ((0, jsx_runtime_1.jsxs)("svg", { width: "15", height: "16", viewBox: "0 0 15 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: [(0, jsx_runtime_1.jsx)("path", { d: "M14.98 7.80214C14.98 7.17457 14.9291 6.71661 14.8189 6.2417H7.65266V9.07423H11.8591C11.7743 9.77815 11.3163 10.8382 10.2986 11.5506L10.2844 11.6454L12.5502 13.4007L12.7072 13.4164C14.1489 12.0849 14.98 10.1258 14.98 7.80214Z", fill: color }), (0, jsx_runtime_1.jsx)("path", { d: "M7.65264 15.2652C9.71343 15.2652 11.4435 14.5867 12.7072 13.4164L10.2986 11.5506C9.65409 12.0001 8.78904 12.3138 7.65264 12.3138C5.63424 12.3138 3.92115 10.9824 3.31048 9.14209L3.22096 9.14969L0.864925 10.9731L0.834114 11.0587C2.08925 13.552 4.6674 15.2652 7.65264 15.2652Z", fill: color }), (0, jsx_runtime_1.jsx)("path", { d: "M3.31048 9.14226C3.14935 8.66735 3.0561 8.15847 3.0561 7.63269C3.0561 7.10685 3.14935 6.59802 3.302 6.12311L3.29774 6.02196L0.912171 4.16931L0.83412 4.20644C0.316818 5.2411 0.019989 6.40298 0.019989 7.63269C0.019989 8.86239 0.316818 10.0242 0.83412 11.0589L3.31048 9.14226Z", fill: color }), (0, jsx_runtime_1.jsx)("path", { d: "M7.65264 2.95128C9.08586 2.95128 10.0526 3.57037 10.6039 4.08773L12.758 1.98449C11.4351 0.754788 9.71343 0 7.65264 0C4.6674 0 2.08925 1.7131 0.834114 4.20641L3.302 6.12308C3.92115 4.28277 5.63424 2.95128 7.65264 2.95128Z", fill: color })] }));
41
+ });
42
+ exports.C.displayName = "C";
43
+ exports.C.metadata = {
44
+ name: "C",
45
+ category: "icon/design",
46
+ tags: ["icon"],
47
+ description: "C icon from icon/design category",
48
+ type: ["stroke", "solid"],
49
+ };
50
+ exports.default = exports.C;
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const D: IconComponent;
3
+ export default D;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.D = void 0;
37
+ const jsx_runtime_1 = require("react/jsx-runtime");
38
+ const React = __importStar(require("react"));
39
+ exports.D = React.forwardRef(function D({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
40
+ return ((0, jsx_runtime_1.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.5 1L15 14H0L7.5 1Z", fill: color }) }));
41
+ });
42
+ exports.D.displayName = "D";
43
+ exports.D.metadata = {
44
+ name: "D",
45
+ category: "icon/design",
46
+ tags: ["icon"],
47
+ description: "D icon from icon/design category",
48
+ type: ["stroke", "solid"],
49
+ };
50
+ exports.default = exports.D;
@@ -0,0 +1,3 @@
1
+ export { default as A } from "./A";
2
+ export { default as D } from "./D";
3
+ export { default as C } from "./C";
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.C = exports.D = exports.A = void 0;
7
+ var A_1 = require("./A");
8
+ Object.defineProperty(exports, "A", { enumerable: true, get: function () { return __importDefault(A_1).default; } });
9
+ var D_1 = require("./D");
10
+ Object.defineProperty(exports, "D", { enumerable: true, get: function () { return __importDefault(D_1).default; } });
11
+ var C_1 = require("./C");
12
+ Object.defineProperty(exports, "C", { enumerable: true, get: function () { return __importDefault(C_1).default; } });
@@ -0,0 +1,3 @@
1
+ export * from "./wordmark/ai";
2
+ export * from "./icon/design";
3
+ export type { IconProps } from "./types";
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ // entry.tsx.ejs - Simple re-export structure
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
+ };
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ __exportStar(require("./wordmark/ai"), exports);
19
+ __exportStar(require("./icon/design"), exports);
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ export interface IconProps extends React.SVGAttributes<SVGElement> {
3
+ children?: never;
4
+ color?: string;
5
+ fill?: string;
6
+ size?: number;
7
+ strokeWidth?: number;
8
+ strokeLinecap?: "butt" | "round" | "square";
9
+ strokeLinejoin?: "round" | "miter" | "bevel";
10
+ strokeDasharray?: string;
11
+ opacity?: number;
12
+ className?: string;
13
+ type?: string;
14
+ }
15
+ export interface IconMetadata {
16
+ name: string;
17
+ category: string;
18
+ tags: string[];
19
+ description?: string;
20
+ author?: string;
21
+ created?: string;
22
+ type: ("stroke" | "solid" | "duotone" | "twotone" | "bulk")[];
23
+ }
24
+ export type IconComponent<P extends IconProps = IconProps> = React.ForwardRefExoticComponent<P & React.RefAttributes<SVGSVGElement>> & {
25
+ metadata?: IconMetadata;
26
+ displayName?: string;
27
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const Asfsbfd: IconComponent;
3
+ export default Asfsbfd;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.Asfsbfd = void 0;
37
+ const jsx_runtime_1 = require("react/jsx-runtime");
38
+ const React = __importStar(require("react"));
39
+ exports.Asfsbfd = React.forwardRef(function Asfsbfd({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
40
+ return ((0, jsx_runtime_1.jsxs)("svg", { width: "15", height: "16", viewBox: "0 0 15 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: [(0, jsx_runtime_1.jsx)("path", { d: "M14.98 7.80216C14.98 7.1746 14.9291 6.71664 14.8189 6.24172H7.65266V9.07425H11.8591C11.7743 9.77818 11.3163 10.8383 10.2986 11.5506L10.2844 11.6454L12.5502 13.4008L12.7072 13.4164C14.1489 12.0849 14.98 10.1259 14.98 7.80216Z", fill: color }), (0, jsx_runtime_1.jsx)("path", { d: "M7.65264 15.2652C9.71342 15.2652 11.4435 14.5867 12.7071 13.4164L10.2986 11.5506C9.65408 12.0001 8.78903 12.3139 7.65264 12.3139C5.63423 12.3139 3.92114 10.9824 3.31047 9.14211L3.22096 9.14971L0.864918 10.9731L0.834106 11.0587C2.08924 13.552 4.66739 15.2652 7.65264 15.2652Z", fill: color }), (0, jsx_runtime_1.jsx)("path", { d: "M3.31048 9.14225C3.14935 8.66733 3.0561 8.15845 3.0561 7.63267C3.0561 7.10683 3.14935 6.59801 3.302 6.12309L3.29774 6.02195L0.912171 4.1693L0.83412 4.20642C0.316818 5.24108 0.019989 6.40297 0.019989 7.63267C0.019989 8.86237 0.316818 10.0242 0.83412 11.0589L3.31048 9.14225Z", fill: color }), (0, jsx_runtime_1.jsx)("path", { d: "M7.65264 2.95128C9.08586 2.95128 10.0526 3.57037 10.6039 4.08773L12.758 1.98449C11.4351 0.754788 9.71342 0 7.65264 0C4.66739 0 2.08924 1.7131 0.834106 4.20641L3.30199 6.12308C3.92114 4.28277 5.63423 2.95128 7.65264 2.95128Z", fill: color })] }));
41
+ });
42
+ exports.Asfsbfd.displayName = "Asfsbfd";
43
+ exports.Asfsbfd.metadata = {
44
+ name: "Asfsbfd",
45
+ category: "wordmark/ai",
46
+ tags: ["asfsbfd", "icon"],
47
+ description: "Asfsbfd icon from wordmark/ai category",
48
+ type: ["stroke", "solid"],
49
+ };
50
+ exports.default = exports.Asfsbfd;
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const Erfg: IconComponent;
3
+ export default Erfg;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.Erfg = void 0;
37
+ const jsx_runtime_1 = require("react/jsx-runtime");
38
+ const React = __importStar(require("react"));
39
+ exports.Erfg = React.forwardRef(function Erfg({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
40
+ return ((0, jsx_runtime_1.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.5 1L15 14H0L7.5 1Z", fill: color }) }));
41
+ });
42
+ exports.Erfg.displayName = "Erfg";
43
+ exports.Erfg.metadata = {
44
+ name: "Erfg",
45
+ category: "wordmark/ai",
46
+ tags: ["erfg", "icon"],
47
+ description: "Erfg icon from wordmark/ai category",
48
+ type: ["stroke", "solid"],
49
+ };
50
+ exports.default = exports.Erfg;
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const Layes: IconComponent;
3
+ export default Layes;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.Layes = void 0;
37
+ const jsx_runtime_1 = require("react/jsx-runtime");
38
+ const React = __importStar(require("react"));
39
+ exports.Layes = React.forwardRef(function Layes({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
40
+ return ((0, jsx_runtime_1.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: (0, jsx_runtime_1.jsx)("path", { d: "M14.0147 6.1382C14.1847 5.63312 14.2435 5.09807 14.1872 4.56879C14.1309 4.03951 13.9607 3.52818 13.688 3.06896C12.8585 1.64476 11.1914 0.912172 9.56328 1.25642C9.11247 0.761776 8.53765 0.392848 7.89656 0.186686C7.25547 -0.0194763 6.57067 -0.0556153 5.91093 0.0818985C5.2512 0.219412 4.63976 0.525737 4.13803 0.97011C3.63629 1.41448 3.26192 1.98126 3.05251 2.61351C2.52386 2.72044 2.02444 2.93744 1.58762 3.25002C1.1508 3.56259 0.786651 3.96353 0.519504 4.42605C-0.318973 5.848 -0.128601 7.64158 0.990188 8.86146C0.81953 9.36629 0.760128 9.90125 0.815958 10.4305C0.871787 10.9598 1.04156 11.4713 1.31392 11.9306C2.14443 13.3554 3.81259 14.0879 5.44162 13.7432C5.79978 14.141 6.23986 14.4589 6.73248 14.6756C7.2251 14.8923 7.75891 15.0029 8.2983 14.9999C9.96711 15.0014 11.4456 13.9387 11.9554 12.3712C12.4839 12.2641 12.9833 12.047 13.4201 11.7345C13.8568 11.4219 14.221 11.0211 14.4883 10.5587C15.3167 9.13929 15.1255 7.35542 14.0147 6.1382ZM8.2983 14.0182C7.63218 14.0193 6.98695 13.789 6.47574 13.3677L6.56568 13.3174L9.59322 11.5936C9.66857 11.55 9.73114 11.4879 9.77477 11.4132C9.81839 11.3386 9.84159 11.254 9.84207 11.1678V6.95725L11.122 7.68759C11.1348 7.694 11.1437 7.70608 11.146 7.72013V11.2092C11.1427 12.7592 9.86967 14.015 8.2983 14.0182ZM2.17724 11.4399C1.84318 10.8709 1.72324 10.2039 1.83851 9.55631L1.92839 9.60954L4.95898 11.3334C5.03396 11.3768 5.11933 11.3997 5.20627 11.3997C5.29322 11.3997 5.37858 11.3768 5.45357 11.3334L9.15558 9.22813V10.6859C9.15524 10.6934 9.15317 10.7008 9.14954 10.7074C9.14591 10.7141 9.14081 10.7198 9.13461 10.7243L6.0681 12.4689C4.70539 13.2432 2.96439 12.7828 2.17724 11.4399ZM1.37984 4.93467C1.71622 4.36202 2.24716 3.92525 2.87867 3.70167V7.24988C2.87753 7.33561 2.89973 7.42007 2.94297 7.49445C2.9862 7.56883 3.04888 7.6304 3.12447 7.67273L6.80849 9.76918L5.52851 10.4995C5.52159 10.5031 5.51387 10.505 5.50604 10.505C5.49821 10.505 5.49049 10.5031 5.48357 10.4995L2.42304 8.758C1.06302 7.98039 0.596614 6.26437 1.37984 4.91993V4.93467ZM11.8954 7.34456L8.19933 5.22742L9.47638 4.50003C9.48331 4.49641 9.49104 4.49451 9.49888 4.49451C9.50673 4.49451 9.51445 4.49641 9.52138 4.50003L12.5819 6.2446C13.0499 6.51095 13.4314 6.90311 13.6818 7.3753C13.9323 7.84749 14.0415 8.38022 13.9965 8.9113C13.9516 9.44238 13.7544 9.94989 13.428 10.3746C13.1016 10.7993 12.6595 11.1236 12.1532 11.3097V7.76145C12.1506 7.67588 12.1254 7.59246 12.0802 7.51937C12.035 7.44628 11.9713 7.38604 11.8954 7.34456ZM13.1694 5.45514L13.0794 5.40185L10.0549 3.66324C9.97944 3.61957 9.89356 3.59655 9.80609 3.59655C9.71862 3.59655 9.63274 3.61957 9.5573 3.66324L5.85822 5.76858V4.31086C5.85743 4.30345 5.85869 4.29597 5.86185 4.2892C5.86502 4.28244 5.86998 4.27664 5.87621 4.27243L8.93674 2.5308C9.4058 2.26425 9.94211 2.13496 10.4829 2.15803C11.0238 2.18111 11.5467 2.35561 11.9907 2.66111C12.4347 2.96662 12.7813 3.39051 12.99 3.8832C13.1987 4.37589 13.2609 4.91702 13.1693 5.44329V5.45514H13.1694ZM5.15984 8.0394L3.87986 7.31202C3.87346 7.3082 3.86799 7.30304 3.86384 7.29691C3.85969 7.29078 3.85696 7.28382 3.85583 7.27653V3.79634C3.85654 3.26246 4.01132 2.7398 4.30206 2.28949C4.5928 1.83917 5.0075 1.47981 5.49766 1.25341C5.98783 1.02701 6.5332 0.942928 7.07002 1.011C7.60684 1.07908 8.11293 1.29649 8.5291 1.63782L8.43916 1.68811L5.41162 3.41193C5.33627 3.45553 5.27372 3.5177 5.2301 3.59236C5.18649 3.66701 5.1633 3.75157 5.16283 3.83773L5.15984 8.03946V8.0394ZM5.85523 6.56093L7.50394 5.62362L9.15558 6.56099V8.43561L7.50992 9.37297L5.85828 8.43561L5.85523 6.56093Z", fill: color }) }));
41
+ });
42
+ exports.Layes.displayName = "Layes";
43
+ exports.Layes.metadata = {
44
+ name: "Layes",
45
+ category: "wordmark/ai",
46
+ tags: ["layes", "icon"],
47
+ description: "Layes icon from wordmark/ai category",
48
+ type: ["stroke", "solid"],
49
+ };
50
+ exports.default = exports.Layes;
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const Save: IconComponent;
3
+ export default Save;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.Save = void 0;
37
+ const jsx_runtime_1 = require("react/jsx-runtime");
38
+ const React = __importStar(require("react"));
39
+ exports.Save = React.forwardRef(function Save({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
40
+ return ((0, jsx_runtime_1.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: (0, jsx_runtime_1.jsx)("path", { d: "M14.0147 6.1382C14.1847 5.63312 14.2435 5.09807 14.1872 4.56879C14.1309 4.03951 13.9607 3.52818 13.688 3.06896C12.8585 1.64476 11.1914 0.912172 9.56328 1.25642C9.11247 0.761776 8.53765 0.392848 7.89656 0.186686C7.25547 -0.0194763 6.57067 -0.0556153 5.91093 0.0818985C5.2512 0.219412 4.63976 0.525737 4.13803 0.97011C3.63629 1.41448 3.26192 1.98126 3.05251 2.61351C2.52386 2.72044 2.02444 2.93744 1.58762 3.25002C1.1508 3.56259 0.786651 3.96353 0.519504 4.42605C-0.318973 5.848 -0.128601 7.64158 0.990188 8.86146C0.81953 9.36629 0.760128 9.90125 0.815958 10.4305C0.871787 10.9598 1.04156 11.4713 1.31392 11.9306C2.14443 13.3554 3.81259 14.0879 5.44162 13.7432C5.79978 14.141 6.23986 14.4589 6.73248 14.6756C7.2251 14.8923 7.75891 15.0029 8.2983 14.9999C9.96711 15.0014 11.4456 13.9387 11.9554 12.3712C12.4839 12.2641 12.9833 12.047 13.4201 11.7345C13.8568 11.4219 14.221 11.0211 14.4883 10.5587C15.3167 9.13929 15.1255 7.35542 14.0147 6.1382ZM8.2983 14.0182C7.63218 14.0193 6.98695 13.789 6.47574 13.3677L6.56568 13.3174L9.59322 11.5936C9.66857 11.55 9.73114 11.4879 9.77477 11.4132C9.81839 11.3386 9.84159 11.254 9.84207 11.1678V6.95725L11.122 7.68759C11.1348 7.694 11.1437 7.70608 11.146 7.72013V11.2092C11.1427 12.7592 9.86967 14.015 8.2983 14.0182ZM2.17724 11.4399C1.84318 10.8709 1.72324 10.2039 1.83851 9.55631L1.92839 9.60954L4.95898 11.3334C5.03396 11.3768 5.11933 11.3997 5.20627 11.3997C5.29322 11.3997 5.37858 11.3768 5.45357 11.3334L9.15558 9.22813V10.6859C9.15524 10.6934 9.15317 10.7008 9.14954 10.7074C9.14591 10.7141 9.14081 10.7198 9.13461 10.7243L6.0681 12.4689C4.70539 13.2432 2.96439 12.7828 2.17724 11.4399ZM1.37984 4.93467C1.71622 4.36202 2.24716 3.92525 2.87867 3.70167V7.24988C2.87753 7.33561 2.89973 7.42007 2.94297 7.49445C2.9862 7.56883 3.04888 7.6304 3.12447 7.67273L6.80849 9.76918L5.52851 10.4995C5.52159 10.5031 5.51387 10.505 5.50604 10.505C5.49821 10.505 5.49049 10.5031 5.48357 10.4995L2.42304 8.758C1.06302 7.98039 0.596614 6.26437 1.37984 4.91993V4.93467ZM11.8954 7.34456L8.19933 5.22742L9.47638 4.50003C9.48331 4.49641 9.49104 4.49451 9.49888 4.49451C9.50673 4.49451 9.51445 4.49641 9.52138 4.50003L12.5819 6.2446C13.0499 6.51095 13.4314 6.90311 13.6818 7.3753C13.9323 7.84749 14.0415 8.38022 13.9965 8.9113C13.9516 9.44238 13.7544 9.94989 13.428 10.3746C13.1016 10.7993 12.6595 11.1236 12.1532 11.3097V7.76145C12.1506 7.67588 12.1254 7.59246 12.0802 7.51937C12.035 7.44628 11.9713 7.38604 11.8954 7.34456ZM13.1694 5.45514L13.0794 5.40185L10.0549 3.66324C9.97944 3.61957 9.89356 3.59655 9.80609 3.59655C9.71862 3.59655 9.63274 3.61957 9.5573 3.66324L5.85822 5.76858V4.31086C5.85743 4.30345 5.85869 4.29597 5.86185 4.2892C5.86502 4.28244 5.86998 4.27664 5.87621 4.27243L8.93674 2.5308C9.4058 2.26425 9.94211 2.13496 10.4829 2.15803C11.0238 2.18111 11.5467 2.35561 11.9907 2.66111C12.4347 2.96662 12.7813 3.39051 12.99 3.8832C13.1987 4.37589 13.2609 4.91702 13.1693 5.44329V5.45514H13.1694ZM5.15984 8.0394L3.87986 7.31202C3.87346 7.3082 3.86799 7.30304 3.86384 7.29691C3.85969 7.29078 3.85696 7.28382 3.85583 7.27653V3.79634C3.85654 3.26246 4.01132 2.7398 4.30206 2.28949C4.5928 1.83917 5.0075 1.47981 5.49766 1.25341C5.98783 1.02701 6.5332 0.942928 7.07002 1.011C7.60684 1.07908 8.11293 1.29649 8.5291 1.63782L8.43916 1.68811L5.41162 3.41193C5.33627 3.45553 5.27372 3.5177 5.2301 3.59236C5.18649 3.66701 5.1633 3.75157 5.16283 3.83773L5.15984 8.03946V8.0394ZM5.85523 6.56093L7.50394 5.62362L9.15558 6.56099V8.43561L7.50992 9.37297L5.85828 8.43561L5.85523 6.56093Z", fill: color }) }));
41
+ });
42
+ exports.Save.displayName = "Save";
43
+ exports.Save.metadata = {
44
+ name: "Save",
45
+ category: "wordmark/ai",
46
+ tags: ["save", "icon"],
47
+ description: "Save icon from wordmark/ai category",
48
+ type: ["stroke", "solid"],
49
+ };
50
+ exports.default = exports.Save;
@@ -0,0 +1,4 @@
1
+ export { default as Save } from "./Save";
2
+ export { default as Layes } from "./Layes";
3
+ export { default as Erfg } from "./Erfg";
4
+ export { default as Asfsbfd } from "./Asfsbfd";
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Asfsbfd = exports.Erfg = exports.Layes = exports.Save = void 0;
7
+ var Save_1 = require("./Save");
8
+ Object.defineProperty(exports, "Save", { enumerable: true, get: function () { return __importDefault(Save_1).default; } });
9
+ var Layes_1 = require("./Layes");
10
+ Object.defineProperty(exports, "Layes", { enumerable: true, get: function () { return __importDefault(Layes_1).default; } });
11
+ var Erfg_1 = require("./Erfg");
12
+ Object.defineProperty(exports, "Erfg", { enumerable: true, get: function () { return __importDefault(Erfg_1).default; } });
13
+ var Asfsbfd_1 = require("./Asfsbfd");
14
+ Object.defineProperty(exports, "Asfsbfd", { enumerable: true, get: function () { return __importDefault(Asfsbfd_1).default; } });
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const A: IconComponent;
3
+ export default A;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ export const A = React.forwardRef(function A({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
4
+ return (_jsx("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: _jsx("path", { d: "M14.0147 6.1382C14.1847 5.63312 14.2435 5.09807 14.1872 4.56879C14.1309 4.03951 13.9607 3.52818 13.688 3.06896C12.8585 1.64476 11.1914 0.912172 9.56328 1.25642C9.11247 0.761776 8.53765 0.392848 7.89656 0.186686C7.25547 -0.0194763 6.57067 -0.0556153 5.91093 0.0818985C5.2512 0.219412 4.63976 0.525737 4.13803 0.97011C3.63629 1.41448 3.26192 1.98126 3.05251 2.61351C2.52386 2.72044 2.02444 2.93744 1.58762 3.25002C1.1508 3.56259 0.786651 3.96353 0.519504 4.42605C-0.318973 5.848 -0.128601 7.64158 0.990188 8.86146C0.81953 9.36629 0.760128 9.90125 0.815958 10.4305C0.871787 10.9598 1.04156 11.4713 1.31392 11.9306C2.14443 13.3554 3.81259 14.0879 5.44162 13.7432C5.79978 14.141 6.23986 14.4589 6.73248 14.6756C7.2251 14.8923 7.75891 15.0029 8.2983 14.9999C9.96711 15.0014 11.4456 13.9387 11.9554 12.3712C12.4839 12.2641 12.9833 12.047 13.4201 11.7345C13.8568 11.4219 14.221 11.0211 14.4883 10.5587C15.3167 9.13929 15.1255 7.35542 14.0147 6.1382ZM8.2983 14.0182C7.63218 14.0193 6.98695 13.789 6.47574 13.3677L6.56568 13.3174L9.59322 11.5936C9.66857 11.55 9.73114 11.4879 9.77477 11.4132C9.81839 11.3386 9.84159 11.254 9.84207 11.1678V6.95725L11.122 7.68759C11.1348 7.694 11.1437 7.70608 11.146 7.72013V11.2092C11.1427 12.7592 9.86967 14.015 8.2983 14.0182ZM2.17724 11.4399C1.84318 10.8709 1.72324 10.2039 1.83851 9.55631L1.92839 9.60954L4.95898 11.3334C5.03396 11.3768 5.11933 11.3997 5.20627 11.3997C5.29322 11.3997 5.37858 11.3768 5.45357 11.3334L9.15558 9.22813V10.6859C9.15524 10.6934 9.15317 10.7008 9.14954 10.7074C9.14591 10.7141 9.14081 10.7198 9.13461 10.7243L6.0681 12.4689C4.70539 13.2432 2.96439 12.7828 2.17724 11.4399ZM1.37984 4.93467C1.71622 4.36202 2.24716 3.92525 2.87867 3.70167V7.24988C2.87753 7.33561 2.89973 7.42007 2.94297 7.49445C2.9862 7.56883 3.04888 7.6304 3.12447 7.67273L6.80849 9.76918L5.52851 10.4995C5.52159 10.5031 5.51387 10.505 5.50604 10.505C5.49821 10.505 5.49049 10.5031 5.48357 10.4995L2.42304 8.758C1.06302 7.98039 0.596614 6.26437 1.37984 4.91993V4.93467ZM11.8954 7.34456L8.19933 5.22742L9.47638 4.50003C9.48331 4.49641 9.49104 4.49451 9.49888 4.49451C9.50673 4.49451 9.51445 4.49641 9.52138 4.50003L12.5819 6.2446C13.0499 6.51095 13.4314 6.90311 13.6818 7.3753C13.9323 7.84749 14.0415 8.38022 13.9965 8.9113C13.9516 9.44238 13.7544 9.94989 13.428 10.3746C13.1016 10.7993 12.6595 11.1236 12.1532 11.3097V7.76145C12.1506 7.67588 12.1254 7.59246 12.0802 7.51937C12.035 7.44628 11.9713 7.38604 11.8954 7.34456ZM13.1694 5.45514L13.0794 5.40185L10.0549 3.66324C9.97944 3.61957 9.89356 3.59655 9.80609 3.59655C9.71862 3.59655 9.63274 3.61957 9.5573 3.66324L5.85822 5.76858V4.31086C5.85743 4.30345 5.85869 4.29597 5.86185 4.2892C5.86502 4.28244 5.86998 4.27664 5.87621 4.27243L8.93674 2.5308C9.4058 2.26425 9.94211 2.13496 10.4829 2.15803C11.0238 2.18111 11.5467 2.35561 11.9907 2.66111C12.4347 2.96662 12.7813 3.39051 12.99 3.8832C13.1987 4.37589 13.2609 4.91702 13.1693 5.44329V5.45514H13.1694ZM5.15984 8.0394L3.87986 7.31202C3.87346 7.3082 3.86799 7.30304 3.86384 7.29691C3.85969 7.29078 3.85696 7.28382 3.85583 7.27653V3.79634C3.85654 3.26246 4.01132 2.7398 4.30206 2.28949C4.5928 1.83917 5.0075 1.47981 5.49766 1.25341C5.98783 1.02701 6.5332 0.942928 7.07002 1.011C7.60684 1.07908 8.11293 1.29649 8.5291 1.63782L8.43916 1.68811L5.41162 3.41193C5.33627 3.45553 5.27372 3.5177 5.2301 3.59236C5.18649 3.66701 5.1633 3.75157 5.16283 3.83773L5.15984 8.03946V8.0394ZM5.85523 6.56093L7.50394 5.62362L9.15558 6.56099V8.43561L7.50992 9.37297L5.85828 8.43561L5.85523 6.56093Z", fill: color }) }));
5
+ });
6
+ A.displayName = "A";
7
+ A.metadata = {
8
+ name: "A",
9
+ category: "icon/design",
10
+ tags: ["icon"],
11
+ description: "A icon from icon/design category",
12
+ type: ["stroke", "solid"],
13
+ };
14
+ export default A;
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const C: IconComponent;
3
+ export default C;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ export const C = React.forwardRef(function C({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
4
+ return (_jsxs("svg", { width: "15", height: "16", viewBox: "0 0 15 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: [_jsx("path", { d: "M14.98 7.80214C14.98 7.17457 14.9291 6.71661 14.8189 6.2417H7.65266V9.07423H11.8591C11.7743 9.77815 11.3163 10.8382 10.2986 11.5506L10.2844 11.6454L12.5502 13.4007L12.7072 13.4164C14.1489 12.0849 14.98 10.1258 14.98 7.80214Z", fill: color }), _jsx("path", { d: "M7.65264 15.2652C9.71343 15.2652 11.4435 14.5867 12.7072 13.4164L10.2986 11.5506C9.65409 12.0001 8.78904 12.3138 7.65264 12.3138C5.63424 12.3138 3.92115 10.9824 3.31048 9.14209L3.22096 9.14969L0.864925 10.9731L0.834114 11.0587C2.08925 13.552 4.6674 15.2652 7.65264 15.2652Z", fill: color }), _jsx("path", { d: "M3.31048 9.14226C3.14935 8.66735 3.0561 8.15847 3.0561 7.63269C3.0561 7.10685 3.14935 6.59802 3.302 6.12311L3.29774 6.02196L0.912171 4.16931L0.83412 4.20644C0.316818 5.2411 0.019989 6.40298 0.019989 7.63269C0.019989 8.86239 0.316818 10.0242 0.83412 11.0589L3.31048 9.14226Z", fill: color }), _jsx("path", { d: "M7.65264 2.95128C9.08586 2.95128 10.0526 3.57037 10.6039 4.08773L12.758 1.98449C11.4351 0.754788 9.71343 0 7.65264 0C4.6674 0 2.08925 1.7131 0.834114 4.20641L3.302 6.12308C3.92115 4.28277 5.63424 2.95128 7.65264 2.95128Z", fill: color })] }));
5
+ });
6
+ C.displayName = "C";
7
+ C.metadata = {
8
+ name: "C",
9
+ category: "icon/design",
10
+ tags: ["icon"],
11
+ description: "C icon from icon/design category",
12
+ type: ["stroke", "solid"],
13
+ };
14
+ export default C;
@@ -0,0 +1,3 @@
1
+ import type { IconComponent } from "../../types";
2
+ export declare const D: IconComponent;
3
+ export default D;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ export const D = React.forwardRef(function D({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, ...props }, forwardedRef) {
4
+ return (_jsx("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: _jsx("path", { d: "M7.5 1L15 14H0L7.5 1Z", fill: color }) }));
5
+ });
6
+ D.displayName = "D";
7
+ D.metadata = {
8
+ name: "D",
9
+ category: "icon/design",
10
+ tags: ["icon"],
11
+ description: "D icon from icon/design category",
12
+ type: ["stroke", "solid"],
13
+ };
14
+ export default D;
@@ -0,0 +1,3 @@
1
+ export { default as A } from "./A";
2
+ export { default as D } from "./D";
3
+ export { default as C } from "./C";
@@ -0,0 +1,3 @@
1
+ export { default as A } from "./A";
2
+ export { default as D } from "./D";
3
+ export { default as C } from "./C";
@@ -0,0 +1,3 @@
1
+ export * from "./wordmark/ai";
2
+ export * from "./icon/design";
3
+ export type { IconProps } from "./types";
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // entry.tsx.ejs - Simple re-export structure
2
+ export * from "./wordmark/ai";
3
+ export * from "./icon/design";