@uiuxicons/vue 0.1.3 → 0.2.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.
- package/dist/icons/clipboard-check.cjs +45 -0
- package/dist/icons/clipboard-check.d.cts +56 -0
- package/dist/icons/clipboard-check.d.ts +56 -0
- package/dist/icons/clipboard-check.js +21 -0
- package/dist/icons/clipboard-copy.cjs +45 -0
- package/dist/icons/clipboard-copy.d.cts +56 -0
- package/dist/icons/clipboard-copy.d.ts +56 -0
- package/dist/icons/clipboard-copy.js +21 -0
- package/dist/icons/clipboard-list.cjs +45 -0
- package/dist/icons/clipboard-list.d.cts +56 -0
- package/dist/icons/clipboard-list.d.ts +56 -0
- package/dist/icons/clipboard-list.js +21 -0
- package/dist/icons/clipboard-minus.cjs +45 -0
- package/dist/icons/clipboard-minus.d.cts +56 -0
- package/dist/icons/clipboard-minus.d.ts +56 -0
- package/dist/icons/clipboard-minus.js +21 -0
- package/dist/icons/clipboard-paste.cjs +45 -0
- package/dist/icons/clipboard-paste.d.cts +56 -0
- package/dist/icons/clipboard-paste.d.ts +56 -0
- package/dist/icons/clipboard-paste.js +21 -0
- package/dist/icons/clipboard-plus.cjs +45 -0
- package/dist/icons/clipboard-plus.d.cts +56 -0
- package/dist/icons/clipboard-plus.d.ts +56 -0
- package/dist/icons/clipboard-plus.js +21 -0
- package/dist/icons/clipboard-text.cjs +45 -0
- package/dist/icons/clipboard-text.d.cts +56 -0
- package/dist/icons/clipboard-text.d.ts +56 -0
- package/dist/icons/clipboard-text.js +21 -0
- package/dist/icons/clipboard-x.cjs +45 -0
- package/dist/icons/clipboard-x.d.cts +56 -0
- package/dist/icons/clipboard-x.d.ts +56 -0
- package/dist/icons/clipboard-x.js +21 -0
- package/dist/icons/clipboard.cjs +45 -0
- package/dist/icons/clipboard.d.cts +56 -0
- package/dist/icons/clipboard.d.ts +56 -0
- package/dist/icons/clipboard.js +21 -0
- package/dist/icons/copy.cjs +45 -0
- package/dist/icons/copy.d.cts +56 -0
- package/dist/icons/copy.d.ts +56 -0
- package/dist/icons/copy.js +21 -0
- package/dist/icons/share.cjs +45 -0
- package/dist/icons/share.d.cts +56 -0
- package/dist/icons/share.d.ts +56 -0
- package/dist/icons/share.js +21 -0
- 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 IconClipboardText: 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 { IconClipboardText };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { createIcon } from "../createIcon";
|
|
2
|
+
const IconClipboardText = /* @__PURE__ */ createIcon("clipboard-text", {
|
|
3
|
+
line: {
|
|
4
|
+
light: `<path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-8.5 10a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm5-3.5a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1zm0-3.5a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1zm-6-6a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
5
|
+
regular: `<path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zm-8.25 9.75a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5zm5-3.5a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1 0-1.5zm0-3.5a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1 0-1.5zm-6-5.5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
6
|
+
bold: `<path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zm-8 9.5a1 1 0 1 1 0 2h-2a1 1 0 1 1 0-2zm5-3.5a1 1 0 1 1 0 2h-7a1 1 0 1 1 0-2zm0-3.5a1 1 0 1 1 0 2h-7a1 1 0 1 1 0-2zm-6-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
7
|
+
},
|
|
8
|
+
duotone: {
|
|
9
|
+
light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-8.5 10a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm5-3.5a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1zm0-3.5a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1zm-6-6a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
10
|
+
regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zm-8.25 9.75a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5zm5-3.5a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1 0-1.5zm0-3.5a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1 0-1.5zm-6-5.5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
11
|
+
bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zm-8 9.5a1 1 0 1 1 0 2h-2a1 1 0 1 1 0-2zm5-3.5a1 1 0 1 1 0 2h-7a1 1 0 1 1 0-2zm0-3.5a1 1 0 1 1 0 2h-7a1 1 0 1 1 0-2zm-6-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
12
|
+
},
|
|
13
|
+
solid: {
|
|
14
|
+
light: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5V19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5zm-6 14a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1zm0-3.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1zm0-3.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1zm1-6a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2z" clip-rule="evenodd"/>`,
|
|
15
|
+
regular: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.25c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75V19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5zm-6 14a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5zm0-3.5a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5zm0-3.5a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5zm1-5.5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z" clip-rule="evenodd"/>`,
|
|
16
|
+
bold: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3V19a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2zm-6 14a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2zm0-3.5a1 1 0 1 0 0 2h7a1 1 0 1 0 0-2zm0-3.5a1 1 0 0 0 0 2h7a1 1 0 1 0 0-2zm1-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z" clip-rule="evenodd"/>`
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
export {
|
|
20
|
+
IconClipboardText
|
|
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 clipboard_x_exports = {};
|
|
20
|
+
__export(clipboard_x_exports, {
|
|
21
|
+
IconClipboardX: () => IconClipboardX
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(clipboard_x_exports);
|
|
24
|
+
var import_createIcon = require("../createIcon");
|
|
25
|
+
const IconClipboardX = /* @__PURE__ */ (0, import_createIcon.createIcon)("clipboard-x", {
|
|
26
|
+
line: {
|
|
27
|
+
light: `<path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-5.232 5.025a.501.501 0 0 1 .708.707L12.707 14l1.769 1.768a.5.5 0 0 1-.708.707L12 14.707l-1.768 1.768a.5.5 0 1 1-.707-.707L11.293 14l-1.768-1.768a.5.5 0 0 1 .707-.707L12 13.292zM9.5 3.5a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
28
|
+
regular: `<path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zm-5.16 4.849a.751.751 0 0 1 1.062 1.06L13.061 14l1.591 1.59a.75.75 0 0 1-1.061 1.061L12 15.061l-1.59 1.59a.75.75 0 1 1-1.061-1.06L10.939 14l-1.59-1.59a.75.75 0 0 1 1.06-1.061L12 12.939zM9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
29
|
+
bold: `<path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zm-5.086 4.672a1.001 1.001 0 0 1 1.415 1.414L13.414 14l1.415 1.414a1 1 0 0 1-1.415 1.414L12 15.414l-1.414 1.414a1 1 0 1 1-1.414-1.414L10.586 14l-1.414-1.414a1 1 0 0 1 1.414-1.414L12 12.585zM9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
30
|
+
},
|
|
31
|
+
duotone: {
|
|
32
|
+
light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-5.232 5.025a.501.501 0 0 1 .708.707L12.707 14l1.769 1.768a.5.5 0 0 1-.708.707L12 14.707l-1.768 1.768a.5.5 0 1 1-.707-.707L11.293 14l-1.768-1.768a.5.5 0 0 1 .707-.707L12 13.292zM9.5 3.5a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
33
|
+
regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zm-5.16 4.849a.751.751 0 0 1 1.062 1.06L13.061 14l1.591 1.59a.75.75 0 0 1-1.061 1.061L12 15.061l-1.59 1.59a.75.75 0 1 1-1.061-1.06L10.939 14l-1.59-1.59a.75.75 0 0 1 1.06-1.061L12 12.939zM9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
34
|
+
bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zm-5.086 4.672a1.001 1.001 0 0 1 1.415 1.414L13.414 14l1.415 1.414a1 1 0 0 1-1.415 1.414L12 15.414l-1.414 1.414a1 1 0 1 1-1.414-1.414L10.586 14l-1.414-1.414a1 1 0 0 1 1.414-1.414L12 12.585zM9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
35
|
+
},
|
|
36
|
+
solid: {
|
|
37
|
+
light: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5V19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5zm-.024 9.025a.5.5 0 0 0-.708 0L12 13.292l-1.768-1.767a.5.5 0 1 0-.707.707L11.293 14l-1.768 1.768a.5.5 0 0 0 .707.707L12 14.707l1.768 1.768a.501.501 0 0 0 .708-.707L12.707 14l1.769-1.768a.5.5 0 0 0 0-.707M9.5 3.5a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2z" clip-rule="evenodd"/>`,
|
|
38
|
+
regular: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.25c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75V19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5zm.152 9.099a.75.75 0 0 0-1.061 0L12 12.939l-1.59-1.59a.75.75 0 1 0-1.061 1.06L10.939 14l-1.59 1.59a.75.75 0 0 0 1.06 1.061L12 15.061l1.59 1.59a.751.751 0 0 0 1.062-1.06L13.061 14l1.591-1.59a.75.75 0 0 0 0-1.061M9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z" clip-rule="evenodd"/>`,
|
|
39
|
+
bold: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3V19a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2zm.33 9.172a1 1 0 0 0-1.416 0L12 12.585l-1.414-1.413a1 1 0 1 0-1.414 1.414L10.586 14l-1.414 1.414a1 1 0 0 0 1.414 1.414L12 15.414l1.414 1.414a1.001 1.001 0 0 0 1.415-1.414L13.414 14l1.415-1.414a1 1 0 0 0 0-1.414M9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z" clip-rule="evenodd"/>`
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
43
|
+
0 && (module.exports = {
|
|
44
|
+
IconClipboardX
|
|
45
|
+
});
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { IconVariant, IconWeight } from '../types.cjs';
|
|
3
|
+
|
|
4
|
+
declare const IconClipboardX: 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 { IconClipboardX };
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { IconVariant, IconWeight } from '../types.js';
|
|
3
|
+
|
|
4
|
+
declare const IconClipboardX: 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 { IconClipboardX };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { createIcon } from "../createIcon";
|
|
2
|
+
const IconClipboardX = /* @__PURE__ */ createIcon("clipboard-x", {
|
|
3
|
+
line: {
|
|
4
|
+
light: `<path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-5.232 5.025a.501.501 0 0 1 .708.707L12.707 14l1.769 1.768a.5.5 0 0 1-.708.707L12 14.707l-1.768 1.768a.5.5 0 1 1-.707-.707L11.293 14l-1.768-1.768a.5.5 0 0 1 .707-.707L12 13.292zM9.5 3.5a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
5
|
+
regular: `<path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zm-5.16 4.849a.751.751 0 0 1 1.062 1.06L13.061 14l1.591 1.59a.75.75 0 0 1-1.061 1.061L12 15.061l-1.59 1.59a.75.75 0 1 1-1.061-1.06L10.939 14l-1.59-1.59a.75.75 0 0 1 1.06-1.061L12 12.939zM9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
6
|
+
bold: `<path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zm-5.086 4.672a1.001 1.001 0 0 1 1.415 1.414L13.414 14l1.415 1.414a1 1 0 0 1-1.415 1.414L12 15.414l-1.414 1.414a1 1 0 1 1-1.414-1.414L10.586 14l-1.414-1.414a1 1 0 0 1 1.414-1.414L12 12.585zM9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
7
|
+
},
|
|
8
|
+
duotone: {
|
|
9
|
+
light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-5.232 5.025a.501.501 0 0 1 .708.707L12.707 14l1.769 1.768a.5.5 0 0 1-.708.707L12 14.707l-1.768 1.768a.5.5 0 1 1-.707-.707L11.293 14l-1.768-1.768a.5.5 0 0 1 .707-.707L12 13.292zM9.5 3.5a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
10
|
+
regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zm-5.16 4.849a.751.751 0 0 1 1.062 1.06L13.061 14l1.591 1.59a.75.75 0 0 1-1.061 1.061L12 15.061l-1.59 1.59a.75.75 0 1 1-1.061-1.06L10.939 14l-1.59-1.59a.75.75 0 0 1 1.06-1.061L12 12.939zM9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
11
|
+
bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zm-5.086 4.672a1.001 1.001 0 0 1 1.415 1.414L13.414 14l1.415 1.414a1 1 0 0 1-1.415 1.414L12 15.414l-1.414 1.414a1 1 0 1 1-1.414-1.414L10.586 14l-1.414-1.414a1 1 0 0 1 1.414-1.414L12 12.585zM9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
12
|
+
},
|
|
13
|
+
solid: {
|
|
14
|
+
light: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5V19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5zm-.024 9.025a.5.5 0 0 0-.708 0L12 13.292l-1.768-1.767a.5.5 0 1 0-.707.707L11.293 14l-1.768 1.768a.5.5 0 0 0 .707.707L12 14.707l1.768 1.768a.501.501 0 0 0 .708-.707L12.707 14l1.769-1.768a.5.5 0 0 0 0-.707M9.5 3.5a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2z" clip-rule="evenodd"/>`,
|
|
15
|
+
regular: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.25c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75V19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5zm.152 9.099a.75.75 0 0 0-1.061 0L12 12.939l-1.59-1.59a.75.75 0 1 0-1.061 1.06L10.939 14l-1.59 1.59a.75.75 0 0 0 1.06 1.061L12 15.061l1.59 1.59a.751.751 0 0 0 1.062-1.06L13.061 14l1.591-1.59a.75.75 0 0 0 0-1.061M9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z" clip-rule="evenodd"/>`,
|
|
16
|
+
bold: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3V19a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2zm.33 9.172a1 1 0 0 0-1.416 0L12 12.585l-1.414-1.413a1 1 0 1 0-1.414 1.414L10.586 14l-1.414 1.414a1 1 0 0 0 1.414 1.414L12 15.414l1.414 1.414a1.001 1.001 0 0 0 1.415-1.414L13.414 14l1.415-1.414a1 1 0 0 0 0-1.414M9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z" clip-rule="evenodd"/>`
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
export {
|
|
20
|
+
IconClipboardX
|
|
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 clipboard_exports = {};
|
|
20
|
+
__export(clipboard_exports, {
|
|
21
|
+
IconClipboard: () => IconClipboard
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(clipboard_exports);
|
|
24
|
+
var import_createIcon = require("../createIcon");
|
|
25
|
+
const IconClipboard = /* @__PURE__ */ (0, import_createIcon.createIcon)("clipboard", {
|
|
26
|
+
line: {
|
|
27
|
+
light: `<path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-9.5-3a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
28
|
+
regular: `<path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zM9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
29
|
+
bold: `<path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zM9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
30
|
+
},
|
|
31
|
+
duotone: {
|
|
32
|
+
light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-9.5-3a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
33
|
+
regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zM9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
34
|
+
bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zM9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
35
|
+
},
|
|
36
|
+
solid: {
|
|
37
|
+
light: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5V19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5zm-5 1a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2z" clip-rule="evenodd"/>`,
|
|
38
|
+
regular: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.25c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75V19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5zm-5 1.5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z" clip-rule="evenodd"/>`,
|
|
39
|
+
bold: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3V19a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2zm-5 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z" clip-rule="evenodd"/>`
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
43
|
+
0 && (module.exports = {
|
|
44
|
+
IconClipboard
|
|
45
|
+
});
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { IconVariant, IconWeight } from '../types.cjs';
|
|
3
|
+
|
|
4
|
+
declare const IconClipboard: 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 { IconClipboard };
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { IconVariant, IconWeight } from '../types.js';
|
|
3
|
+
|
|
4
|
+
declare const IconClipboard: 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 { IconClipboard };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { createIcon } from "../createIcon";
|
|
2
|
+
const IconClipboard = /* @__PURE__ */ createIcon("clipboard", {
|
|
3
|
+
line: {
|
|
4
|
+
light: `<path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-9.5-3a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
5
|
+
regular: `<path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zM9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
6
|
+
bold: `<path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zM9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
7
|
+
},
|
|
8
|
+
duotone: {
|
|
9
|
+
light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M19 6.5A1.5 1.5 0 0 0 17.5 5h-1.065A2 2 0 0 1 14.5 6.5h-5A2 2 0 0 1 7.565 5H6.5A1.5 1.5 0 0 0 5 6.5V19a1.5 1.5 0 0 0 1.5 1.5h11A1.5 1.5 0 0 0 19 19zm-9.5-3a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zM20 19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5h5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5z"/>`,
|
|
10
|
+
regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.75 6.5c0-.69-.56-1.25-1.25-1.25h-.88a2.25 2.25 0 0 1-2.12 1.5h-5a2.25 2.25 0 0 1-2.12-1.5H6.5c-.69 0-1.25.56-1.25 1.25V19c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25zM9.5 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5zM20.25 19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5h5c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75z"/>`,
|
|
11
|
+
bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M17.5 4.5a2 2 0 0 1 2 2V19a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V6.5a2 2 0 0 1 2-2H8A1.5 1.5 0 0 0 9.5 6h5A1.5 1.5 0 0 0 16 4.5z"/><path fill="currentColor" d="M18.5 6.5a1 1 0 0 0-1-1h-.71A2.5 2.5 0 0 1 14.5 7h-5a2.5 2.5 0 0 1-2.29-1.5H6.5a1 1 0 0 0-1 1V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1zM9.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm11 15a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2h5c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3z"/>`
|
|
12
|
+
},
|
|
13
|
+
solid: {
|
|
14
|
+
light: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.5A2 2 0 0 1 16.435 4H17.5A2.5 2.5 0 0 1 20 6.5V19a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 19V6.5A2.5 2.5 0 0 1 6.5 4h1.065A2 2 0 0 1 9.5 2.5zm-5 1a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2z" clip-rule="evenodd"/>`,
|
|
15
|
+
regular: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2.25c.98 0 1.81.627 2.12 1.5h.88a2.75 2.75 0 0 1 2.75 2.75V19a2.75 2.75 0 0 1-2.75 2.75h-11A2.75 2.75 0 0 1 3.75 19V6.5A2.75 2.75 0 0 1 6.5 3.75h.88a2.25 2.25 0 0 1 2.12-1.5zm-5 1.5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z" clip-rule="evenodd"/>`,
|
|
16
|
+
bold: `<path fill="currentColor" fill-rule="evenodd" d="M14.5 2c1.025 0 1.904.617 2.29 1.5h.71a3 3 0 0 1 3 3V19a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3V6.5a3 3 0 0 1 3-3h.71A2.5 2.5 0 0 1 9.5 2zm-5 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1z" clip-rule="evenodd"/>`
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
export {
|
|
20
|
+
IconClipboard
|
|
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 copy_exports = {};
|
|
20
|
+
__export(copy_exports, {
|
|
21
|
+
IconCopy: () => IconCopy
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(copy_exports);
|
|
24
|
+
var import_createIcon = require("../createIcon");
|
|
25
|
+
const IconCopy = /* @__PURE__ */ (0, import_createIcon.createIcon)("copy", {
|
|
26
|
+
line: {
|
|
27
|
+
light: `<path fill="currentColor" d="M20.5 9A1.5 1.5 0 0 0 19 7.5H9A1.5 1.5 0 0 0 7.5 9v10A1.5 1.5 0 0 0 9 20.5h10a1.5 1.5 0 0 0 1.5-1.5zm-4-4A1.5 1.5 0 0 0 15 3.5H5A1.5 1.5 0 0 0 3.5 5v10A1.5 1.5 0 0 0 5 16.5h1.5V9A2.5 2.5 0 0 1 9 6.5h7.5zm1 1.5H19A2.5 2.5 0 0 1 21.5 9v10a2.5 2.5 0 0 1-2.5 2.5H9A2.5 2.5 0 0 1 6.5 19v-1.5H5A2.5 2.5 0 0 1 2.5 15V5A2.5 2.5 0 0 1 5 2.5h10A2.5 2.5 0 0 1 17.5 5z"/>`,
|
|
28
|
+
regular: `<path fill="currentColor" d="M20.25 9c0-.69-.56-1.25-1.25-1.25H9c-.69 0-1.25.56-1.25 1.25v10c0 .69.56 1.25 1.25 1.25h10c.69 0 1.25-.56 1.25-1.25zm-4-4c0-.69-.56-1.25-1.25-1.25H5c-.69 0-1.25.56-1.25 1.25v10c0 .69.56 1.25 1.25 1.25h1.25V9A2.75 2.75 0 0 1 9 6.25h7.25zm1.5 1.25H19A2.75 2.75 0 0 1 21.75 9v10A2.75 2.75 0 0 1 19 21.75H9A2.75 2.75 0 0 1 6.25 19v-1.25H5A2.75 2.75 0 0 1 2.25 15V5A2.75 2.75 0 0 1 5 2.25h10A2.75 2.75 0 0 1 17.75 5z"/>`,
|
|
29
|
+
bold: `<path fill="currentColor" d="M20 9a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1zm-4-4a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h1V9a3 3 0 0 1 3-3h7zm2 1h1a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3v-1H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3z"/>`
|
|
30
|
+
},
|
|
31
|
+
duotone: {
|
|
32
|
+
light: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M7 9a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M20.5 9A1.5 1.5 0 0 0 19 7.5H9A1.5 1.5 0 0 0 7.5 9v10A1.5 1.5 0 0 0 9 20.5h10a1.5 1.5 0 0 0 1.5-1.5zm-4-4A1.5 1.5 0 0 0 15 3.5H5A1.5 1.5 0 0 0 3.5 5v10A1.5 1.5 0 0 0 5 16.5h1.5V9A2.5 2.5 0 0 1 9 6.5h7.5zm1 1.5H19A2.5 2.5 0 0 1 21.5 9v10a2.5 2.5 0 0 1-2.5 2.5H9A2.5 2.5 0 0 1 6.5 19v-1.5H5A2.5 2.5 0 0 1 2.5 15V5A2.5 2.5 0 0 1 5 2.5h10A2.5 2.5 0 0 1 17.5 5z"/>`,
|
|
33
|
+
regular: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M7 9a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M20.25 9c0-.69-.56-1.25-1.25-1.25H9c-.69 0-1.25.56-1.25 1.25v10c0 .69.56 1.25 1.25 1.25h10c.69 0 1.25-.56 1.25-1.25zm-4-4c0-.69-.56-1.25-1.25-1.25H5c-.69 0-1.25.56-1.25 1.25v10c0 .69.56 1.25 1.25 1.25h1.25V9A2.75 2.75 0 0 1 9 6.25h7.25zm1.5 1.25H19A2.75 2.75 0 0 1 21.75 9v10A2.75 2.75 0 0 1 19 21.75H9A2.75 2.75 0 0 1 6.25 19v-1.25H5A2.75 2.75 0 0 1 2.25 15V5A2.75 2.75 0 0 1 5 2.25h10A2.75 2.75 0 0 1 17.75 5z"/>`,
|
|
34
|
+
bold: `<path fill="var(--uiux-accent, currentColor)" fill-opacity="0.25" d="M7 9a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2z"/><path fill="currentColor" d="M20 9a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1zm-4-4a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h1V9a3 3 0 0 1 3-3h7zm2 1h1a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3v-1H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3z"/>`
|
|
35
|
+
},
|
|
36
|
+
solid: {
|
|
37
|
+
light: `<path fill="currentColor" fill-rule="evenodd" d="M15 2.5A2.5 2.5 0 0 1 17.5 5v1.5H19A2.5 2.5 0 0 1 21.5 9v10a2.5 2.5 0 0 1-2.5 2.5H9A2.5 2.5 0 0 1 6.5 19v-1.5H5A2.5 2.5 0 0 1 2.5 15V5A2.5 2.5 0 0 1 5 2.5zm-10 1A1.5 1.5 0 0 0 3.5 5v10A1.5 1.5 0 0 0 5 16.5h1.5V9A2.5 2.5 0 0 1 9 6.5h7.5V5A1.5 1.5 0 0 0 15 3.5z" clip-rule="evenodd"/>`,
|
|
38
|
+
regular: `<path fill="currentColor" fill-rule="evenodd" d="M15 2.25A2.75 2.75 0 0 1 17.75 5v1.25H19A2.75 2.75 0 0 1 21.75 9v10A2.75 2.75 0 0 1 19 21.75H9A2.75 2.75 0 0 1 6.25 19v-1.25H5A2.75 2.75 0 0 1 2.25 15V5A2.75 2.75 0 0 1 5 2.25zM5 3.75c-.69 0-1.25.56-1.25 1.25v10c0 .69.56 1.25 1.25 1.25h1.25V9A2.75 2.75 0 0 1 9 6.25h7.25V5c0-.69-.56-1.25-1.25-1.25z" clip-rule="evenodd"/>`,
|
|
39
|
+
bold: `<path fill="currentColor" fill-rule="evenodd" d="M15 2a3 3 0 0 1 3 3v1h1a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3v-1H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3zM5 4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h1V9a3 3 0 0 1 3-3h7V5a1 1 0 0 0-1-1z" clip-rule="evenodd"/>`
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
43
|
+
0 && (module.exports = {
|
|
44
|
+
IconCopy
|
|
45
|
+
});
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { IconVariant, IconWeight } from '../types.cjs';
|
|
3
|
+
|
|
4
|
+
declare const IconCopy: 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 { IconCopy };
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { IconVariant, IconWeight } from '../types.js';
|
|
3
|
+
|
|
4
|
+
declare const IconCopy: 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 { IconCopy };
|