@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.
- package/dist/icons/book-open-text.cjs +45 -0
- package/dist/icons/book-open-text.d.cts +56 -0
- package/dist/icons/book-open-text.d.ts +56 -0
- package/dist/icons/book-open-text.js +21 -0
- package/dist/icons/book-open.cjs +45 -0
- package/dist/icons/book-open.d.cts +56 -0
- package/dist/icons/book-open.d.ts +56 -0
- package/dist/icons/book-open.js +21 -0
- package/dist/icons/book.cjs +45 -0
- package/dist/icons/book.d.cts +56 -0
- package/dist/icons/book.d.ts +56 -0
- package/dist/icons/book.js +21 -0
- package/dist/icons/bookmark.cjs +45 -0
- package/dist/icons/bookmark.d.cts +56 -0
- package/dist/icons/bookmark.d.ts +56 -0
- package/dist/icons/bookmark.js +21 -0
- package/dist/icons/chevron-right.cjs +2 -2
- package/dist/icons/chevron-right.js +2 -2
- package/dist/icons/folder-check.cjs +45 -0
- package/dist/icons/folder-check.d.cts +56 -0
- package/dist/icons/folder-check.d.ts +56 -0
- package/dist/icons/folder-check.js +21 -0
- package/dist/icons/folder-code.cjs +45 -0
- package/dist/icons/folder-code.d.cts +56 -0
- package/dist/icons/folder-code.d.ts +56 -0
- package/dist/icons/folder-code.js +21 -0
- package/dist/icons/folder-minus.cjs +45 -0
- package/dist/icons/folder-minus.d.cts +56 -0
- package/dist/icons/folder-minus.d.ts +56 -0
- package/dist/icons/folder-minus.js +21 -0
- package/dist/icons/folder-open.cjs +45 -0
- package/dist/icons/folder-open.d.cts +56 -0
- package/dist/icons/folder-open.d.ts +56 -0
- package/dist/icons/folder-open.js +21 -0
- package/dist/icons/folder-plus.cjs +45 -0
- package/dist/icons/folder-plus.d.cts +56 -0
- package/dist/icons/folder-plus.d.ts +56 -0
- package/dist/icons/folder-plus.js +21 -0
- package/dist/icons/folder-x.cjs +45 -0
- package/dist/icons/folder-x.d.cts +56 -0
- package/dist/icons/folder-x.d.ts +56 -0
- package/dist/icons/folder-x.js +21 -0
- package/dist/icons/folder.cjs +45 -0
- package/dist/icons/folder.d.cts +56 -0
- package/dist/icons/folder.d.ts +56 -0
- package/dist/icons/folder.js +21 -0
- package/dist/icons/share.cjs +1 -1
- package/dist/icons/share.js +1 -1
- package/dist/icons/triangle-dashed.cjs +2 -2
- package/dist/icons/triangle-dashed.js +2 -2
- package/dist/icons/triangle.cjs +1 -1
- package/dist/icons/triangle.js +1 -1
- package/dist/index.cjs +33 -0
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +22 -0
- package/package.json +1 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { IconVariant, IconWeight } from '../types.js';
|
|
3
|
+
|
|
4
|
+
declare const IconFolderX: 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 { IconFolderX };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { createIcon } from "../createIcon";
|
|
2
|
+
const IconFolderX = /* @__PURE__ */ createIcon("folder-x", {
|
|
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 18m11.268-7.475a.501.501 0 0 1 .708.707L12.707 13l1.769 1.768a.5.5 0 0 1-.708.707L12 13.707l-1.768 1.768a.5.5 0 1 1-.707-.707L11.293 13l-1.768-1.768a.5.5 0 0 1 .707-.707L12 12.292zM3.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 18m11.34-7.651a.751.751 0 0 1 1.062 1.06L13.061 13l1.591 1.59a.75.75 0 0 1-1.061 1.061L12 14.061l-1.59 1.59a.75.75 0 1 1-1.061-1.06L10.939 13l-1.59-1.59a.75.75 0 0 1 1.06-1.061L12 11.939zM3.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-3m11.414-7.828a1 1 0 0 1 1.415 1.414L13.414 13l1.415 1.414a1 1 0 0 1-1.415 1.414L12 14.414l-1.414 1.414a1 1 0 1 1-1.414-1.414L10.586 13l-1.414-1.414a1 1 0 0 1 1.414-1.414L12 11.585zM4 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 18m11.268-7.475a.501.501 0 0 1 .708.707L12.707 13l1.769 1.768a.5.5 0 0 1-.708.707L12 13.707l-1.768 1.768a.5.5 0 1 1-.707-.707L11.293 13l-1.768-1.768a.5.5 0 0 1 .707-.707L12 12.292zM3.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 18m11.34-7.651a.751.751 0 0 1 1.062 1.06L13.061 13l1.591 1.59a.75.75 0 0 1-1.061 1.061L12 14.061l-1.59 1.59a.75.75 0 1 1-1.061-1.06L10.939 13l-1.59-1.59a.75.75 0 0 1 1.06-1.061L12 11.939zM3.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-3m11.414-7.828a1 1 0 0 1 1.415 1.414L13.414 13l1.415 1.414a1 1 0 0 1-1.415 1.414L12 14.414l-1.414 1.414a1 1 0 1 1-1.414-1.414L10.586 13l-1.414-1.414a1 1 0 0 1 1.414-1.414L12 11.585zM4 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.5zm5.976 7.025a.5.5 0 0 0-.708 0L12 12.292l-1.768-1.767a.5.5 0 1 0-.707.707L11.293 13l-1.768 1.768a.5.5 0 0 0 .707.707L12 13.707l1.768 1.768a.501.501 0 0 0 .708-.707L12.707 13l1.769-1.768a.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.25zm6.152 7.099a.75.75 0 0 0-1.061 0L12 11.939l-1.59-1.59a.75.75 0 1 0-1.061 1.06L10.939 13l-1.59 1.59a.75.75 0 0 0 1.06 1.061L12 14.061l1.59 1.59a.751.751 0 0 0 1.062-1.06L13.061 13l1.591-1.59a.75.75 0 0 0 0-1.061" 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-3zm6.33 7.172a1 1 0 0 0-1.416 0L12 11.585l-1.414-1.413a1 1 0 1 0-1.414 1.414L10.586 13l-1.414 1.414a1 1 0 0 0 1.414 1.414L12 14.414l1.414 1.414a1.001 1.001 0 0 0 1.415-1.414L13.414 13l1.415-1.414a1 1 0 0 0 0-1.414" clip-rule="evenodd"/>`
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
export {
|
|
20
|
+
IconFolderX
|
|
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_exports = {};
|
|
20
|
+
__export(folder_exports, {
|
|
21
|
+
IconFolder: () => IconFolder
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(folder_exports);
|
|
24
|
+
var import_createIcon = require("../createIcon");
|
|
25
|
+
const IconFolder = /* @__PURE__ */ (0, import_createIcon.createIcon)("folder", {
|
|
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 18M17 9.5a.5.5 0 0 1 0 1H7a.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 18M17 9.25a.75.75 0 0 1 0 1.5H7a.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-3m15-9a1 1 0 1 1 0 2H7a1 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 18M17 9.5a.5.5 0 0 1 0 1H7a.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 18M17 9.25a.75.75 0 0 1 0 1.5H7a.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-3m15-9a1 1 0 1 1 0 2H7a1 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.5zM7 9.5a.5.5 0 0 0 0 1h10a.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-1.5 6a.75.75 0 0 0 0 1.5h10a.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-3zM7 9a1 1 0 0 0 0 2h10a1 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
|
+
IconFolder
|
|
45
|
+
});
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { IconVariant, IconWeight } from '../types.cjs';
|
|
3
|
+
|
|
4
|
+
declare const IconFolder: 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 { IconFolder };
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { IconVariant, IconWeight } from '../types.js';
|
|
3
|
+
|
|
4
|
+
declare const IconFolder: 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 { IconFolder };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { createIcon } from "../createIcon";
|
|
2
|
+
const IconFolder = /* @__PURE__ */ createIcon("folder", {
|
|
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 18M17 9.5a.5.5 0 0 1 0 1H7a.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"/>`,
|
|
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 18M17 9.25a.75.75 0 0 1 0 1.5H7a.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"/>`,
|
|
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-3m15-9a1 1 0 1 1 0 2H7a1 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"/>`
|
|
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 18M17 9.5a.5.5 0 0 1 0 1H7a.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"/>`,
|
|
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 18M17 9.25a.75.75 0 0 1 0 1.5H7a.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"/>`,
|
|
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-3m15-9a1 1 0 1 1 0 2H7a1 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"/>`
|
|
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.5zM7 9.5a.5.5 0 0 0 0 1h10a.5.5 0 0 0 0-1z" 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.25zm-1.5 6a.75.75 0 0 0 0 1.5h10a.75.75 0 0 0 0-1.5z" 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 9a1 1 0 0 0 0 2h10a1 1 0 1 0 0-2z" clip-rule="evenodd"/>`
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
export {
|
|
20
|
+
IconFolder
|
|
21
|
+
};
|
package/dist/icons/share.cjs
CHANGED
|
@@ -35,7 +35,7 @@ const IconShare = /* @__PURE__ */ (0, import_createIcon.createIcon)("share", {
|
|
|
35
35
|
},
|
|
36
36
|
solid: {
|
|
37
37
|
light: `<path fill="currentColor" d="M9.5 16a2.5 2.5 0 0 0 5 0V8H18a2.5 2.5 0 0 1 2.5 2.5V19a2.5 2.5 0 0 1-2.5 2.5H6A2.5 2.5 0 0 1 3.5 19v-8.5A2.5 2.5 0 0 1 6 8h3.5z"/><path fill="currentColor" d="M11.293 2a1 1 0 0 1 1.414 0l2.646 2.646a.5.5 0 0 1-.707.707L12.5 3.207V16a.5.5 0 0 1-1 0V3.207L9.354 5.353a.5.5 0 1 1-.708-.707z"/>`,
|
|
38
|
-
regular: `<path fill="currentColor" d="M9.25 16a2.75 2.75 0 0 0 5.5 0V7.75H18a2.75 2.75 0 0 1 2.75 2.75V19A2.75 2.75 0 0 1 18 21.75H6A2.75 2.75 0 0 1 3.25 19v-8.5A2.75 2.75 0 0 1 6 7.75h3.25z"/><path fill="currentColor" d="M11.21 1.738a1.25 1.25 0 0 1 1.674.086L15.53 4.47a.75.75 0 0 1-1.06 1.06l-1.72-1.
|
|
38
|
+
regular: `<path fill="currentColor" d="M9.25 16a2.75 2.75 0 0 0 5.5 0V7.75H18a2.75 2.75 0 0 1 2.75 2.75V19A2.75 2.75 0 0 1 18 21.75H6A2.75 2.75 0 0 1 3.25 19v-8.5A2.75 2.75 0 0 1 6 7.75h3.25z"/><path fill="currentColor" d="M11.21 1.738a1.25 1.25 0 0 1 1.674.086L15.53 4.47a.75.75 0 0 1-1.06 1.06l-1.72-1.719v12.19a.75.75 0 0 1-1.5 0V3.81L9.53 5.53a.75.75 0 0 1-1.06-1.06l2.646-2.647z"/>`,
|
|
39
39
|
bold: `<path fill="currentColor" d="M9 16a3 3 0 0 0 6 0V7.5h3a3 3 0 0 1 3 3V19a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-8.5a3 3 0 0 1 3-3h3z"/><path fill="currentColor" d="M11.054 1.544a1.5 1.5 0 0 1 2.006.103l2.647 2.646a1 1 0 0 1-1.414 1.414L13 4.414V16a1 1 0 0 1-2 0V4.414L9.707 5.707a1 1 0 0 1-1.414-1.414l2.647-2.646z"/>`
|
|
40
40
|
}
|
|
41
41
|
});
|
package/dist/icons/share.js
CHANGED
|
@@ -12,7 +12,7 @@ const IconShare = /* @__PURE__ */ createIcon("share", {
|
|
|
12
12
|
},
|
|
13
13
|
solid: {
|
|
14
14
|
light: `<path fill="currentColor" d="M9.5 16a2.5 2.5 0 0 0 5 0V8H18a2.5 2.5 0 0 1 2.5 2.5V19a2.5 2.5 0 0 1-2.5 2.5H6A2.5 2.5 0 0 1 3.5 19v-8.5A2.5 2.5 0 0 1 6 8h3.5z"/><path fill="currentColor" d="M11.293 2a1 1 0 0 1 1.414 0l2.646 2.646a.5.5 0 0 1-.707.707L12.5 3.207V16a.5.5 0 0 1-1 0V3.207L9.354 5.353a.5.5 0 1 1-.708-.707z"/>`,
|
|
15
|
-
regular: `<path fill="currentColor" d="M9.25 16a2.75 2.75 0 0 0 5.5 0V7.75H18a2.75 2.75 0 0 1 2.75 2.75V19A2.75 2.75 0 0 1 18 21.75H6A2.75 2.75 0 0 1 3.25 19v-8.5A2.75 2.75 0 0 1 6 7.75h3.25z"/><path fill="currentColor" d="M11.21 1.738a1.25 1.25 0 0 1 1.674.086L15.53 4.47a.75.75 0 0 1-1.06 1.06l-1.72-1.
|
|
15
|
+
regular: `<path fill="currentColor" d="M9.25 16a2.75 2.75 0 0 0 5.5 0V7.75H18a2.75 2.75 0 0 1 2.75 2.75V19A2.75 2.75 0 0 1 18 21.75H6A2.75 2.75 0 0 1 3.25 19v-8.5A2.75 2.75 0 0 1 6 7.75h3.25z"/><path fill="currentColor" d="M11.21 1.738a1.25 1.25 0 0 1 1.674.086L15.53 4.47a.75.75 0 0 1-1.06 1.06l-1.72-1.719v12.19a.75.75 0 0 1-1.5 0V3.81L9.53 5.53a.75.75 0 0 1-1.06-1.06l2.646-2.647z"/>`,
|
|
16
16
|
bold: `<path fill="currentColor" d="M9 16a3 3 0 0 0 6 0V7.5h3a3 3 0 0 1 3 3V19a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-8.5a3 3 0 0 1 3-3h3z"/><path fill="currentColor" d="M11.054 1.544a1.5 1.5 0 0 1 2.006.103l2.647 2.646a1 1 0 0 1-1.414 1.414L13 4.414V16a1 1 0 0 1-2 0V4.414L9.707 5.707a1 1 0 0 1-1.414-1.414l2.647-2.646z"/>`
|
|
17
17
|
}
|
|
18
18
|
});
|
|
@@ -35,8 +35,8 @@ const IconTriangleDashed = /* @__PURE__ */ (0, import_createIcon.createIcon)("tr
|
|
|
35
35
|
},
|
|
36
36
|
solid: {
|
|
37
37
|
light: `<path fill="currentColor" fill-rule="evenodd" d="M10.285 4.387c.777-1.295 2.653-1.295 3.43 0l7.85 13.084c.8 1.333-.16 3.029-1.714 3.029H4.149c-1.554 0-2.514-1.696-1.714-3.03zM6.251 15.969a.5.5 0 0 0-.687.17l-.506.845a1 1 0 0 0 .857 1.515H6.93a.5.5 0 0 0 0-1H5.915l.508-.845a.5.5 0 0 0-.172-.685m4.734 1.53a.501.501 0 0 0 0 1h2.029a.5.5 0 0 0 0-1zm7.449-1.36a.5.5 0 0 0-.858.515l.507.845H17.07a.501.501 0 0 0 0 1h1.014a1 1 0 0 0 .858-1.515zM9.293 10.9a.5.5 0 0 0-.686.171l-1.014 1.69a.501.501 0 0 0 .857.514l1.015-1.689a.5.5 0 0 0-.172-.687m6.099.171a.501.501 0 0 0-.858.515l1.015 1.69a.5.5 0 1 0 .857-.515zm-2.534-4.224a1 1 0 0 0-1.716 0l-.507.844a.501.501 0 0 0 .857.515L12 7.36l.507.845a.5.5 0 1 0 .857-.515z" clip-rule="evenodd"/>`,
|
|
38
|
-
regular: `<path fill="currentColor" fill-rule="evenodd" d="M10.07 4.
|
|
39
|
-
bold: `<path fill="currentColor" fill-rule="evenodd" d="M9.857 4.
|
|
38
|
+
regular: `<path fill="currentColor" fill-rule="evenodd" d="M10.07 4.258c.875-1.456 2.986-1.456 3.86 0l7.85 13.085c.9 1.5-.18 3.407-1.929 3.408H4.15c-1.749 0-2.83-1.908-1.93-3.408zM6.38 15.755a.75.75 0 0 0-1.029.256l-.507.846c-.5.833.1 1.892 1.071 1.893H6.93a.75.75 0 0 0 0-1.5h-.572l.28-.466a.75.75 0 0 0-.258-1.03m4.606 1.495a.75.75 0 0 0 0 1.5h2.028a.75.75 0 0 0 0-1.5zm7.663-1.239a.751.751 0 0 0-1.286.773l.279.466h-.572a.75.75 0 0 0 0 1.5h1.013a1.25 1.25 0 0 0 1.073-1.893zm-9.227-5.326a.75.75 0 0 0-1.029.257l-1.014 1.69a.75.75 0 0 0 1.286.772l1.014-1.69a.75.75 0 0 0-.257-1.029m6.185.257a.75.75 0 0 0-1.286.772l1.013 1.69a.75.75 0 0 0 1.287-.772zm-2.535-4.225a1.25 1.25 0 0 0-2.045-.141l-.099.141-.507.846a.75.75 0 0 0 1.286.772L12 7.846l.293.489a.75.75 0 0 0 1.287-.772z" clip-rule="evenodd"/>`,
|
|
39
|
+
bold: `<path fill="currentColor" fill-rule="evenodd" d="M9.857 4.128c.97-1.617 3.316-1.617 4.287 0l7.85 13.085c1 1.666-.2 3.786-2.143 3.787H4.15c-1.944 0-3.144-2.12-2.144-3.787zM6.508 15.541a1 1 0 0 0-1.372.342l-.507.845a1.5 1.5 0 0 0 1.286 2.271H6.93a1 1 0 0 0 0-2H6.8l.052-.087a1 1 0 0 0-.344-1.371M10.986 17a1 1 0 0 0 0 2h2.028a1 1 0 0 0 0-2zm7.877-1.117a1 1 0 0 0-1.715 1.029L17.2 17h-.13a1 1 0 0 0 0 2h1.013a1.5 1.5 0 0 0 1.286-2.272zM9.55 10.47a1 1 0 0 0-1.371.344l-1.015 1.69a1 1 0 0 0 1.715 1.029l1.015-1.69a1 1 0 0 0-.344-1.373m6.27.344a1 1 0 0 0-1.714 1.028l1.014 1.69a1 1 0 0 0 1.715-1.029zm-2.653-4.396a1.502 1.502 0 0 0-2.335 0l-.119.171-.507.845a1 1 0 0 0 1.715 1.03L12 8.331l.08.131a1 1 0 0 0 1.714-1.029l-.507-.845z" clip-rule="evenodd"/>`
|
|
40
40
|
}
|
|
41
41
|
});
|
|
42
42
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -12,8 +12,8 @@ const IconTriangleDashed = /* @__PURE__ */ createIcon("triangle-dashed", {
|
|
|
12
12
|
},
|
|
13
13
|
solid: {
|
|
14
14
|
light: `<path fill="currentColor" fill-rule="evenodd" d="M10.285 4.387c.777-1.295 2.653-1.295 3.43 0l7.85 13.084c.8 1.333-.16 3.029-1.714 3.029H4.149c-1.554 0-2.514-1.696-1.714-3.03zM6.251 15.969a.5.5 0 0 0-.687.17l-.506.845a1 1 0 0 0 .857 1.515H6.93a.5.5 0 0 0 0-1H5.915l.508-.845a.5.5 0 0 0-.172-.685m4.734 1.53a.501.501 0 0 0 0 1h2.029a.5.5 0 0 0 0-1zm7.449-1.36a.5.5 0 0 0-.858.515l.507.845H17.07a.501.501 0 0 0 0 1h1.014a1 1 0 0 0 .858-1.515zM9.293 10.9a.5.5 0 0 0-.686.171l-1.014 1.69a.501.501 0 0 0 .857.514l1.015-1.689a.5.5 0 0 0-.172-.687m6.099.171a.501.501 0 0 0-.858.515l1.015 1.69a.5.5 0 1 0 .857-.515zm-2.534-4.224a1 1 0 0 0-1.716 0l-.507.844a.501.501 0 0 0 .857.515L12 7.36l.507.845a.5.5 0 1 0 .857-.515z" clip-rule="evenodd"/>`,
|
|
15
|
-
regular: `<path fill="currentColor" fill-rule="evenodd" d="M10.07 4.
|
|
16
|
-
bold: `<path fill="currentColor" fill-rule="evenodd" d="M9.857 4.
|
|
15
|
+
regular: `<path fill="currentColor" fill-rule="evenodd" d="M10.07 4.258c.875-1.456 2.986-1.456 3.86 0l7.85 13.085c.9 1.5-.18 3.407-1.929 3.408H4.15c-1.749 0-2.83-1.908-1.93-3.408zM6.38 15.755a.75.75 0 0 0-1.029.256l-.507.846c-.5.833.1 1.892 1.071 1.893H6.93a.75.75 0 0 0 0-1.5h-.572l.28-.466a.75.75 0 0 0-.258-1.03m4.606 1.495a.75.75 0 0 0 0 1.5h2.028a.75.75 0 0 0 0-1.5zm7.663-1.239a.751.751 0 0 0-1.286.773l.279.466h-.572a.75.75 0 0 0 0 1.5h1.013a1.25 1.25 0 0 0 1.073-1.893zm-9.227-5.326a.75.75 0 0 0-1.029.257l-1.014 1.69a.75.75 0 0 0 1.286.772l1.014-1.69a.75.75 0 0 0-.257-1.029m6.185.257a.75.75 0 0 0-1.286.772l1.013 1.69a.75.75 0 0 0 1.287-.772zm-2.535-4.225a1.25 1.25 0 0 0-2.045-.141l-.099.141-.507.846a.75.75 0 0 0 1.286.772L12 7.846l.293.489a.75.75 0 0 0 1.287-.772z" clip-rule="evenodd"/>`,
|
|
16
|
+
bold: `<path fill="currentColor" fill-rule="evenodd" d="M9.857 4.128c.97-1.617 3.316-1.617 4.287 0l7.85 13.085c1 1.666-.2 3.786-2.143 3.787H4.15c-1.944 0-3.144-2.12-2.144-3.787zM6.508 15.541a1 1 0 0 0-1.372.342l-.507.845a1.5 1.5 0 0 0 1.286 2.271H6.93a1 1 0 0 0 0-2H6.8l.052-.087a1 1 0 0 0-.344-1.371M10.986 17a1 1 0 0 0 0 2h2.028a1 1 0 0 0 0-2zm7.877-1.117a1 1 0 0 0-1.715 1.029L17.2 17h-.13a1 1 0 0 0 0 2h1.013a1.5 1.5 0 0 0 1.286-2.272zM9.55 10.47a1 1 0 0 0-1.371.344l-1.015 1.69a1 1 0 0 0 1.715 1.029l1.015-1.69a1 1 0 0 0-.344-1.373m6.27.344a1 1 0 0 0-1.714 1.028l1.014 1.69a1 1 0 0 0 1.715-1.029zm-2.653-4.396a1.502 1.502 0 0 0-2.335 0l-.119.171-.507.845a1 1 0 0 0 1.715 1.03L12 8.331l.08.131a1 1 0 0 0 1.714-1.029l-.507-.845z" clip-rule="evenodd"/>`
|
|
17
17
|
}
|
|
18
18
|
});
|
|
19
19
|
export {
|
package/dist/icons/triangle.cjs
CHANGED
|
@@ -35,7 +35,7 @@ const IconTriangle = /* @__PURE__ */ (0, import_createIcon.createIcon)("triangle
|
|
|
35
35
|
},
|
|
36
36
|
solid: {
|
|
37
37
|
light: `<path fill="currentColor" d="M10.285 4.387c.777-1.295 2.653-1.295 3.43 0l7.85 13.084c.8 1.333-.16 3.029-1.714 3.029H4.149c-1.554 0-2.514-1.696-1.714-3.03z"/>`,
|
|
38
|
-
regular: `<path fill="currentColor" d="M10.07 4.
|
|
38
|
+
regular: `<path fill="currentColor" d="M10.07 4.258c.875-1.456 2.986-1.456 3.86 0l7.85 13.085c.9 1.5-.181 3.407-1.929 3.408H4.15c-1.749 0-2.83-1.908-1.93-3.408z"/>`,
|
|
39
39
|
bold: `<path fill="currentColor" d="M9.857 4.13c.97-1.618 3.316-1.618 4.287 0l7.85 13.085c1 1.666-.2 3.785-2.143 3.786H4.15c-1.943 0-3.143-2.12-2.144-3.786z"/>`
|
|
40
40
|
}
|
|
41
41
|
});
|
package/dist/icons/triangle.js
CHANGED
|
@@ -12,7 +12,7 @@ const IconTriangle = /* @__PURE__ */ createIcon("triangle", {
|
|
|
12
12
|
},
|
|
13
13
|
solid: {
|
|
14
14
|
light: `<path fill="currentColor" d="M10.285 4.387c.777-1.295 2.653-1.295 3.43 0l7.85 13.084c.8 1.333-.16 3.029-1.714 3.029H4.149c-1.554 0-2.514-1.696-1.714-3.03z"/>`,
|
|
15
|
-
regular: `<path fill="currentColor" d="M10.07 4.
|
|
15
|
+
regular: `<path fill="currentColor" d="M10.07 4.258c.875-1.456 2.986-1.456 3.86 0l7.85 13.085c.9 1.5-.181 3.407-1.929 3.408H4.15c-1.749 0-2.83-1.908-1.93-3.408z"/>`,
|
|
16
16
|
bold: `<path fill="currentColor" d="M9.857 4.13c.97-1.618 3.316-1.618 4.287 0l7.85 13.085c1 1.666-.2 3.785-2.143 3.786H4.15c-1.943 0-3.143-2.12-2.144-3.786z"/>`
|
|
17
17
|
}
|
|
18
18
|
});
|
package/dist/index.cjs
CHANGED
|
@@ -54,6 +54,10 @@ __export(index_exports, {
|
|
|
54
54
|
IconArrowUp: () => import_arrow_up.IconArrowUp,
|
|
55
55
|
IconArrowUpLeft: () => import_arrow_up_left.IconArrowUpLeft,
|
|
56
56
|
IconArrowUpRight: () => import_arrow_up_right.IconArrowUpRight,
|
|
57
|
+
IconBook: () => import_book.IconBook,
|
|
58
|
+
IconBookOpen: () => import_book_open.IconBookOpen,
|
|
59
|
+
IconBookOpenText: () => import_book_open_text.IconBookOpenText,
|
|
60
|
+
IconBookmark: () => import_bookmark.IconBookmark,
|
|
57
61
|
IconCalendar: () => import_calendar.IconCalendar,
|
|
58
62
|
IconCalendarBlank: () => import_calendar_blank.IconCalendarBlank,
|
|
59
63
|
IconCalendarCheck: () => import_calendar_check.IconCalendarCheck,
|
|
@@ -100,6 +104,13 @@ __export(index_exports, {
|
|
|
100
104
|
IconFileText: () => import_file_text.IconFileText,
|
|
101
105
|
IconFileX: () => import_file_x.IconFileX,
|
|
102
106
|
IconFilter: () => import_filter.IconFilter,
|
|
107
|
+
IconFolder: () => import_folder.IconFolder,
|
|
108
|
+
IconFolderCheck: () => import_folder_check.IconFolderCheck,
|
|
109
|
+
IconFolderCode: () => import_folder_code.IconFolderCode,
|
|
110
|
+
IconFolderMinus: () => import_folder_minus.IconFolderMinus,
|
|
111
|
+
IconFolderOpen: () => import_folder_open.IconFolderOpen,
|
|
112
|
+
IconFolderPlus: () => import_folder_plus.IconFolderPlus,
|
|
113
|
+
IconFolderX: () => import_folder_x.IconFolderX,
|
|
103
114
|
IconGear: () => import_gear.IconGear,
|
|
104
115
|
IconGraduationCap: () => import_graduation_cap.IconGraduationCap,
|
|
105
116
|
IconHouse: () => import_house.IconHouse,
|
|
@@ -185,6 +196,10 @@ var import_arrow_square_up_right = require("./icons/arrow-square-up-right");
|
|
|
185
196
|
var import_arrow_up = require("./icons/arrow-up");
|
|
186
197
|
var import_arrow_up_left = require("./icons/arrow-up-left");
|
|
187
198
|
var import_arrow_up_right = require("./icons/arrow-up-right");
|
|
199
|
+
var import_book = require("./icons/book");
|
|
200
|
+
var import_book_open = require("./icons/book-open");
|
|
201
|
+
var import_book_open_text = require("./icons/book-open-text");
|
|
202
|
+
var import_bookmark = require("./icons/bookmark");
|
|
188
203
|
var import_calendar = require("./icons/calendar");
|
|
189
204
|
var import_calendar_blank = require("./icons/calendar-blank");
|
|
190
205
|
var import_calendar_check = require("./icons/calendar-check");
|
|
@@ -231,6 +246,13 @@ var import_file_plus = require("./icons/file-plus");
|
|
|
231
246
|
var import_file_text = require("./icons/file-text");
|
|
232
247
|
var import_file_x = require("./icons/file-x");
|
|
233
248
|
var import_filter = require("./icons/filter");
|
|
249
|
+
var import_folder = require("./icons/folder");
|
|
250
|
+
var import_folder_check = require("./icons/folder-check");
|
|
251
|
+
var import_folder_code = require("./icons/folder-code");
|
|
252
|
+
var import_folder_minus = require("./icons/folder-minus");
|
|
253
|
+
var import_folder_open = require("./icons/folder-open");
|
|
254
|
+
var import_folder_plus = require("./icons/folder-plus");
|
|
255
|
+
var import_folder_x = require("./icons/folder-x");
|
|
234
256
|
var import_gear = require("./icons/gear");
|
|
235
257
|
var import_graduation_cap = require("./icons/graduation-cap");
|
|
236
258
|
var import_house = require("./icons/house");
|
|
@@ -314,6 +336,10 @@ var import_x_square = require("./icons/x-square");
|
|
|
314
336
|
IconArrowUp,
|
|
315
337
|
IconArrowUpLeft,
|
|
316
338
|
IconArrowUpRight,
|
|
339
|
+
IconBook,
|
|
340
|
+
IconBookOpen,
|
|
341
|
+
IconBookOpenText,
|
|
342
|
+
IconBookmark,
|
|
317
343
|
IconCalendar,
|
|
318
344
|
IconCalendarBlank,
|
|
319
345
|
IconCalendarCheck,
|
|
@@ -360,6 +386,13 @@ var import_x_square = require("./icons/x-square");
|
|
|
360
386
|
IconFileText,
|
|
361
387
|
IconFileX,
|
|
362
388
|
IconFilter,
|
|
389
|
+
IconFolder,
|
|
390
|
+
IconFolderCheck,
|
|
391
|
+
IconFolderCode,
|
|
392
|
+
IconFolderMinus,
|
|
393
|
+
IconFolderOpen,
|
|
394
|
+
IconFolderPlus,
|
|
395
|
+
IconFolderX,
|
|
363
396
|
IconGear,
|
|
364
397
|
IconGraduationCap,
|
|
365
398
|
IconHouse,
|
package/dist/index.d.cts
CHANGED
|
@@ -36,6 +36,10 @@ export { IconArrowSquareUpRight } from './icons/arrow-square-up-right.cjs';
|
|
|
36
36
|
export { IconArrowUp } from './icons/arrow-up.cjs';
|
|
37
37
|
export { IconArrowUpLeft } from './icons/arrow-up-left.cjs';
|
|
38
38
|
export { IconArrowUpRight } from './icons/arrow-up-right.cjs';
|
|
39
|
+
export { IconBook } from './icons/book.cjs';
|
|
40
|
+
export { IconBookOpen } from './icons/book-open.cjs';
|
|
41
|
+
export { IconBookOpenText } from './icons/book-open-text.cjs';
|
|
42
|
+
export { IconBookmark } from './icons/bookmark.cjs';
|
|
39
43
|
export { IconCalendar } from './icons/calendar.cjs';
|
|
40
44
|
export { IconCalendarBlank } from './icons/calendar-blank.cjs';
|
|
41
45
|
export { IconCalendarCheck } from './icons/calendar-check.cjs';
|
|
@@ -82,6 +86,13 @@ export { IconFilePlus } from './icons/file-plus.cjs';
|
|
|
82
86
|
export { IconFileText } from './icons/file-text.cjs';
|
|
83
87
|
export { IconFileX } from './icons/file-x.cjs';
|
|
84
88
|
export { IconFilter } from './icons/filter.cjs';
|
|
89
|
+
export { IconFolder } from './icons/folder.cjs';
|
|
90
|
+
export { IconFolderCheck } from './icons/folder-check.cjs';
|
|
91
|
+
export { IconFolderCode } from './icons/folder-code.cjs';
|
|
92
|
+
export { IconFolderMinus } from './icons/folder-minus.cjs';
|
|
93
|
+
export { IconFolderOpen } from './icons/folder-open.cjs';
|
|
94
|
+
export { IconFolderPlus } from './icons/folder-plus.cjs';
|
|
95
|
+
export { IconFolderX } from './icons/folder-x.cjs';
|
|
85
96
|
export { IconGear } from './icons/gear.cjs';
|
|
86
97
|
export { IconGraduationCap } from './icons/graduation-cap.cjs';
|
|
87
98
|
export { IconHouse } from './icons/house.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,10 @@ export { IconArrowSquareUpRight } from './icons/arrow-square-up-right.js';
|
|
|
36
36
|
export { IconArrowUp } from './icons/arrow-up.js';
|
|
37
37
|
export { IconArrowUpLeft } from './icons/arrow-up-left.js';
|
|
38
38
|
export { IconArrowUpRight } from './icons/arrow-up-right.js';
|
|
39
|
+
export { IconBook } from './icons/book.js';
|
|
40
|
+
export { IconBookOpen } from './icons/book-open.js';
|
|
41
|
+
export { IconBookOpenText } from './icons/book-open-text.js';
|
|
42
|
+
export { IconBookmark } from './icons/bookmark.js';
|
|
39
43
|
export { IconCalendar } from './icons/calendar.js';
|
|
40
44
|
export { IconCalendarBlank } from './icons/calendar-blank.js';
|
|
41
45
|
export { IconCalendarCheck } from './icons/calendar-check.js';
|
|
@@ -82,6 +86,13 @@ export { IconFilePlus } from './icons/file-plus.js';
|
|
|
82
86
|
export { IconFileText } from './icons/file-text.js';
|
|
83
87
|
export { IconFileX } from './icons/file-x.js';
|
|
84
88
|
export { IconFilter } from './icons/filter.js';
|
|
89
|
+
export { IconFolder } from './icons/folder.js';
|
|
90
|
+
export { IconFolderCheck } from './icons/folder-check.js';
|
|
91
|
+
export { IconFolderCode } from './icons/folder-code.js';
|
|
92
|
+
export { IconFolderMinus } from './icons/folder-minus.js';
|
|
93
|
+
export { IconFolderOpen } from './icons/folder-open.js';
|
|
94
|
+
export { IconFolderPlus } from './icons/folder-plus.js';
|
|
95
|
+
export { IconFolderX } from './icons/folder-x.js';
|
|
85
96
|
export { IconGear } from './icons/gear.js';
|
|
86
97
|
export { IconGraduationCap } from './icons/graduation-cap.js';
|
|
87
98
|
export { IconHouse } from './icons/house.js';
|
package/dist/index.js
CHANGED
|
@@ -35,6 +35,10 @@ import { IconArrowSquareUpRight } from "./icons/arrow-square-up-right";
|
|
|
35
35
|
import { IconArrowUp } from "./icons/arrow-up";
|
|
36
36
|
import { IconArrowUpLeft } from "./icons/arrow-up-left";
|
|
37
37
|
import { IconArrowUpRight } from "./icons/arrow-up-right";
|
|
38
|
+
import { IconBook } from "./icons/book";
|
|
39
|
+
import { IconBookOpen } from "./icons/book-open";
|
|
40
|
+
import { IconBookOpenText } from "./icons/book-open-text";
|
|
41
|
+
import { IconBookmark } from "./icons/bookmark";
|
|
38
42
|
import { IconCalendar } from "./icons/calendar";
|
|
39
43
|
import { IconCalendarBlank } from "./icons/calendar-blank";
|
|
40
44
|
import { IconCalendarCheck } from "./icons/calendar-check";
|
|
@@ -81,6 +85,13 @@ import { IconFilePlus } from "./icons/file-plus";
|
|
|
81
85
|
import { IconFileText } from "./icons/file-text";
|
|
82
86
|
import { IconFileX } from "./icons/file-x";
|
|
83
87
|
import { IconFilter } from "./icons/filter";
|
|
88
|
+
import { IconFolder } from "./icons/folder";
|
|
89
|
+
import { IconFolderCheck } from "./icons/folder-check";
|
|
90
|
+
import { IconFolderCode } from "./icons/folder-code";
|
|
91
|
+
import { IconFolderMinus } from "./icons/folder-minus";
|
|
92
|
+
import { IconFolderOpen } from "./icons/folder-open";
|
|
93
|
+
import { IconFolderPlus } from "./icons/folder-plus";
|
|
94
|
+
import { IconFolderX } from "./icons/folder-x";
|
|
84
95
|
import { IconGear } from "./icons/gear";
|
|
85
96
|
import { IconGraduationCap } from "./icons/graduation-cap";
|
|
86
97
|
import { IconHouse } from "./icons/house";
|
|
@@ -163,6 +174,10 @@ export {
|
|
|
163
174
|
IconArrowUp,
|
|
164
175
|
IconArrowUpLeft,
|
|
165
176
|
IconArrowUpRight,
|
|
177
|
+
IconBook,
|
|
178
|
+
IconBookOpen,
|
|
179
|
+
IconBookOpenText,
|
|
180
|
+
IconBookmark,
|
|
166
181
|
IconCalendar,
|
|
167
182
|
IconCalendarBlank,
|
|
168
183
|
IconCalendarCheck,
|
|
@@ -209,6 +224,13 @@ export {
|
|
|
209
224
|
IconFileText,
|
|
210
225
|
IconFileX,
|
|
211
226
|
IconFilter,
|
|
227
|
+
IconFolder,
|
|
228
|
+
IconFolderCheck,
|
|
229
|
+
IconFolderCode,
|
|
230
|
+
IconFolderMinus,
|
|
231
|
+
IconFolderOpen,
|
|
232
|
+
IconFolderPlus,
|
|
233
|
+
IconFolderX,
|
|
212
234
|
IconGear,
|
|
213
235
|
IconGraduationCap,
|
|
214
236
|
IconHouse,
|