@uiuxicons/vue 0.2.0 → 0.3.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 (57) hide show
  1. package/dist/icons/book-open-text.cjs +45 -0
  2. package/dist/icons/book-open-text.d.cts +56 -0
  3. package/dist/icons/book-open-text.d.ts +56 -0
  4. package/dist/icons/book-open-text.js +21 -0
  5. package/dist/icons/book-open.cjs +45 -0
  6. package/dist/icons/book-open.d.cts +56 -0
  7. package/dist/icons/book-open.d.ts +56 -0
  8. package/dist/icons/book-open.js +21 -0
  9. package/dist/icons/book.cjs +45 -0
  10. package/dist/icons/book.d.cts +56 -0
  11. package/dist/icons/book.d.ts +56 -0
  12. package/dist/icons/book.js +21 -0
  13. package/dist/icons/bookmark.cjs +45 -0
  14. package/dist/icons/bookmark.d.cts +56 -0
  15. package/dist/icons/bookmark.d.ts +56 -0
  16. package/dist/icons/bookmark.js +21 -0
  17. package/dist/icons/chevron-right.cjs +2 -2
  18. package/dist/icons/chevron-right.js +2 -2
  19. package/dist/icons/folder-check.cjs +45 -0
  20. package/dist/icons/folder-check.d.cts +56 -0
  21. package/dist/icons/folder-check.d.ts +56 -0
  22. package/dist/icons/folder-check.js +21 -0
  23. package/dist/icons/folder-code.cjs +45 -0
  24. package/dist/icons/folder-code.d.cts +56 -0
  25. package/dist/icons/folder-code.d.ts +56 -0
  26. package/dist/icons/folder-code.js +21 -0
  27. package/dist/icons/folder-minus.cjs +45 -0
  28. package/dist/icons/folder-minus.d.cts +56 -0
  29. package/dist/icons/folder-minus.d.ts +56 -0
  30. package/dist/icons/folder-minus.js +21 -0
  31. package/dist/icons/folder-open.cjs +45 -0
  32. package/dist/icons/folder-open.d.cts +56 -0
  33. package/dist/icons/folder-open.d.ts +56 -0
  34. package/dist/icons/folder-open.js +21 -0
  35. package/dist/icons/folder-plus.cjs +45 -0
  36. package/dist/icons/folder-plus.d.cts +56 -0
  37. package/dist/icons/folder-plus.d.ts +56 -0
  38. package/dist/icons/folder-plus.js +21 -0
  39. package/dist/icons/folder-x.cjs +45 -0
  40. package/dist/icons/folder-x.d.cts +56 -0
  41. package/dist/icons/folder-x.d.ts +56 -0
  42. package/dist/icons/folder-x.js +21 -0
  43. package/dist/icons/folder.cjs +45 -0
  44. package/dist/icons/folder.d.cts +56 -0
  45. package/dist/icons/folder.d.ts +56 -0
  46. package/dist/icons/folder.js +21 -0
  47. package/dist/icons/share.cjs +1 -1
  48. package/dist/icons/share.js +1 -1
  49. package/dist/icons/triangle-dashed.cjs +2 -2
  50. package/dist/icons/triangle-dashed.js +2 -2
  51. package/dist/icons/triangle.cjs +1 -1
  52. package/dist/icons/triangle.js +1 -1
  53. package/dist/index.cjs +33 -0
  54. package/dist/index.d.cts +11 -0
  55. package/dist/index.d.ts +11 -0
  56. package/dist/index.js +22 -0
  57. package/package.json +1 -1
@@ -0,0 +1,56 @@
1
+ import * as vue from 'vue';
2
+ import { IconVariant, IconWeight } from '../types.cjs';
3
+
4
+ declare const IconBookmark: vue.DefineComponent<vue.ExtractPropTypes<{
5
+ variant: {
6
+ type: vue.PropType<IconVariant>;
7
+ default: undefined;
8
+ };
9
+ weight: {
10
+ type: vue.PropType<IconWeight>;
11
+ default: undefined;
12
+ };
13
+ size: {
14
+ type: vue.PropType<number | string>;
15
+ default: undefined;
16
+ };
17
+ color: {
18
+ type: StringConstructor;
19
+ default: undefined;
20
+ };
21
+ title: {
22
+ type: StringConstructor;
23
+ default: undefined;
24
+ };
25
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
26
+ [key: string]: any;
27
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
28
+ variant: {
29
+ type: vue.PropType<IconVariant>;
30
+ default: undefined;
31
+ };
32
+ weight: {
33
+ type: vue.PropType<IconWeight>;
34
+ default: undefined;
35
+ };
36
+ size: {
37
+ type: vue.PropType<number | string>;
38
+ default: undefined;
39
+ };
40
+ color: {
41
+ type: StringConstructor;
42
+ default: undefined;
43
+ };
44
+ title: {
45
+ type: StringConstructor;
46
+ default: undefined;
47
+ };
48
+ }>> & Readonly<{}>, {
49
+ variant: IconVariant;
50
+ weight: IconWeight;
51
+ size: string | number;
52
+ color: string;
53
+ title: string;
54
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
55
+
56
+ export { IconBookmark };
@@ -0,0 +1,56 @@
1
+ import * as vue from 'vue';
2
+ import { IconVariant, IconWeight } from '../types.js';
3
+
4
+ declare const IconBookmark: vue.DefineComponent<vue.ExtractPropTypes<{
5
+ variant: {
6
+ type: vue.PropType<IconVariant>;
7
+ default: undefined;
8
+ };
9
+ weight: {
10
+ type: vue.PropType<IconWeight>;
11
+ default: undefined;
12
+ };
13
+ size: {
14
+ type: vue.PropType<number | string>;
15
+ default: undefined;
16
+ };
17
+ color: {
18
+ type: StringConstructor;
19
+ default: undefined;
20
+ };
21
+ title: {
22
+ type: StringConstructor;
23
+ default: undefined;
24
+ };
25
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
26
+ [key: string]: any;
27
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
28
+ variant: {
29
+ type: vue.PropType<IconVariant>;
30
+ default: undefined;
31
+ };
32
+ weight: {
33
+ type: vue.PropType<IconWeight>;
34
+ default: undefined;
35
+ };
36
+ size: {
37
+ type: vue.PropType<number | string>;
38
+ default: undefined;
39
+ };
40
+ color: {
41
+ type: StringConstructor;
42
+ default: undefined;
43
+ };
44
+ title: {
45
+ type: StringConstructor;
46
+ default: undefined;
47
+ };
48
+ }>> & Readonly<{}>, {
49
+ variant: IconVariant;
50
+ weight: IconWeight;
51
+ size: string | number;
52
+ color: string;
53
+ title: string;
54
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
55
+
56
+ export { IconBookmark };
@@ -0,0 +1,21 @@
1
+ import { createIcon } from "../createIcon";
2
+ const IconBookmark = /* @__PURE__ */ createIcon("bookmark", {
3
+ line: {
4
+ light: `<path fill="currentColor" d="M10.373 15.736a2.5 2.5 0 0 1 3.254 0l4.048 3.47a.5.5 0 0 0 .825-.38V5A1.5 1.5 0 0 0 17 3.5H7A1.5 1.5 0 0 0 5.5 5v13.826a.5.5 0 0 0 .825.38zm9.127 3.09c0 1.282-1.504 1.973-2.477 1.139l-4.046-3.47a1.5 1.5 0 0 0-1.954 0l-4.046 3.47c-.973.834-2.477.143-2.477-1.139V5A2.5 2.5 0 0 1 7 2.5h10A2.5 2.5 0 0 1 19.5 5z"/>`,
5
+ regular: `<path fill="currentColor" d="M10.21 15.546a2.75 2.75 0 0 1 3.58 0l4.047 3.47a.25.25 0 0 0 .413-.19V5c0-.69-.56-1.25-1.25-1.25H7c-.69 0-1.25.56-1.25 1.25v13.826a.25.25 0 0 0 .413.19zm9.54 3.28c0 1.495-1.754 2.301-2.889 1.328l-4.048-3.468a1.25 1.25 0 0 0-1.626 0l-4.048 3.468c-1.135.973-2.889.167-2.889-1.328V5A2.75 2.75 0 0 1 7 2.25h10A2.75 2.75 0 0 1 19.75 5z"/>`,
6
+ bold: `<path fill="currentColor" d="M10.048 15.356a3 3 0 0 1 3.904 0L18 18.826V5a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v13.826zM20 18.826c0 1.709-2.005 2.63-3.302 1.519l-4.048-3.47a1 1 0 0 0-1.3 0l-4.048 3.47C6.005 21.456 4 20.535 4 18.826V5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3z"/>`
7
+ },
8
+ duotone: {
9
+ light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M5 5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v13.826a1 1 0 0 1-1.65.759l-4.048-3.47a2 2 0 0 0-2.604 0l-4.047 3.47A1 1 0 0 1 5 18.825z"/><path fill="currentColor" d="M10.373 15.736a2.5 2.5 0 0 1 3.254 0l4.048 3.47a.5.5 0 0 0 .825-.38V5A1.5 1.5 0 0 0 17 3.5H7A1.5 1.5 0 0 0 5.5 5v13.826a.5.5 0 0 0 .825.38zm9.127 3.09c0 1.282-1.504 1.973-2.477 1.139l-4.046-3.47a1.5 1.5 0 0 0-1.954 0l-4.046 3.47c-.973.834-2.477.143-2.477-1.139V5A2.5 2.5 0 0 1 7 2.5h10A2.5 2.5 0 0 1 19.5 5z"/>`,
10
+ regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M5 5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v13.826a1 1 0 0 1-1.65.759l-4.048-3.47a2 2 0 0 0-2.604 0l-4.047 3.47A1 1 0 0 1 5 18.825z"/><path fill="currentColor" d="M10.21 15.546a2.75 2.75 0 0 1 3.58 0l4.047 3.47a.25.25 0 0 0 .413-.19V5c0-.69-.56-1.25-1.25-1.25H7c-.69 0-1.25.56-1.25 1.25v13.826a.25.25 0 0 0 .413.19zm9.54 3.28c0 1.495-1.754 2.301-2.889 1.328l-4.048-3.468a1.25 1.25 0 0 0-1.626 0l-4.048 3.468c-1.135.973-2.889.167-2.889-1.328V5A2.75 2.75 0 0 1 7 2.25h10A2.75 2.75 0 0 1 19.75 5z"/>`,
11
+ bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M5 5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v13.826a1 1 0 0 1-1.65.759l-4.048-3.47a2 2 0 0 0-2.604 0l-4.047 3.47A1 1 0 0 1 5 18.825z"/><path fill="currentColor" d="M10.048 15.356a3 3 0 0 1 3.904 0L18 18.826V5a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v13.826zM20 18.826c0 1.709-2.005 2.63-3.302 1.519l-4.048-3.47a1 1 0 0 0-1.3 0l-4.048 3.47C6.005 21.456 4 20.535 4 18.826V5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3z"/>`
12
+ },
13
+ solid: {
14
+ light: `<path fill="currentColor" d="M17 2.5A2.5 2.5 0 0 1 19.5 5v13.826c0 1.281-1.504 1.973-2.477 1.139l-4.046-3.47a1.5 1.5 0 0 0-1.954 0l-4.046 3.47c-.973.834-2.477.143-2.477-1.139V5A2.5 2.5 0 0 1 7 2.5z"/>`,
15
+ regular: `<path fill="currentColor" d="M17 2.25A2.75 2.75 0 0 1 19.75 5v13.826c0 1.495-1.754 2.301-2.889 1.328l-4.048-3.468a1.25 1.25 0 0 0-1.626 0l-4.048 3.468c-1.135.973-2.889.167-2.889-1.328V5A2.75 2.75 0 0 1 7 2.25z"/>`,
16
+ bold: `<path fill="currentColor" d="M17 2a3 3 0 0 1 3 3v13.826c0 1.709-2.005 2.63-3.302 1.519l-4.048-3.47a1 1 0 0 0-1.3 0l-4.048 3.47C6.005 21.456 4 20.535 4 18.826V5a3 3 0 0 1 3-3z"/>`
17
+ }
18
+ });
19
+ export {
20
+ IconBookmark
21
+ };
@@ -29,9 +29,9 @@ const IconChevronRight = /* @__PURE__ */ (0, import_createIcon.createIcon)("chev
29
29
  bold: `<path fill="currentColor" d="M8.793 4.793a1 1 0 0 1 1.414 0l6.147 6.146a1.5 1.5 0 0 1 0 2.121l-6.147 6.147a1 1 0 1 1-1.414-1.414L14.586 12 8.793 6.207a1 1 0 0 1 0-1.414"/>`
30
30
  },
31
31
  duotone: {
32
- light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M9.146 5.147a.5.5 0 0 1 .708 0L16 11.293a1 1 0 0 1 0 1.414l-6.146 6.147a.5.5 0 1 1-.708-.707L15.293 12 9.146 5.854a.5.5 0 0 1 0-.707"/>`,
32
+ light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M9.146 5.146a.5.5 0 0 1 .708 0L16 11.293a1 1 0 0 1 0 1.414l-6.146 6.147a.5.5 0 0 1-.708-.708L15.293 12 9.146 5.853a.5.5 0 0 1 0-.707"/>`,
33
33
  regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M8.97 4.97a.75.75 0 0 1 1.06 0l6.147 6.146a1.25 1.25 0 0 1 0 1.768L10.03 19.03a.75.75 0 1 1-1.06-1.06L14.94 12 8.97 6.03a.75.75 0 0 1 0-1.06"/>`,
34
- bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M8.793 4.793a1 1 0 0 1 1.414 0l6.147 6.146a1.5 1.5 0 0 1 0 2.121l-6.147 6.147a1 1 0 1 1-1.414-1.414L14.586 12 8.793 6.207a1 1 0 0 1 0-1.414"/>`
34
+ bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M8.793 4.793a1 1 0 0 1 1.414 0l6.147 6.147a1.5 1.5 0 0 1 0 2.12l-6.147 6.147a1 1 0 1 1-1.414-1.414L14.586 12 8.793 6.207a1 1 0 0 1 0-1.414"/>`
35
35
  },
36
36
  solid: {
37
37
  light: `<path fill="currentColor" d="M9 5.502c0-.417.474-.641.794-.407l.061.053 6.497 6.498a.5.5 0 0 1 0 .708l-6.497 6.498A.501.501 0 0 1 9 18.498z"/>`,
@@ -6,9 +6,9 @@ const IconChevronRight = /* @__PURE__ */ createIcon("chevron-right", {
6
6
  bold: `<path fill="currentColor" d="M8.793 4.793a1 1 0 0 1 1.414 0l6.147 6.146a1.5 1.5 0 0 1 0 2.121l-6.147 6.147a1 1 0 1 1-1.414-1.414L14.586 12 8.793 6.207a1 1 0 0 1 0-1.414"/>`
7
7
  },
8
8
  duotone: {
9
- light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M9.146 5.147a.5.5 0 0 1 .708 0L16 11.293a1 1 0 0 1 0 1.414l-6.146 6.147a.5.5 0 1 1-.708-.707L15.293 12 9.146 5.854a.5.5 0 0 1 0-.707"/>`,
9
+ light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M9.146 5.146a.5.5 0 0 1 .708 0L16 11.293a1 1 0 0 1 0 1.414l-6.146 6.147a.5.5 0 0 1-.708-.708L15.293 12 9.146 5.853a.5.5 0 0 1 0-.707"/>`,
10
10
  regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M8.97 4.97a.75.75 0 0 1 1.06 0l6.147 6.146a1.25 1.25 0 0 1 0 1.768L10.03 19.03a.75.75 0 1 1-1.06-1.06L14.94 12 8.97 6.03a.75.75 0 0 1 0-1.06"/>`,
11
- bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M8.793 4.793a1 1 0 0 1 1.414 0l6.147 6.146a1.5 1.5 0 0 1 0 2.121l-6.147 6.147a1 1 0 1 1-1.414-1.414L14.586 12 8.793 6.207a1 1 0 0 1 0-1.414"/>`
11
+ bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="m16 12-6.5 6.5v-13z"/><path fill="currentColor" d="M8.793 4.793a1 1 0 0 1 1.414 0l6.147 6.147a1.5 1.5 0 0 1 0 2.12l-6.147 6.147a1 1 0 1 1-1.414-1.414L14.586 12 8.793 6.207a1 1 0 0 1 0-1.414"/>`
12
12
  },
13
13
  solid: {
14
14
  light: `<path fill="currentColor" d="M9 5.502c0-.417.474-.641.794-.407l.061.053 6.497 6.498a.5.5 0 0 1 0 .708l-6.497 6.498A.501.501 0 0 1 9 18.498z"/>`,
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var folder_check_exports = {};
20
+ __export(folder_check_exports, {
21
+ IconFolderCheck: () => IconFolderCheck
22
+ });
23
+ module.exports = __toCommonJS(folder_check_exports);
24
+ var import_createIcon = require("../createIcon");
25
+ const IconFolderCheck = /* @__PURE__ */ (0, import_createIcon.createIcon)("folder-check", {
26
+ line: {
27
+ light: `<path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18m12.147-7.353a.5.5 0 1 1 .707.707l-3.824 3.823a.75.75 0 0 1-1.06 0l-1.824-1.823a.5.5 0 1 1 .708-.707L11 14.293zM3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
28
+ regular: `<path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18m12.22-7.53a.75.75 0 1 1 1.06 1.06l-3.823 3.824a1 1 0 0 1-1.414 0L8.47 13.53a.75.75 0 1 1 1.06-1.06L11 13.94zM3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
29
+ bold: `<path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m12.293-7.707a1 1 0 1 1 1.414 1.414l-3.823 3.823a1.25 1.25 0 0 1-1.768 0l-1.823-1.823a1 1 0 1 1 1.414-1.414L11 13.586zM4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
30
+ },
31
+ duotone: {
32
+ light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18m12.147-7.353a.5.5 0 1 1 .707.707l-3.824 3.823a.75.75 0 0 1-1.06 0l-1.824-1.823a.5.5 0 1 1 .708-.707L11 14.293zM3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
33
+ regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18m12.22-7.53a.75.75 0 1 1 1.06 1.06l-3.823 3.824a1 1 0 0 1-1.414 0L8.47 13.53a.75.75 0 1 1 1.06-1.06L11 13.94zM3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
34
+ bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m12.293-7.707a1 1 0 1 1 1.414 1.414l-3.823 3.823a1.25 1.25 0 0 1-1.768 0l-1.823-1.823a1 1 0 1 1 1.414-1.414L11 13.586zM4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
35
+ },
36
+ solid: {
37
+ light: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18V6A2.5 2.5 0 0 1 5 3.5zm6.854 7.147a.5.5 0 0 0-.707 0L11 14.293l-1.646-1.646a.5.5 0 1 0-.708.707l1.824 1.823a.75.75 0 0 0 1.06 0l3.824-3.823a.5.5 0 0 0 0-.707" clip-rule="evenodd"/>`,
38
+ regular: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.25c.866 0 1.68.407 2.2 1.1l.3.4c.236.315.607.5 1 .5h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18V6A2.75 2.75 0 0 1 5 3.25zm7.03 7.22a.75.75 0 0 0-1.06 0L11 13.94l-1.47-1.47a.75.75 0 1 0-1.06 1.06l1.823 1.824a1 1 0 0 0 1.414 0l3.823-3.824a.75.75 0 0 0 0-1.06" clip-rule="evenodd"/>`,
39
+ bold: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3zm7.207 7.293a1 1 0 0 0-1.414 0L11 13.586l-1.293-1.293a1 1 0 1 0-1.414 1.414l1.823 1.823a1.25 1.25 0 0 0 1.768 0l3.823-3.823a1 1 0 0 0 0-1.414" clip-rule="evenodd"/>`
40
+ }
41
+ });
42
+ // Annotate the CommonJS export names for ESM import in node:
43
+ 0 && (module.exports = {
44
+ IconFolderCheck
45
+ });
@@ -0,0 +1,56 @@
1
+ import * as vue from 'vue';
2
+ import { IconVariant, IconWeight } from '../types.cjs';
3
+
4
+ declare const IconFolderCheck: vue.DefineComponent<vue.ExtractPropTypes<{
5
+ variant: {
6
+ type: vue.PropType<IconVariant>;
7
+ default: undefined;
8
+ };
9
+ weight: {
10
+ type: vue.PropType<IconWeight>;
11
+ default: undefined;
12
+ };
13
+ size: {
14
+ type: vue.PropType<number | string>;
15
+ default: undefined;
16
+ };
17
+ color: {
18
+ type: StringConstructor;
19
+ default: undefined;
20
+ };
21
+ title: {
22
+ type: StringConstructor;
23
+ default: undefined;
24
+ };
25
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
26
+ [key: string]: any;
27
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
28
+ variant: {
29
+ type: vue.PropType<IconVariant>;
30
+ default: undefined;
31
+ };
32
+ weight: {
33
+ type: vue.PropType<IconWeight>;
34
+ default: undefined;
35
+ };
36
+ size: {
37
+ type: vue.PropType<number | string>;
38
+ default: undefined;
39
+ };
40
+ color: {
41
+ type: StringConstructor;
42
+ default: undefined;
43
+ };
44
+ title: {
45
+ type: StringConstructor;
46
+ default: undefined;
47
+ };
48
+ }>> & Readonly<{}>, {
49
+ variant: IconVariant;
50
+ weight: IconWeight;
51
+ size: string | number;
52
+ color: string;
53
+ title: string;
54
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
55
+
56
+ export { IconFolderCheck };
@@ -0,0 +1,56 @@
1
+ import * as vue from 'vue';
2
+ import { IconVariant, IconWeight } from '../types.js';
3
+
4
+ declare const IconFolderCheck: vue.DefineComponent<vue.ExtractPropTypes<{
5
+ variant: {
6
+ type: vue.PropType<IconVariant>;
7
+ default: undefined;
8
+ };
9
+ weight: {
10
+ type: vue.PropType<IconWeight>;
11
+ default: undefined;
12
+ };
13
+ size: {
14
+ type: vue.PropType<number | string>;
15
+ default: undefined;
16
+ };
17
+ color: {
18
+ type: StringConstructor;
19
+ default: undefined;
20
+ };
21
+ title: {
22
+ type: StringConstructor;
23
+ default: undefined;
24
+ };
25
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
26
+ [key: string]: any;
27
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
28
+ variant: {
29
+ type: vue.PropType<IconVariant>;
30
+ default: undefined;
31
+ };
32
+ weight: {
33
+ type: vue.PropType<IconWeight>;
34
+ default: undefined;
35
+ };
36
+ size: {
37
+ type: vue.PropType<number | string>;
38
+ default: undefined;
39
+ };
40
+ color: {
41
+ type: StringConstructor;
42
+ default: undefined;
43
+ };
44
+ title: {
45
+ type: StringConstructor;
46
+ default: undefined;
47
+ };
48
+ }>> & Readonly<{}>, {
49
+ variant: IconVariant;
50
+ weight: IconWeight;
51
+ size: string | number;
52
+ color: string;
53
+ title: string;
54
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
55
+
56
+ export { IconFolderCheck };
@@ -0,0 +1,21 @@
1
+ import { createIcon } from "../createIcon";
2
+ const IconFolderCheck = /* @__PURE__ */ createIcon("folder-check", {
3
+ line: {
4
+ light: `<path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18m12.147-7.353a.5.5 0 1 1 .707.707l-3.824 3.823a.75.75 0 0 1-1.06 0l-1.824-1.823a.5.5 0 1 1 .708-.707L11 14.293zM3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
5
+ regular: `<path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18m12.22-7.53a.75.75 0 1 1 1.06 1.06l-3.823 3.824a1 1 0 0 1-1.414 0L8.47 13.53a.75.75 0 1 1 1.06-1.06L11 13.94zM3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
6
+ bold: `<path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m12.293-7.707a1 1 0 1 1 1.414 1.414l-3.823 3.823a1.25 1.25 0 0 1-1.768 0l-1.823-1.823a1 1 0 1 1 1.414-1.414L11 13.586zM4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
7
+ },
8
+ duotone: {
9
+ light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18m12.147-7.353a.5.5 0 1 1 .707.707l-3.824 3.823a.75.75 0 0 1-1.06 0l-1.824-1.823a.5.5 0 1 1 .708-.707L11 14.293zM3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
10
+ regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18m12.22-7.53a.75.75 0 1 1 1.06 1.06l-3.823 3.824a1 1 0 0 1-1.414 0L8.47 13.53a.75.75 0 1 1 1.06-1.06L11 13.94zM3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
11
+ bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m12.293-7.707a1 1 0 1 1 1.414 1.414l-3.823 3.823a1.25 1.25 0 0 1-1.768 0l-1.823-1.823a1 1 0 1 1 1.414-1.414L11 13.586zM4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
12
+ },
13
+ solid: {
14
+ light: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18V6A2.5 2.5 0 0 1 5 3.5zm6.854 7.147a.5.5 0 0 0-.707 0L11 14.293l-1.646-1.646a.5.5 0 1 0-.708.707l1.824 1.823a.75.75 0 0 0 1.06 0l3.824-3.823a.5.5 0 0 0 0-.707" clip-rule="evenodd"/>`,
15
+ regular: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.25c.866 0 1.68.407 2.2 1.1l.3.4c.236.315.607.5 1 .5h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18V6A2.75 2.75 0 0 1 5 3.25zm7.03 7.22a.75.75 0 0 0-1.06 0L11 13.94l-1.47-1.47a.75.75 0 1 0-1.06 1.06l1.823 1.824a1 1 0 0 0 1.414 0l3.823-3.824a.75.75 0 0 0 0-1.06" clip-rule="evenodd"/>`,
16
+ bold: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3zm7.207 7.293a1 1 0 0 0-1.414 0L11 13.586l-1.293-1.293a1 1 0 1 0-1.414 1.414l1.823 1.823a1.25 1.25 0 0 0 1.768 0l3.823-3.823a1 1 0 0 0 0-1.414" clip-rule="evenodd"/>`
17
+ }
18
+ });
19
+ export {
20
+ IconFolderCheck
21
+ };
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var folder_code_exports = {};
20
+ __export(folder_code_exports, {
21
+ IconFolderCode: () => IconFolderCode
22
+ });
23
+ module.exports = __toCommonJS(folder_code_exports);
24
+ var import_createIcon = require("../createIcon");
25
+ const IconFolderCode = /* @__PURE__ */ (0, import_createIcon.createIcon)("folder-code", {
26
+ line: {
27
+ light: `<path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18m7.146-8.354a.5.5 0 1 1 .707.707L7.708 13l2.647 2.646a.5.5 0 1 1-.708.707L7 13.708a1 1 0 0 1 0-1.414zm4 0a.5.5 0 0 1 .707 0L17 12.293a1 1 0 0 1 0 1.414l-2.646 2.646a.5.5 0 1 1-.707-.707L16.293 13l-2.646-2.646a.5.5 0 0 1 0-.708M3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
28
+ regular: `<path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18m7.22-8.53a.75.75 0 1 1 1.06 1.06L8.06 13l2.47 2.47a.75.75 0 1 1-1.06 1.06l-2.647-2.646a1.25 1.25 0 0 1 0-1.768zm4 0a.75.75 0 0 1 1.06 0l2.647 2.646a1.25 1.25 0 0 1 0 1.768L14.53 16.53a.75.75 0 1 1-1.06-1.06L15.94 13l-2.47-2.47a.75.75 0 0 1 0-1.06M3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
29
+ bold: `<path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m7.293-8.707a1 1 0 1 1 1.414 1.414L8.414 13l2.293 2.293a1 1 0 1 1-1.414 1.414L6.646 14.06a1.5 1.5 0 0 1 0-2.12zm4 0a1 1 0 0 1 1.414 0l2.646 2.647a1.5 1.5 0 0 1 0 2.12l-2.646 2.647a1 1 0 1 1-1.414-1.414L15.586 13l-2.293-2.293a1 1 0 0 1 0-1.414M4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
30
+ },
31
+ duotone: {
32
+ light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18m7.146-8.354a.5.5 0 1 1 .707.707L7.708 13l2.647 2.646a.5.5 0 1 1-.708.707L7 13.708a1 1 0 0 1 0-1.414zm4 0a.5.5 0 0 1 .707 0L17 12.293a1 1 0 0 1 0 1.414l-2.646 2.646a.5.5 0 1 1-.707-.707L16.293 13l-2.646-2.646a.5.5 0 0 1 0-.708M3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
33
+ regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18m7.22-8.53a.75.75 0 1 1 1.06 1.06L8.06 13l2.47 2.47a.75.75 0 1 1-1.06 1.06l-2.647-2.646a1.25 1.25 0 0 1 0-1.768zm4 0a.75.75 0 0 1 1.06 0l2.647 2.646a1.25 1.25 0 0 1 0 1.768L14.53 16.53a.75.75 0 1 1-1.06-1.06L15.94 13l-2.47-2.47a.75.75 0 0 1 0-1.06M3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
34
+ bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m7.293-8.707a1 1 0 1 1 1.414 1.414L8.414 13l2.293 2.293a1 1 0 1 1-1.414 1.414L6.646 14.06a1.5 1.5 0 0 1 0-2.12zm4 0a1 1 0 0 1 1.414 0l2.646 2.647a1.5 1.5 0 0 1 0 2.12l-2.646 2.647a1 1 0 1 1-1.414-1.414L15.586 13l-2.293-2.293a1 1 0 0 1 0-1.414M4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
35
+ },
36
+ solid: {
37
+ light: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18V6A2.5 2.5 0 0 1 5 3.5zm1.854 6.146a.5.5 0 0 0-.708 0L7 12.293a1 1 0 0 0 0 1.414l2.646 2.646a.5.5 0 1 0 .707-.707L7.708 13l2.647-2.646a.5.5 0 0 0 0-.708m4 0a.5.5 0 1 0-.707.707L16.293 13l-2.646 2.646a.5.5 0 1 0 .707.707L17 13.708a1 1 0 0 0 0-1.414z" clip-rule="evenodd"/>`,
38
+ regular: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.25c.866 0 1.68.407 2.2 1.1l.3.4c.236.315.607.5 1 .5h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18V6A2.75 2.75 0 0 1 5 3.25zm2.03 6.22a.75.75 0 0 0-1.06 0l-2.647 2.646a1.25 1.25 0 0 0 0 1.768L9.47 16.53a.75.75 0 1 0 1.06-1.06L8.06 13l2.47-2.47a.75.75 0 0 0 0-1.06m4 0a.75.75 0 1 0-1.06 1.06L15.94 13l-2.47 2.47a.75.75 0 1 0 1.06 1.06l2.647-2.646a1.25 1.25 0 0 0 0-1.768z" clip-rule="evenodd"/>`,
39
+ bold: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3zm2.207 6.293a1 1 0 0 0-1.414 0L6.646 11.94a1.5 1.5 0 0 0 0 2.12l2.647 2.647a1 1 0 1 0 1.414-1.414L8.414 13l2.293-2.293a1 1 0 0 0 0-1.414m4 0a1 1 0 1 0-1.414 1.414L15.586 13l-2.293 2.293a1 1 0 1 0 1.414 1.414l2.646-2.647a1.5 1.5 0 0 0 0-2.12z" clip-rule="evenodd"/>`
40
+ }
41
+ });
42
+ // Annotate the CommonJS export names for ESM import in node:
43
+ 0 && (module.exports = {
44
+ IconFolderCode
45
+ });
@@ -0,0 +1,56 @@
1
+ import * as vue from 'vue';
2
+ import { IconVariant, IconWeight } from '../types.cjs';
3
+
4
+ declare const IconFolderCode: vue.DefineComponent<vue.ExtractPropTypes<{
5
+ variant: {
6
+ type: vue.PropType<IconVariant>;
7
+ default: undefined;
8
+ };
9
+ weight: {
10
+ type: vue.PropType<IconWeight>;
11
+ default: undefined;
12
+ };
13
+ size: {
14
+ type: vue.PropType<number | string>;
15
+ default: undefined;
16
+ };
17
+ color: {
18
+ type: StringConstructor;
19
+ default: undefined;
20
+ };
21
+ title: {
22
+ type: StringConstructor;
23
+ default: undefined;
24
+ };
25
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
26
+ [key: string]: any;
27
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
28
+ variant: {
29
+ type: vue.PropType<IconVariant>;
30
+ default: undefined;
31
+ };
32
+ weight: {
33
+ type: vue.PropType<IconWeight>;
34
+ default: undefined;
35
+ };
36
+ size: {
37
+ type: vue.PropType<number | string>;
38
+ default: undefined;
39
+ };
40
+ color: {
41
+ type: StringConstructor;
42
+ default: undefined;
43
+ };
44
+ title: {
45
+ type: StringConstructor;
46
+ default: undefined;
47
+ };
48
+ }>> & Readonly<{}>, {
49
+ variant: IconVariant;
50
+ weight: IconWeight;
51
+ size: string | number;
52
+ color: string;
53
+ title: string;
54
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
55
+
56
+ export { IconFolderCode };
@@ -0,0 +1,56 @@
1
+ import * as vue from 'vue';
2
+ import { IconVariant, IconWeight } from '../types.js';
3
+
4
+ declare const IconFolderCode: vue.DefineComponent<vue.ExtractPropTypes<{
5
+ variant: {
6
+ type: vue.PropType<IconVariant>;
7
+ default: undefined;
8
+ };
9
+ weight: {
10
+ type: vue.PropType<IconWeight>;
11
+ default: undefined;
12
+ };
13
+ size: {
14
+ type: vue.PropType<number | string>;
15
+ default: undefined;
16
+ };
17
+ color: {
18
+ type: StringConstructor;
19
+ default: undefined;
20
+ };
21
+ title: {
22
+ type: StringConstructor;
23
+ default: undefined;
24
+ };
25
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
26
+ [key: string]: any;
27
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
28
+ variant: {
29
+ type: vue.PropType<IconVariant>;
30
+ default: undefined;
31
+ };
32
+ weight: {
33
+ type: vue.PropType<IconWeight>;
34
+ default: undefined;
35
+ };
36
+ size: {
37
+ type: vue.PropType<number | string>;
38
+ default: undefined;
39
+ };
40
+ color: {
41
+ type: StringConstructor;
42
+ default: undefined;
43
+ };
44
+ title: {
45
+ type: StringConstructor;
46
+ default: undefined;
47
+ };
48
+ }>> & Readonly<{}>, {
49
+ variant: IconVariant;
50
+ weight: IconWeight;
51
+ size: string | number;
52
+ color: string;
53
+ title: string;
54
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
55
+
56
+ export { IconFolderCode };
@@ -0,0 +1,21 @@
1
+ import { createIcon } from "../createIcon";
2
+ const IconFolderCode = /* @__PURE__ */ createIcon("folder-code", {
3
+ line: {
4
+ light: `<path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18m7.146-8.354a.5.5 0 1 1 .707.707L7.708 13l2.647 2.646a.5.5 0 1 1-.708.707L7 13.708a1 1 0 0 1 0-1.414zm4 0a.5.5 0 0 1 .707 0L17 12.293a1 1 0 0 1 0 1.414l-2.646 2.646a.5.5 0 1 1-.707-.707L16.293 13l-2.646-2.646a.5.5 0 0 1 0-.708M3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
5
+ regular: `<path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18m7.22-8.53a.75.75 0 1 1 1.06 1.06L8.06 13l2.47 2.47a.75.75 0 1 1-1.06 1.06l-2.647-2.646a1.25 1.25 0 0 1 0-1.768zm4 0a.75.75 0 0 1 1.06 0l2.647 2.646a1.25 1.25 0 0 1 0 1.768L14.53 16.53a.75.75 0 1 1-1.06-1.06L15.94 13l-2.47-2.47a.75.75 0 0 1 0-1.06M3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
6
+ bold: `<path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m7.293-8.707a1 1 0 1 1 1.414 1.414L8.414 13l2.293 2.293a1 1 0 1 1-1.414 1.414L6.646 14.06a1.5 1.5 0 0 1 0-2.12zm4 0a1 1 0 0 1 1.414 0l2.646 2.647a1.5 1.5 0 0 1 0 2.12l-2.646 2.647a1 1 0 1 1-1.414-1.414L15.586 13l-2.293-2.293a1 1 0 0 1 0-1.414M4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
7
+ },
8
+ duotone: {
9
+ light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18m7.146-8.354a.5.5 0 1 1 .707.707L7.708 13l2.647 2.646a.5.5 0 1 1-.708.707L7 13.708a1 1 0 0 1 0-1.414zm4 0a.5.5 0 0 1 .707 0L17 12.293a1 1 0 0 1 0 1.414l-2.646 2.646a.5.5 0 1 1-.707-.707L16.293 13l-2.646-2.646a.5.5 0 0 1 0-.708M3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
10
+ regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18m7.22-8.53a.75.75 0 1 1 1.06 1.06L8.06 13l2.47 2.47a.75.75 0 1 1-1.06 1.06l-2.647-2.646a1.25 1.25 0 0 1 0-1.768zm4 0a.75.75 0 0 1 1.06 0l2.647 2.646a1.25 1.25 0 0 1 0 1.768L14.53 16.53a.75.75 0 1 1-1.06-1.06L15.94 13l-2.47-2.47a.75.75 0 0 1 0-1.06M3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
11
+ bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m7.293-8.707a1 1 0 1 1 1.414 1.414L8.414 13l2.293 2.293a1 1 0 1 1-1.414 1.414L6.646 14.06a1.5 1.5 0 0 1 0-2.12zm4 0a1 1 0 0 1 1.414 0l2.646 2.647a1.5 1.5 0 0 1 0 2.12l-2.646 2.647a1 1 0 1 1-1.414-1.414L15.586 13l-2.293-2.293a1 1 0 0 1 0-1.414M4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
12
+ },
13
+ solid: {
14
+ light: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18V6A2.5 2.5 0 0 1 5 3.5zm1.854 6.146a.5.5 0 0 0-.708 0L7 12.293a1 1 0 0 0 0 1.414l2.646 2.646a.5.5 0 1 0 .707-.707L7.708 13l2.647-2.646a.5.5 0 0 0 0-.708m4 0a.5.5 0 1 0-.707.707L16.293 13l-2.646 2.646a.5.5 0 1 0 .707.707L17 13.708a1 1 0 0 0 0-1.414z" clip-rule="evenodd"/>`,
15
+ regular: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.25c.866 0 1.68.407 2.2 1.1l.3.4c.236.315.607.5 1 .5h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18V6A2.75 2.75 0 0 1 5 3.25zm2.03 6.22a.75.75 0 0 0-1.06 0l-2.647 2.646a1.25 1.25 0 0 0 0 1.768L9.47 16.53a.75.75 0 1 0 1.06-1.06L8.06 13l2.47-2.47a.75.75 0 0 0 0-1.06m4 0a.75.75 0 1 0-1.06 1.06L15.94 13l-2.47 2.47a.75.75 0 1 0 1.06 1.06l2.647-2.646a1.25 1.25 0 0 0 0-1.768z" clip-rule="evenodd"/>`,
16
+ bold: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3zm2.207 6.293a1 1 0 0 0-1.414 0L6.646 11.94a1.5 1.5 0 0 0 0 2.12l2.647 2.647a1 1 0 1 0 1.414-1.414L8.414 13l2.293-2.293a1 1 0 0 0 0-1.414m4 0a1 1 0 1 0-1.414 1.414L15.586 13l-2.293 2.293a1 1 0 1 0 1.414 1.414l2.646-2.647a1.5 1.5 0 0 0 0-2.12z" clip-rule="evenodd"/>`
17
+ }
18
+ });
19
+ export {
20
+ IconFolderCode
21
+ };
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var folder_minus_exports = {};
20
+ __export(folder_minus_exports, {
21
+ IconFolderMinus: () => IconFolderMinus
22
+ });
23
+ module.exports = __toCommonJS(folder_minus_exports);
24
+ var import_createIcon = require("../createIcon");
25
+ const IconFolderMinus = /* @__PURE__ */ (0, import_createIcon.createIcon)("folder-minus", {
26
+ line: {
27
+ light: `<path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18M15 12.5a.5.5 0 0 1 0 1H9a.5.5 0 0 1 0-1zM3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
28
+ regular: `<path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18M15 12.25a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1 0-1.5zM3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
29
+ bold: `<path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m13-6a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2zM4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
30
+ },
31
+ duotone: {
32
+ light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.5 18V6A2.5 2.5 0 0 1 5 3.5h3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18M15 12.5a.5.5 0 0 1 0 1H9a.5.5 0 0 1 0-1zM3.5 18A1.5 1.5 0 0 0 5 19.5h14a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 19 6.5h-7a2.5 2.5 0 0 1-2-1l-.3-.4a1.5 1.5 0 0 0-1.2-.6H5A1.5 1.5 0 0 0 3.5 6z"/>`,
33
+ regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2.25 18V6A2.75 2.75 0 0 1 5 3.25h3.5c.866 0 1.68.407 2.2 1.1l.3.4.095.112c.234.246.56.388.905.388h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18M15 12.25a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1 0-1.5zM3.75 18c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V8c0-.69-.56-1.25-1.25-1.25h-7a2.75 2.75 0 0 1-2.2-1.1l-.3-.4a1.25 1.25 0 0 0-1-.5H5c-.69 0-1.25.56-1.25 1.25z"/>`,
34
+ bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M3 6a2 2 0 0 1 2-2h3.5a2 2 0 0 1 1.6.8l.3.4A2 2 0 0 0 12 6h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M2 18V6a3 3 0 0 1 3-3h3.5a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3m13-6a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2zM4 18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-7a3 3 0 0 1-2.4-1.2l-.3-.4a1 1 0 0 0-.8-.4H5a1 1 0 0 0-1 1z"/>`
35
+ },
36
+ solid: {
37
+ light: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.5a2.5 2.5 0 0 1 2 1l.3.4a1.5 1.5 0 0 0 1.2.6h7A2.5 2.5 0 0 1 21.5 8v10a2.5 2.5 0 0 1-2.5 2.5H5A2.5 2.5 0 0 1 2.5 18V6A2.5 2.5 0 0 1 5 3.5zm.5 9a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1z" clip-rule="evenodd"/>`,
38
+ regular: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3.25c.866 0 1.68.407 2.2 1.1l.3.4c.236.315.607.5 1 .5h7A2.75 2.75 0 0 1 21.75 8v10A2.75 2.75 0 0 1 19 20.75H5A2.75 2.75 0 0 1 2.25 18V6A2.75 2.75 0 0 1 5 3.25zm.5 9a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5z" clip-rule="evenodd"/>`,
39
+ bold: `<path fill="currentColor" fill-rule="evenodd" d="M8.5 3a3 3 0 0 1 2.4 1.2l.3.4a1 1 0 0 0 .8.4h7a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3zm.5 9a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2z" clip-rule="evenodd"/>`
40
+ }
41
+ });
42
+ // Annotate the CommonJS export names for ESM import in node:
43
+ 0 && (module.exports = {
44
+ IconFolderMinus
45
+ });