@kyro-cms/admin 0.3.1 → 0.3.4
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/EditorClient-XEUOVAAC.js +466 -0
- package/dist/EditorClient-XEUOVAAC.js.map +1 -0
- package/dist/EditorClient-YLCGVDXY.cjs +468 -0
- package/dist/EditorClient-YLCGVDXY.cjs.map +1 -0
- package/dist/chunk-7KPIUCGT.js +384 -0
- package/dist/chunk-7KPIUCGT.js.map +1 -0
- package/dist/chunk-GOACG6R7.cjs +473 -0
- package/dist/chunk-GOACG6R7.cjs.map +1 -0
- package/dist/index.cjs +14861 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +1661 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.ts +563 -0
- package/dist/index.js +14784 -0
- package/dist/index.js.map +1 -0
- package/package.json +19 -19
- package/src/components/ActionBar.tsx +7 -43
- package/src/components/Admin.tsx +138 -277
- package/src/components/ApiKeysManager.tsx +428 -419
- package/src/components/AuditLogsPage.tsx +35 -39
- package/src/components/AuthBridge.tsx +51 -0
- package/src/components/AutoForm.tsx +495 -1230
- package/src/components/BrandingHub.tsx +18 -19
- package/src/components/BulkActionsBar.tsx +1 -1
- package/src/components/CreateView.tsx +22 -36
- package/src/components/Dashboard.tsx +60 -84
- package/src/components/DetailView.tsx +113 -91
- package/src/components/DeveloperCenter.tsx +200 -198
- package/src/components/FieldRenderer.tsx +206 -0
- package/src/components/GraphQLPlayground.tsx +340 -480
- package/src/components/ListView.tsx +828 -254
- package/src/components/LoginPage.tsx +3 -4
- package/src/components/MarketplaceManager.tsx +254 -0
- package/src/components/MediaGallery.tsx +856 -1192
- package/src/components/PluginsManager.tsx +277 -0
- package/src/components/RestPlayground.tsx +398 -560
- package/src/components/SessionsManager.tsx +211 -0
- package/src/components/Sidebar.astro +179 -151
- package/src/components/ThemeProvider.tsx +7 -161
- package/src/components/UserManagement.tsx +162 -146
- package/src/components/UserMenu.tsx +110 -0
- package/src/components/WebhookManager.tsx +305 -367
- package/src/components/blocks/AccordionBlock.tsx +4 -4
- package/src/components/blocks/ArrayBlock.tsx +3 -3
- package/src/components/blocks/BlockEditModal.tsx +8 -8
- package/src/components/blocks/BlockWrapper.tsx +61 -0
- package/src/components/blocks/ButtonBlock.tsx +4 -4
- package/src/components/blocks/ChildBlocksTree.tsx +23 -25
- package/src/components/blocks/CodeBlock.tsx +15 -15
- package/src/components/blocks/ColumnsBlock.tsx +6 -44
- package/src/components/blocks/DividerBlock.tsx +3 -3
- package/src/components/blocks/FileBlock.tsx +4 -4
- package/src/components/blocks/HeadingBlock.tsx +6 -38
- package/src/components/blocks/HeroBlock.tsx +4 -4
- package/src/components/blocks/ImageBlock.tsx +4 -4
- package/src/components/blocks/LinkBlock.tsx +4 -4
- package/src/components/blocks/ListBlock.tsx +3 -3
- package/src/components/blocks/ParagraphBlock.tsx +12 -42
- package/src/components/blocks/RelationshipBlock.tsx +4 -4
- package/src/components/blocks/RichTextBlock.tsx +4 -4
- package/src/components/blocks/VStackBlock.tsx +5 -37
- package/src/components/blocks/VideoBlock.tsx +4 -4
- package/src/components/blocks/types.ts +11 -0
- package/src/components/fields/AccordionField.tsx +1 -1
- package/src/components/fields/ArrayField.tsx +2 -2
- package/src/components/fields/ArrayLayout.tsx +93 -0
- package/src/components/fields/BlocksField.tsx +122 -111
- package/src/components/fields/ButtonField.tsx +1 -1
- package/src/components/fields/CheckboxField.tsx +14 -15
- package/src/components/fields/ChildrenField.tsx +2 -2
- package/src/components/fields/CodeField.tsx +3 -3
- package/src/components/fields/ColumnsField.tsx +2 -2
- package/src/components/fields/DateField.tsx +13 -26
- package/src/components/fields/EditorClient.tsx +26 -28
- package/src/components/fields/FieldLayout.tsx +52 -0
- package/src/components/fields/GroupLayout.tsx +35 -0
- package/src/components/fields/JSONField.tsx +7 -7
- package/src/components/fields/LinkField.tsx +1 -1
- package/src/components/fields/MarkdownField.tsx +1 -1
- package/src/components/fields/NumberField.tsx +13 -26
- package/src/components/fields/PortableTextField.tsx +4 -4
- package/src/components/fields/PortableTextRenderer.tsx +1 -1
- package/src/components/fields/RelationshipBlockField.tsx +31 -23
- package/src/components/fields/RelationshipField.tsx +14 -14
- package/src/components/fields/SelectField.tsx +17 -26
- package/src/components/fields/TabsLayout.tsx +69 -0
- package/src/components/fields/TextField.tsx +85 -38
- package/src/components/fields/UploadField.tsx +71 -41
- package/src/components/fields/VideoField.tsx +1 -1
- package/src/components/fields/extensions/blockComponents.tsx +2 -2
- package/src/components/fields/extensions/blocksStore.ts +207 -193
- package/src/components/fields/types.ts +22 -0
- package/src/components/layout/Layout.tsx +1 -1
- package/src/components/ui/ActionMenu.tsx +63 -0
- package/src/components/ui/Badge.tsx +59 -5
- package/src/components/ui/BlockDrawer.tsx +4 -5
- package/src/components/ui/CommandPalette.tsx +58 -36
- package/src/components/ui/CommandPaletteWrapper.tsx +18 -17
- package/src/components/ui/Dropdown.tsx +18 -16
- package/src/components/ui/EmptyState.tsx +25 -0
- package/src/components/ui/GlobalModal.tsx +49 -0
- package/src/components/ui/IconButton.tsx +44 -0
- package/src/components/ui/Modal.tsx +19 -20
- package/src/components/ui/PageHeader.tsx +158 -0
- package/src/components/ui/Pagination.tsx +61 -0
- package/src/components/ui/PromptModal.tsx +1 -1
- package/src/components/ui/SearchInput.tsx +57 -0
- package/src/components/ui/SeoPreview.tsx +31 -0
- package/src/components/ui/SessionModal.tsx +0 -0
- package/src/components/ui/SlidePanel.tsx +2 -0
- package/src/components/ui/Toast.tsx +65 -122
- package/src/components/ui/Toaster.tsx +18 -0
- package/src/components/ui/icons.tsx +112 -0
- package/src/components/users/UserDetail.tsx +290 -0
- package/src/components/users/UserForm.tsx +242 -0
- package/src/components/users/UsersList.tsx +338 -0
- package/src/env.d.ts +13 -13
- package/src/fields/index.ts +2 -1
- package/src/global.d.ts +7 -0
- package/src/hooks/data.ts +2 -9
- package/src/hooks/useAsyncData.ts +36 -0
- package/src/hooks/useAutoFormState.ts +527 -0
- package/src/hooks/useSelection.ts +49 -0
- package/src/hooks/useSession.ts +0 -0
- package/src/index.ts +11 -1
- package/src/integration.ts +86 -11
- package/src/kyro-cms.d.ts +209 -0
- package/src/layouts/AdminLayout.astro +128 -11
- package/src/layouts/AuthLayout.astro +21 -5
- package/src/lib/api.ts +175 -55
- package/src/lib/autoform-store.ts +435 -0
- package/src/lib/config.ts +82 -34
- package/src/lib/createRegistry.ts +29 -0
- package/src/lib/default-kyro-config.ts +4 -0
- package/src/lib/globals.ts +50 -0
- package/src/lib/media-utils.ts +18 -0
- package/src/lib/object-utils.ts +77 -0
- package/src/lib/paths.ts +61 -0
- package/src/lib/stores/index.ts +370 -0
- package/src/lib/types.ts +43 -0
- package/src/lib/useResourceManager.ts +105 -0
- package/src/pages/403.astro +67 -0
- package/src/pages/[collection]/[id].astro +14 -180
- package/src/pages/[collection]/index.astro +11 -6
- package/src/pages/api-explorer.astro +173 -0
- package/src/pages/audit/index.astro +2 -0
- package/src/pages/auth/login.astro +122 -0
- package/src/pages/auth/register.astro +167 -0
- package/src/pages/graphql-explorer.astro +59 -0
- package/src/pages/{admin/graphql.astro → graphql.astro} +51 -17
- package/src/pages/index.astro +577 -0
- package/src/pages/index_ALT.astro +3 -0
- package/src/pages/keys.astro +11 -0
- package/src/pages/marketplace.astro +11 -0
- package/src/pages/media.astro +3 -0
- package/src/pages/plugins.astro +8 -0
- package/src/pages/preview/[collection]/[id].astro +188 -123
- package/src/pages/rest-playground.astro +62 -0
- package/src/pages/roles/index.astro +183 -76
- package/src/pages/sessions.astro +8 -0
- package/src/pages/settings/[slug].astro +92 -114
- package/src/pages/settings/index.astro +5 -3
- package/src/pages/users/[id].astro +25 -154
- package/src/pages/users/index.astro +19 -130
- package/src/pages/users/new.astro +9 -86
- package/src/pages/webhooks.astro +11 -0
- package/src/routes.ts +80 -0
- package/src/styles/main.css +119 -79
- package/src/theme/tokens.ts +1 -0
- package/src/vite-env.d.ts +14 -0
- package/src/collections/auth/index.ts +0 -155
- package/src/collections/portfolio/index.ts +0 -343
- package/src/components/ApiExplorer.tsx +0 -325
- package/src/components/EnhancedListView.tsx +0 -889
- package/src/components/GraphQLExplorer.tsx +0 -675
- package/src/components/Icons.tsx +0 -23
- package/src/components/StatusBadge.tsx +0 -76
- package/src/lib/MediaService.ts +0 -541
- package/src/lib/auth/sqlite-adapter.ts +0 -319
- package/src/lib/dataStore.ts +0 -226
- package/src/lib/db/adapter.ts +0 -54
- package/src/lib/db/drizzle-mysql-adapter.ts +0 -194
- package/src/lib/db/drizzle-mysql-auth-adapter.ts +0 -327
- package/src/lib/db/drizzle-postgres-adapter.ts +0 -202
- package/src/lib/db/drizzle-postgres-auth-adapter.ts +0 -304
- package/src/lib/db/drizzle-sqlite-adapter.ts +0 -227
- package/src/lib/db/drizzle-sqlite-auth-adapter.ts +0 -548
- package/src/lib/db/index.ts +0 -449
- package/src/lib/db/mongodb-adapter.ts +0 -207
- package/src/lib/db/mongodb-auth-adapter.ts +0 -305
- package/src/lib/db/schema/mysql-auth.ts +0 -113
- package/src/lib/db/schema/mysql-content.ts +0 -20
- package/src/lib/db/schema/postgres-auth.ts +0 -116
- package/src/lib/db/schema/postgres-content.ts +0 -35
- package/src/lib/db/schema/postgres-media.ts +0 -52
- package/src/lib/db/schema/postgres-settings.ts +0 -11
- package/src/lib/db/schema/sqlite-auth.ts +0 -112
- package/src/lib/db/schema/sqlite-content.ts +0 -20
- package/src/lib/db/version-adapter.ts +0 -248
- package/src/lib/graphql/index.ts +0 -1
- package/src/lib/graphql/schema.ts +0 -443
- package/src/lib/rate-limit.ts +0 -267
- package/src/lib/storage.ts +0 -374
- package/src/lib/store.ts +0 -85
- package/src/middleware.ts +0 -177
- package/src/pages/admin/api-explorer.astro +0 -98
- package/src/pages/admin/graphql-explorer.astro +0 -40
- package/src/pages/admin/index.astro +0 -286
- package/src/pages/admin/keys.astro +0 -8
- package/src/pages/admin/rest-playground.astro +0 -44
- package/src/pages/admin/webhooks.astro +0 -8
- package/src/pages/api/[collection]/[id]/publish.ts +0 -52
- package/src/pages/api/[collection]/[id]/unpublish.ts +0 -42
- package/src/pages/api/[collection]/[id]/versions.ts +0 -66
- package/src/pages/api/[collection]/[id].ts +0 -213
- package/src/pages/api/[collection]/index.ts +0 -209
- package/src/pages/api/auth/[id].ts +0 -121
- package/src/pages/api/auth/audit-logs.ts +0 -57
- package/src/pages/api/auth/login.ts +0 -211
- package/src/pages/api/auth/logout.ts +0 -66
- package/src/pages/api/auth/me.ts +0 -36
- package/src/pages/api/auth/refresh.ts +0 -119
- package/src/pages/api/auth/register.ts +0 -188
- package/src/pages/api/auth/users.ts +0 -97
- package/src/pages/api/collections.ts +0 -59
- package/src/pages/api/globals/[slug].ts +0 -42
- package/src/pages/api/graphql.ts +0 -90
- package/src/pages/api/health.ts +0 -426
- package/src/pages/api/keys/[id].ts +0 -26
- package/src/pages/api/keys/index.ts +0 -75
- package/src/pages/api/media/[id].ts +0 -309
- package/src/pages/api/media/folders.ts +0 -609
- package/src/pages/api/media/index.ts +0 -146
- package/src/pages/api/media/resize.ts +0 -267
- package/src/pages/api/search.ts +0 -82
- package/src/pages/api/slug-availability.ts +0 -70
- package/src/pages/api/storage-config.ts +0 -20
- package/src/pages/api/storage-status.ts +0 -206
- package/src/pages/api/upload.ts +0 -334
- package/src/pages/api/webhooks/index.ts +0 -71
- package/src/pages/login.astro +0 -82
- package/src/pages/register.astro +0 -102
|
@@ -0,0 +1,473 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React2 = require('react');
|
|
4
|
+
|
|
5
|
+
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
6
|
+
|
|
7
|
+
var React2__default = /*#__PURE__*/_interopDefault(React2);
|
|
8
|
+
|
|
9
|
+
// ../node_modules/.pnpm/react-icons@5.6.0_react@19.2.6/node_modules/react-icons/lib/iconBase.mjs
|
|
10
|
+
var DefaultContext = {
|
|
11
|
+
color: void 0,
|
|
12
|
+
size: void 0,
|
|
13
|
+
className: void 0,
|
|
14
|
+
style: void 0,
|
|
15
|
+
attr: void 0
|
|
16
|
+
};
|
|
17
|
+
var IconContext = React2__default.default.createContext && /* @__PURE__ */ React2__default.default.createContext(DefaultContext);
|
|
18
|
+
|
|
19
|
+
// ../node_modules/.pnpm/react-icons@5.6.0_react@19.2.6/node_modules/react-icons/lib/iconBase.mjs
|
|
20
|
+
var _excluded = ["attr", "size", "title"];
|
|
21
|
+
function _objectWithoutProperties(e, t) {
|
|
22
|
+
if (null == e)
|
|
23
|
+
return {};
|
|
24
|
+
var o, r, i = _objectWithoutPropertiesLoose(e, t);
|
|
25
|
+
if (Object.getOwnPropertySymbols) {
|
|
26
|
+
var n = Object.getOwnPropertySymbols(e);
|
|
27
|
+
for (r = 0; r < n.length; r++)
|
|
28
|
+
o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
|
|
29
|
+
}
|
|
30
|
+
return i;
|
|
31
|
+
}
|
|
32
|
+
function _objectWithoutPropertiesLoose(r, e) {
|
|
33
|
+
if (null == r)
|
|
34
|
+
return {};
|
|
35
|
+
var t = {};
|
|
36
|
+
for (var n in r)
|
|
37
|
+
if ({}.hasOwnProperty.call(r, n)) {
|
|
38
|
+
if (-1 !== e.indexOf(n))
|
|
39
|
+
continue;
|
|
40
|
+
t[n] = r[n];
|
|
41
|
+
}
|
|
42
|
+
return t;
|
|
43
|
+
}
|
|
44
|
+
function _extends() {
|
|
45
|
+
return _extends = Object.assign ? Object.assign.bind() : function(n) {
|
|
46
|
+
for (var e = 1; e < arguments.length; e++) {
|
|
47
|
+
var t = arguments[e];
|
|
48
|
+
for (var r in t)
|
|
49
|
+
({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
|
|
50
|
+
}
|
|
51
|
+
return n;
|
|
52
|
+
}, _extends.apply(null, arguments);
|
|
53
|
+
}
|
|
54
|
+
function ownKeys(e, r) {
|
|
55
|
+
var t = Object.keys(e);
|
|
56
|
+
if (Object.getOwnPropertySymbols) {
|
|
57
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
58
|
+
r && (o = o.filter(function(r2) {
|
|
59
|
+
return Object.getOwnPropertyDescriptor(e, r2).enumerable;
|
|
60
|
+
})), t.push.apply(t, o);
|
|
61
|
+
}
|
|
62
|
+
return t;
|
|
63
|
+
}
|
|
64
|
+
function _objectSpread(e) {
|
|
65
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
66
|
+
var t = null != arguments[r] ? arguments[r] : {};
|
|
67
|
+
r % 2 ? ownKeys(Object(t), true).forEach(function(r2) {
|
|
68
|
+
_defineProperty(e, r2, t[r2]);
|
|
69
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function(r2) {
|
|
70
|
+
Object.defineProperty(e, r2, Object.getOwnPropertyDescriptor(t, r2));
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
return e;
|
|
74
|
+
}
|
|
75
|
+
function _defineProperty(e, r, t) {
|
|
76
|
+
return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: true, configurable: true, writable: true }) : e[r] = t, e;
|
|
77
|
+
}
|
|
78
|
+
function _toPropertyKey(t) {
|
|
79
|
+
var i = _toPrimitive(t, "string");
|
|
80
|
+
return "symbol" == typeof i ? i : i + "";
|
|
81
|
+
}
|
|
82
|
+
function _toPrimitive(t, r) {
|
|
83
|
+
if ("object" != typeof t || !t)
|
|
84
|
+
return t;
|
|
85
|
+
var e = t[Symbol.toPrimitive];
|
|
86
|
+
if (void 0 !== e) {
|
|
87
|
+
var i = e.call(t, r || "default");
|
|
88
|
+
if ("object" != typeof i)
|
|
89
|
+
return i;
|
|
90
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
91
|
+
}
|
|
92
|
+
return ("string" === r ? String : Number)(t);
|
|
93
|
+
}
|
|
94
|
+
function Tree2Element(tree) {
|
|
95
|
+
return tree && tree.map((node, i) => /* @__PURE__ */ React2__default.default.createElement(node.tag, _objectSpread({
|
|
96
|
+
key: i
|
|
97
|
+
}, node.attr), Tree2Element(node.child)));
|
|
98
|
+
}
|
|
99
|
+
function GenIcon(data) {
|
|
100
|
+
return (props) => /* @__PURE__ */ React2__default.default.createElement(IconBase, _extends({
|
|
101
|
+
attr: _objectSpread({}, data.attr)
|
|
102
|
+
}, props), Tree2Element(data.child));
|
|
103
|
+
}
|
|
104
|
+
function IconBase(props) {
|
|
105
|
+
var elem = (conf) => {
|
|
106
|
+
var {
|
|
107
|
+
attr,
|
|
108
|
+
size,
|
|
109
|
+
title
|
|
110
|
+
} = props, svgProps = _objectWithoutProperties(props, _excluded);
|
|
111
|
+
var computedSize = size || conf.size || "1em";
|
|
112
|
+
var className;
|
|
113
|
+
if (conf.className)
|
|
114
|
+
className = conf.className;
|
|
115
|
+
if (props.className)
|
|
116
|
+
className = (className ? className + " " : "") + props.className;
|
|
117
|
+
return /* @__PURE__ */ React2__default.default.createElement("svg", _extends({
|
|
118
|
+
stroke: "currentColor",
|
|
119
|
+
fill: "currentColor",
|
|
120
|
+
strokeWidth: "0"
|
|
121
|
+
}, conf.attr, attr, svgProps, {
|
|
122
|
+
className,
|
|
123
|
+
style: _objectSpread(_objectSpread({
|
|
124
|
+
color: props.color || conf.color
|
|
125
|
+
}, conf.style), props.style),
|
|
126
|
+
height: computedSize,
|
|
127
|
+
width: computedSize,
|
|
128
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
129
|
+
}), title && /* @__PURE__ */ React2__default.default.createElement("title", null, title), props.children);
|
|
130
|
+
};
|
|
131
|
+
return IconContext !== void 0 ? /* @__PURE__ */ React2__default.default.createElement(IconContext.Consumer, null, (conf) => elem(conf)) : elem(DefaultContext);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// ../node_modules/.pnpm/react-icons@5.6.0_react@19.2.6/node_modules/react-icons/lu/index.mjs
|
|
135
|
+
function LuZap(props) {
|
|
136
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z" }, "child": [] }] })(props);
|
|
137
|
+
}
|
|
138
|
+
function LuX(props) {
|
|
139
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M18 6 6 18" }, "child": [] }, { "tag": "path", "attr": { "d": "m6 6 12 12" }, "child": [] }] })(props);
|
|
140
|
+
}
|
|
141
|
+
function LuWebhook(props) {
|
|
142
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2" }, "child": [] }, { "tag": "path", "attr": { "d": "m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06" }, "child": [] }, { "tag": "path", "attr": { "d": "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8" }, "child": [] }] })(props);
|
|
143
|
+
}
|
|
144
|
+
function LuVideo(props) {
|
|
145
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5" }, "child": [] }, { "tag": "rect", "attr": { "x": "2", "y": "6", "width": "14", "height": "12", "rx": "2" }, "child": [] }] })(props);
|
|
146
|
+
}
|
|
147
|
+
function LuUsers(props) {
|
|
148
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }, "child": [] }, { "tag": "circle", "attr": { "cx": "9", "cy": "7", "r": "4" }, "child": [] }, { "tag": "path", "attr": { "d": "M22 21v-2a4 4 0 0 0-3-3.87" }, "child": [] }, { "tag": "path", "attr": { "d": "M16 3.13a4 4 0 0 1 0 7.75" }, "child": [] }] })(props);
|
|
149
|
+
}
|
|
150
|
+
function LuUserPlus(props) {
|
|
151
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }, "child": [] }, { "tag": "circle", "attr": { "cx": "9", "cy": "7", "r": "4" }, "child": [] }, { "tag": "line", "attr": { "x1": "19", "x2": "19", "y1": "8", "y2": "14" }, "child": [] }, { "tag": "line", "attr": { "x1": "22", "x2": "16", "y1": "11", "y2": "11" }, "child": [] }] })(props);
|
|
152
|
+
}
|
|
153
|
+
function LuUndo(props) {
|
|
154
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M3 7v6h6" }, "child": [] }, { "tag": "path", "attr": { "d": "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" }, "child": [] }] })(props);
|
|
155
|
+
}
|
|
156
|
+
function LuUnderline(props) {
|
|
157
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M6 4v6a6 6 0 0 0 12 0V4" }, "child": [] }, { "tag": "line", "attr": { "x1": "4", "x2": "20", "y1": "20", "y2": "20" }, "child": [] }] })(props);
|
|
158
|
+
}
|
|
159
|
+
function LuTriangleAlert(props) {
|
|
160
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 9v4" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 17h.01" }, "child": [] }] })(props);
|
|
161
|
+
}
|
|
162
|
+
function LuTrash2(props) {
|
|
163
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M3 6h18" }, "child": [] }, { "tag": "path", "attr": { "d": "M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6" }, "child": [] }, { "tag": "path", "attr": { "d": "M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2" }, "child": [] }, { "tag": "line", "attr": { "x1": "10", "x2": "10", "y1": "11", "y2": "17" }, "child": [] }, { "tag": "line", "attr": { "x1": "14", "x2": "14", "y1": "11", "y2": "17" }, "child": [] }] })(props);
|
|
164
|
+
}
|
|
165
|
+
function LuTerminal(props) {
|
|
166
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "4 17 10 11 4 5" }, "child": [] }, { "tag": "line", "attr": { "x1": "12", "x2": "20", "y1": "19", "y2": "19" }, "child": [] }] })(props);
|
|
167
|
+
}
|
|
168
|
+
function LuTag(props) {
|
|
169
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }, "child": [] }, { "tag": "circle", "attr": { "cx": "7.5", "cy": "7.5", "r": ".5", "fill": "currentColor" }, "child": [] }] })(props);
|
|
170
|
+
}
|
|
171
|
+
function LuSun(props) {
|
|
172
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "4" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 2v2" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 20v2" }, "child": [] }, { "tag": "path", "attr": { "d": "m4.93 4.93 1.41 1.41" }, "child": [] }, { "tag": "path", "attr": { "d": "m17.66 17.66 1.41 1.41" }, "child": [] }, { "tag": "path", "attr": { "d": "M2 12h2" }, "child": [] }, { "tag": "path", "attr": { "d": "M20 12h2" }, "child": [] }, { "tag": "path", "attr": { "d": "m6.34 17.66-1.41 1.41" }, "child": [] }, { "tag": "path", "attr": { "d": "m19.07 4.93-1.41 1.41" }, "child": [] }] })(props);
|
|
173
|
+
}
|
|
174
|
+
function LuStrikethrough(props) {
|
|
175
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M16 4H9a3 3 0 0 0-2.83 4" }, "child": [] }, { "tag": "path", "attr": { "d": "M14 12a4 4 0 0 1 0 8H6" }, "child": [] }, { "tag": "line", "attr": { "x1": "4", "x2": "20", "y1": "12", "y2": "12" }, "child": [] }] })(props);
|
|
176
|
+
}
|
|
177
|
+
function LuStar(props) {
|
|
178
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z" }, "child": [] }] })(props);
|
|
179
|
+
}
|
|
180
|
+
function LuSparkles(props) {
|
|
181
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z" }, "child": [] }, { "tag": "path", "attr": { "d": "M20 3v4" }, "child": [] }, { "tag": "path", "attr": { "d": "M22 5h-4" }, "child": [] }, { "tag": "path", "attr": { "d": "M4 17v2" }, "child": [] }, { "tag": "path", "attr": { "d": "M5 18H3" }, "child": [] }] })(props);
|
|
182
|
+
}
|
|
183
|
+
function LuShield(props) {
|
|
184
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }, "child": [] }] })(props);
|
|
185
|
+
}
|
|
186
|
+
function LuShieldAlert(props) {
|
|
187
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 8v4" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 16h.01" }, "child": [] }] })(props);
|
|
188
|
+
}
|
|
189
|
+
function LuSettings(props) {
|
|
190
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }, "child": [] }, { "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "3" }, "child": [] }] })(props);
|
|
191
|
+
}
|
|
192
|
+
function LuSend(props) {
|
|
193
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z" }, "child": [] }, { "tag": "path", "attr": { "d": "m21.854 2.147-10.94 10.939" }, "child": [] }] })(props);
|
|
194
|
+
}
|
|
195
|
+
function LuSearch(props) {
|
|
196
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "11", "cy": "11", "r": "8" }, "child": [] }, { "tag": "path", "attr": { "d": "m21 21-4.3-4.3" }, "child": [] }] })(props);
|
|
197
|
+
}
|
|
198
|
+
function LuSave(props) {
|
|
199
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }, "child": [] }, { "tag": "path", "attr": { "d": "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }, "child": [] }, { "tag": "path", "attr": { "d": "M7 3v4a1 1 0 0 0 1 1h7" }, "child": [] }] })(props);
|
|
200
|
+
}
|
|
201
|
+
function LuRefreshCw(props) {
|
|
202
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }, "child": [] }, { "tag": "path", "attr": { "d": "M21 3v5h-5" }, "child": [] }, { "tag": "path", "attr": { "d": "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }, "child": [] }, { "tag": "path", "attr": { "d": "M8 16H3v5" }, "child": [] }] })(props);
|
|
203
|
+
}
|
|
204
|
+
function LuRefreshCcw(props) {
|
|
205
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 3v5h5" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16" }, "child": [] }, { "tag": "path", "attr": { "d": "M16 16h5v5" }, "child": [] }] })(props);
|
|
206
|
+
}
|
|
207
|
+
function LuRedo(props) {
|
|
208
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M21 7v6h-6" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" }, "child": [] }] })(props);
|
|
209
|
+
}
|
|
210
|
+
function LuPlus(props) {
|
|
211
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M5 12h14" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 5v14" }, "child": [] }] })(props);
|
|
212
|
+
}
|
|
213
|
+
function LuPlay(props) {
|
|
214
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polygon", "attr": { "points": "6 3 20 12 6 21 6 3" }, "child": [] }] })(props);
|
|
215
|
+
}
|
|
216
|
+
function LuPause(props) {
|
|
217
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "x": "14", "y": "4", "width": "4", "height": "16", "rx": "1" }, "child": [] }, { "tag": "rect", "attr": { "x": "6", "y": "4", "width": "4", "height": "16", "rx": "1" }, "child": [] }] })(props);
|
|
218
|
+
}
|
|
219
|
+
function LuPalette(props) {
|
|
220
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "13.5", "cy": "6.5", "r": ".5", "fill": "currentColor" }, "child": [] }, { "tag": "circle", "attr": { "cx": "17.5", "cy": "10.5", "r": ".5", "fill": "currentColor" }, "child": [] }, { "tag": "circle", "attr": { "cx": "8.5", "cy": "7.5", "r": ".5", "fill": "currentColor" }, "child": [] }, { "tag": "circle", "attr": { "cx": "6.5", "cy": "12.5", "r": ".5", "fill": "currentColor" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.926 0 1.648-.746 1.648-1.688 0-.437-.18-.835-.437-1.125-.29-.289-.438-.652-.438-1.125a1.64 1.64 0 0 1 1.668-1.668h1.996c3.051 0 5.555-2.503 5.555-5.554C21.965 6.012 17.461 2 12 2z" }, "child": [] }] })(props);
|
|
221
|
+
}
|
|
222
|
+
function LuNetwork(props) {
|
|
223
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "x": "16", "y": "16", "width": "6", "height": "6", "rx": "1" }, "child": [] }, { "tag": "rect", "attr": { "x": "2", "y": "16", "width": "6", "height": "6", "rx": "1" }, "child": [] }, { "tag": "rect", "attr": { "x": "9", "y": "2", "width": "6", "height": "6", "rx": "1" }, "child": [] }, { "tag": "path", "attr": { "d": "M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 12V8" }, "child": [] }] })(props);
|
|
224
|
+
}
|
|
225
|
+
function LuMusic(props) {
|
|
226
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M9 18V5l12-2v13" }, "child": [] }, { "tag": "circle", "attr": { "cx": "6", "cy": "18", "r": "3" }, "child": [] }, { "tag": "circle", "attr": { "cx": "18", "cy": "16", "r": "3" }, "child": [] }] })(props);
|
|
227
|
+
}
|
|
228
|
+
function LuMousePointerClick(props) {
|
|
229
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M14 4.1 12 6" }, "child": [] }, { "tag": "path", "attr": { "d": "m5.1 8-2.9-.8" }, "child": [] }, { "tag": "path", "attr": { "d": "m6 12-1.9 2" }, "child": [] }, { "tag": "path", "attr": { "d": "M7.2 2.2 8 5.1" }, "child": [] }, { "tag": "path", "attr": { "d": "M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z" }, "child": [] }] })(props);
|
|
230
|
+
}
|
|
231
|
+
function LuMoon(props) {
|
|
232
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" }, "child": [] }] })(props);
|
|
233
|
+
}
|
|
234
|
+
function LuMinus(props) {
|
|
235
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M5 12h14" }, "child": [] }] })(props);
|
|
236
|
+
}
|
|
237
|
+
function LuMaximize2(props) {
|
|
238
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "15 3 21 3 21 9" }, "child": [] }, { "tag": "polyline", "attr": { "points": "9 21 3 21 3 15" }, "child": [] }, { "tag": "line", "attr": { "x1": "21", "x2": "14", "y1": "3", "y2": "10" }, "child": [] }, { "tag": "line", "attr": { "x1": "3", "x2": "10", "y1": "21", "y2": "14" }, "child": [] }] })(props);
|
|
239
|
+
}
|
|
240
|
+
function LuLogOut(props) {
|
|
241
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }, "child": [] }, { "tag": "polyline", "attr": { "points": "16 17 21 12 16 7" }, "child": [] }, { "tag": "line", "attr": { "x1": "21", "x2": "9", "y1": "12", "y2": "12" }, "child": [] }] })(props);
|
|
242
|
+
}
|
|
243
|
+
function LuLock(props) {
|
|
244
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "width": "18", "height": "11", "x": "3", "y": "11", "rx": "2", "ry": "2" }, "child": [] }, { "tag": "path", "attr": { "d": "M7 11V7a5 5 0 0 1 10 0v4" }, "child": [] }] })(props);
|
|
245
|
+
}
|
|
246
|
+
function LuLockOpen(props) {
|
|
247
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "width": "18", "height": "11", "x": "3", "y": "11", "rx": "2", "ry": "2" }, "child": [] }, { "tag": "path", "attr": { "d": "M7 11V7a5 5 0 0 1 9.9-1" }, "child": [] }] })(props);
|
|
248
|
+
}
|
|
249
|
+
function LuLoaderCircle(props) {
|
|
250
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M21 12a9 9 0 1 1-6.219-8.56" }, "child": [] }] })(props);
|
|
251
|
+
}
|
|
252
|
+
function LuList(props) {
|
|
253
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M3 12h.01" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 18h.01" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 6h.01" }, "child": [] }, { "tag": "path", "attr": { "d": "M8 12h13" }, "child": [] }, { "tag": "path", "attr": { "d": "M8 18h13" }, "child": [] }, { "tag": "path", "attr": { "d": "M8 6h13" }, "child": [] }] })(props);
|
|
254
|
+
}
|
|
255
|
+
function LuListOrdered(props) {
|
|
256
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M10 12h11" }, "child": [] }, { "tag": "path", "attr": { "d": "M10 18h11" }, "child": [] }, { "tag": "path", "attr": { "d": "M10 6h11" }, "child": [] }, { "tag": "path", "attr": { "d": "M4 10h2" }, "child": [] }, { "tag": "path", "attr": { "d": "M4 6h1v4" }, "child": [] }, { "tag": "path", "attr": { "d": "M6 18H4c0-1 2-2 2-3s-1-1.5-2-1" }, "child": [] }] })(props);
|
|
257
|
+
}
|
|
258
|
+
function LuLink(props) {
|
|
259
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }, "child": [] }, { "tag": "path", "attr": { "d": "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" }, "child": [] }] })(props);
|
|
260
|
+
}
|
|
261
|
+
function LuLink2(props) {
|
|
262
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M9 17H7A5 5 0 0 1 7 7h2" }, "child": [] }, { "tag": "path", "attr": { "d": "M15 7h2a5 5 0 1 1 0 10h-2" }, "child": [] }, { "tag": "line", "attr": { "x1": "8", "x2": "16", "y1": "12", "y2": "12" }, "child": [] }] })(props);
|
|
263
|
+
}
|
|
264
|
+
function LuLayoutDashboard(props) {
|
|
265
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "width": "7", "height": "9", "x": "3", "y": "3", "rx": "1" }, "child": [] }, { "tag": "rect", "attr": { "width": "7", "height": "5", "x": "14", "y": "3", "rx": "1" }, "child": [] }, { "tag": "rect", "attr": { "width": "7", "height": "9", "x": "14", "y": "12", "rx": "1" }, "child": [] }, { "tag": "rect", "attr": { "width": "7", "height": "5", "x": "3", "y": "16", "rx": "1" }, "child": [] }] })(props);
|
|
266
|
+
}
|
|
267
|
+
function LuKey(props) {
|
|
268
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4" }, "child": [] }, { "tag": "path", "attr": { "d": "m21 2-9.6 9.6" }, "child": [] }, { "tag": "circle", "attr": { "cx": "7.5", "cy": "15.5", "r": "5.5" }, "child": [] }] })(props);
|
|
269
|
+
}
|
|
270
|
+
function LuItalic(props) {
|
|
271
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "line", "attr": { "x1": "19", "x2": "10", "y1": "4", "y2": "4" }, "child": [] }, { "tag": "line", "attr": { "x1": "14", "x2": "5", "y1": "20", "y2": "20" }, "child": [] }, { "tag": "line", "attr": { "x1": "15", "x2": "9", "y1": "4", "y2": "20" }, "child": [] }] })(props);
|
|
272
|
+
}
|
|
273
|
+
function LuInfo(props) {
|
|
274
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "10" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 16v-4" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 8h.01" }, "child": [] }] })(props);
|
|
275
|
+
}
|
|
276
|
+
function LuImage(props) {
|
|
277
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "width": "18", "height": "18", "x": "3", "y": "3", "rx": "2", "ry": "2" }, "child": [] }, { "tag": "circle", "attr": { "cx": "9", "cy": "9", "r": "2" }, "child": [] }, { "tag": "path", "attr": { "d": "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" }, "child": [] }] })(props);
|
|
278
|
+
}
|
|
279
|
+
function LuHexagon(props) {
|
|
280
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" }, "child": [] }] })(props);
|
|
281
|
+
}
|
|
282
|
+
function LuHeading1(props) {
|
|
283
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M4 12h8" }, "child": [] }, { "tag": "path", "attr": { "d": "M4 18V6" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 18V6" }, "child": [] }, { "tag": "path", "attr": { "d": "m17 12 3-2v8" }, "child": [] }] })(props);
|
|
284
|
+
}
|
|
285
|
+
function LuGripVertical(props) {
|
|
286
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "9", "cy": "12", "r": "1" }, "child": [] }, { "tag": "circle", "attr": { "cx": "9", "cy": "5", "r": "1" }, "child": [] }, { "tag": "circle", "attr": { "cx": "9", "cy": "19", "r": "1" }, "child": [] }, { "tag": "circle", "attr": { "cx": "15", "cy": "12", "r": "1" }, "child": [] }, { "tag": "circle", "attr": { "cx": "15", "cy": "5", "r": "1" }, "child": [] }, { "tag": "circle", "attr": { "cx": "15", "cy": "19", "r": "1" }, "child": [] }] })(props);
|
|
287
|
+
}
|
|
288
|
+
function LuGrid3X3(props) {
|
|
289
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "width": "18", "height": "18", "x": "3", "y": "3", "rx": "2" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 9h18" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 15h18" }, "child": [] }, { "tag": "path", "attr": { "d": "M9 3v18" }, "child": [] }, { "tag": "path", "attr": { "d": "M15 3v18" }, "child": [] }] })(props);
|
|
290
|
+
}
|
|
291
|
+
function LuFolder(props) {
|
|
292
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" }, "child": [] }] })(props);
|
|
293
|
+
}
|
|
294
|
+
function LuFolderPlus(props) {
|
|
295
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M12 10v6" }, "child": [] }, { "tag": "path", "attr": { "d": "M9 13h6" }, "child": [] }, { "tag": "path", "attr": { "d": "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" }, "child": [] }] })(props);
|
|
296
|
+
}
|
|
297
|
+
function LuFolderInput(props) {
|
|
298
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1" }, "child": [] }, { "tag": "path", "attr": { "d": "M2 13h10" }, "child": [] }, { "tag": "path", "attr": { "d": "m9 16 3-3-3-3" }, "child": [] }] })(props);
|
|
299
|
+
}
|
|
300
|
+
function LuFilm(props) {
|
|
301
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "width": "18", "height": "18", "x": "3", "y": "3", "rx": "2" }, "child": [] }, { "tag": "path", "attr": { "d": "M7 3v18" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 7.5h4" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 12h18" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 16.5h4" }, "child": [] }, { "tag": "path", "attr": { "d": "M17 3v18" }, "child": [] }, { "tag": "path", "attr": { "d": "M17 7.5h4" }, "child": [] }, { "tag": "path", "attr": { "d": "M17 16.5h4" }, "child": [] }] })(props);
|
|
302
|
+
}
|
|
303
|
+
function LuFile(props) {
|
|
304
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }, "child": [] }, { "tag": "path", "attr": { "d": "M14 2v4a2 2 0 0 0 2 2h4" }, "child": [] }] })(props);
|
|
305
|
+
}
|
|
306
|
+
function LuFileText(props) {
|
|
307
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }, "child": [] }, { "tag": "path", "attr": { "d": "M14 2v4a2 2 0 0 0 2 2h4" }, "child": [] }, { "tag": "path", "attr": { "d": "M10 9H8" }, "child": [] }, { "tag": "path", "attr": { "d": "M16 13H8" }, "child": [] }, { "tag": "path", "attr": { "d": "M16 17H8" }, "child": [] }] })(props);
|
|
308
|
+
}
|
|
309
|
+
function LuEye(props) {
|
|
310
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }, "child": [] }, { "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "3" }, "child": [] }] })(props);
|
|
311
|
+
}
|
|
312
|
+
function LuEyeOff(props) {
|
|
313
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }, "child": [] }, { "tag": "path", "attr": { "d": "M14.084 14.158a3 3 0 0 1-4.242-4.242" }, "child": [] }, { "tag": "path", "attr": { "d": "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" }, "child": [] }, { "tag": "path", "attr": { "d": "m2 2 20 20" }, "child": [] }] })(props);
|
|
314
|
+
}
|
|
315
|
+
function LuExternalLink(props) {
|
|
316
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M15 3h6v6" }, "child": [] }, { "tag": "path", "attr": { "d": "M10 14 21 3" }, "child": [] }, { "tag": "path", "attr": { "d": "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }, "child": [] }] })(props);
|
|
317
|
+
}
|
|
318
|
+
function LuEllipsisVertical(props) {
|
|
319
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "1" }, "child": [] }, { "tag": "circle", "attr": { "cx": "12", "cy": "5", "r": "1" }, "child": [] }, { "tag": "circle", "attr": { "cx": "12", "cy": "19", "r": "1" }, "child": [] }] })(props);
|
|
320
|
+
}
|
|
321
|
+
function LuDownload(props) {
|
|
322
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }, "child": [] }, { "tag": "polyline", "attr": { "points": "7 10 12 15 17 10" }, "child": [] }, { "tag": "line", "attr": { "x1": "12", "x2": "12", "y1": "15", "y2": "3" }, "child": [] }] })(props);
|
|
323
|
+
}
|
|
324
|
+
function LuDatabase(props) {
|
|
325
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "ellipse", "attr": { "cx": "12", "cy": "5", "rx": "9", "ry": "3" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 5V19A9 3 0 0 0 21 19V5" }, "child": [] }, { "tag": "path", "attr": { "d": "M3 12A9 3 0 0 0 21 12" }, "child": [] }] })(props);
|
|
326
|
+
}
|
|
327
|
+
function LuCrop(props) {
|
|
328
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M6 2v14a2 2 0 0 0 2 2h14" }, "child": [] }, { "tag": "path", "attr": { "d": "M18 22V8a2 2 0 0 0-2-2H2" }, "child": [] }] })(props);
|
|
329
|
+
}
|
|
330
|
+
function LuCopy(props) {
|
|
331
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "width": "14", "height": "14", "x": "8", "y": "8", "rx": "2", "ry": "2" }, "child": [] }, { "tag": "path", "attr": { "d": "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" }, "child": [] }] })(props);
|
|
332
|
+
}
|
|
333
|
+
function LuColumns3(props) {
|
|
334
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "width": "18", "height": "18", "x": "3", "y": "3", "rx": "2" }, "child": [] }, { "tag": "path", "attr": { "d": "M9 3v18" }, "child": [] }, { "tag": "path", "attr": { "d": "M15 3v18" }, "child": [] }] })(props);
|
|
335
|
+
}
|
|
336
|
+
function LuCode(props) {
|
|
337
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "16 18 22 12 16 6" }, "child": [] }, { "tag": "polyline", "attr": { "points": "8 6 2 12 8 18" }, "child": [] }] })(props);
|
|
338
|
+
}
|
|
339
|
+
function LuCodeXml(props) {
|
|
340
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "m18 16 4-4-4-4" }, "child": [] }, { "tag": "path", "attr": { "d": "m6 8-4 4 4 4" }, "child": [] }, { "tag": "path", "attr": { "d": "m14.5 4-5 16" }, "child": [] }] })(props);
|
|
341
|
+
}
|
|
342
|
+
function LuClock(props) {
|
|
343
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "10" }, "child": [] }, { "tag": "polyline", "attr": { "points": "12 6 12 12 16 14" }, "child": [] }] })(props);
|
|
344
|
+
}
|
|
345
|
+
function LuCirclePlay(props) {
|
|
346
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "10" }, "child": [] }, { "tag": "polygon", "attr": { "points": "10 8 16 12 10 16 10 8" }, "child": [] }] })(props);
|
|
347
|
+
}
|
|
348
|
+
function LuCircleCheck(props) {
|
|
349
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "10" }, "child": [] }, { "tag": "path", "attr": { "d": "m9 12 2 2 4-4" }, "child": [] }] })(props);
|
|
350
|
+
}
|
|
351
|
+
function LuChevronUp(props) {
|
|
352
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "m18 15-6-6-6 6" }, "child": [] }] })(props);
|
|
353
|
+
}
|
|
354
|
+
function LuChevronRight(props) {
|
|
355
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "m9 18 6-6-6-6" }, "child": [] }] })(props);
|
|
356
|
+
}
|
|
357
|
+
function LuChevronDown(props) {
|
|
358
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "m6 9 6 6 6-6" }, "child": [] }] })(props);
|
|
359
|
+
}
|
|
360
|
+
function LuCheck(props) {
|
|
361
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M20 6 9 17l-5-5" }, "child": [] }] })(props);
|
|
362
|
+
}
|
|
363
|
+
function LuBox(props) {
|
|
364
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z" }, "child": [] }, { "tag": "path", "attr": { "d": "m3.3 7 8.7 5 8.7-5" }, "child": [] }, { "tag": "path", "attr": { "d": "M12 22V12" }, "child": [] }] })(props);
|
|
365
|
+
}
|
|
366
|
+
function LuBold(props) {
|
|
367
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8" }, "child": [] }] })(props);
|
|
368
|
+
}
|
|
369
|
+
function LuArrowUpRight(props) {
|
|
370
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M7 7h10v10" }, "child": [] }, { "tag": "path", "attr": { "d": "M7 17 17 7" }, "child": [] }] })(props);
|
|
371
|
+
}
|
|
372
|
+
function LuArrowRight(props) {
|
|
373
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M5 12h14" }, "child": [] }, { "tag": "path", "attr": { "d": "m12 5 7 7-7 7" }, "child": [] }] })(props);
|
|
374
|
+
}
|
|
375
|
+
function LuArrowDown(props) {
|
|
376
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M12 5v14" }, "child": [] }, { "tag": "path", "attr": { "d": "m19 12-7 7-7-7" }, "child": [] }] })(props);
|
|
377
|
+
}
|
|
378
|
+
function LuArchive(props) {
|
|
379
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "rect", "attr": { "width": "20", "height": "5", "x": "2", "y": "3", "rx": "1" }, "child": [] }, { "tag": "path", "attr": { "d": "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }, "child": [] }, { "tag": "path", "attr": { "d": "M10 12h4" }, "child": [] }] })(props);
|
|
380
|
+
}
|
|
381
|
+
function LuAlignLeft(props) {
|
|
382
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M15 12H3" }, "child": [] }, { "tag": "path", "attr": { "d": "M17 18H3" }, "child": [] }, { "tag": "path", "attr": { "d": "M21 6H3" }, "child": [] }] })(props);
|
|
383
|
+
}
|
|
384
|
+
function LuActivity(props) {
|
|
385
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "d": "M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2" }, "child": [] }] })(props);
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
exports.LuActivity = LuActivity;
|
|
389
|
+
exports.LuAlignLeft = LuAlignLeft;
|
|
390
|
+
exports.LuArchive = LuArchive;
|
|
391
|
+
exports.LuArrowDown = LuArrowDown;
|
|
392
|
+
exports.LuArrowRight = LuArrowRight;
|
|
393
|
+
exports.LuArrowUpRight = LuArrowUpRight;
|
|
394
|
+
exports.LuBold = LuBold;
|
|
395
|
+
exports.LuBox = LuBox;
|
|
396
|
+
exports.LuCheck = LuCheck;
|
|
397
|
+
exports.LuChevronDown = LuChevronDown;
|
|
398
|
+
exports.LuChevronRight = LuChevronRight;
|
|
399
|
+
exports.LuChevronUp = LuChevronUp;
|
|
400
|
+
exports.LuCircleCheck = LuCircleCheck;
|
|
401
|
+
exports.LuCirclePlay = LuCirclePlay;
|
|
402
|
+
exports.LuClock = LuClock;
|
|
403
|
+
exports.LuCode = LuCode;
|
|
404
|
+
exports.LuCodeXml = LuCodeXml;
|
|
405
|
+
exports.LuColumns3 = LuColumns3;
|
|
406
|
+
exports.LuCopy = LuCopy;
|
|
407
|
+
exports.LuCrop = LuCrop;
|
|
408
|
+
exports.LuDatabase = LuDatabase;
|
|
409
|
+
exports.LuDownload = LuDownload;
|
|
410
|
+
exports.LuEllipsisVertical = LuEllipsisVertical;
|
|
411
|
+
exports.LuExternalLink = LuExternalLink;
|
|
412
|
+
exports.LuEye = LuEye;
|
|
413
|
+
exports.LuEyeOff = LuEyeOff;
|
|
414
|
+
exports.LuFile = LuFile;
|
|
415
|
+
exports.LuFileText = LuFileText;
|
|
416
|
+
exports.LuFilm = LuFilm;
|
|
417
|
+
exports.LuFolder = LuFolder;
|
|
418
|
+
exports.LuFolderInput = LuFolderInput;
|
|
419
|
+
exports.LuFolderPlus = LuFolderPlus;
|
|
420
|
+
exports.LuGrid3X3 = LuGrid3X3;
|
|
421
|
+
exports.LuGripVertical = LuGripVertical;
|
|
422
|
+
exports.LuHeading1 = LuHeading1;
|
|
423
|
+
exports.LuHexagon = LuHexagon;
|
|
424
|
+
exports.LuImage = LuImage;
|
|
425
|
+
exports.LuInfo = LuInfo;
|
|
426
|
+
exports.LuItalic = LuItalic;
|
|
427
|
+
exports.LuKey = LuKey;
|
|
428
|
+
exports.LuLayoutDashboard = LuLayoutDashboard;
|
|
429
|
+
exports.LuLink = LuLink;
|
|
430
|
+
exports.LuLink2 = LuLink2;
|
|
431
|
+
exports.LuList = LuList;
|
|
432
|
+
exports.LuListOrdered = LuListOrdered;
|
|
433
|
+
exports.LuLoaderCircle = LuLoaderCircle;
|
|
434
|
+
exports.LuLock = LuLock;
|
|
435
|
+
exports.LuLockOpen = LuLockOpen;
|
|
436
|
+
exports.LuLogOut = LuLogOut;
|
|
437
|
+
exports.LuMaximize2 = LuMaximize2;
|
|
438
|
+
exports.LuMinus = LuMinus;
|
|
439
|
+
exports.LuMoon = LuMoon;
|
|
440
|
+
exports.LuMousePointerClick = LuMousePointerClick;
|
|
441
|
+
exports.LuMusic = LuMusic;
|
|
442
|
+
exports.LuNetwork = LuNetwork;
|
|
443
|
+
exports.LuPalette = LuPalette;
|
|
444
|
+
exports.LuPause = LuPause;
|
|
445
|
+
exports.LuPlay = LuPlay;
|
|
446
|
+
exports.LuPlus = LuPlus;
|
|
447
|
+
exports.LuRedo = LuRedo;
|
|
448
|
+
exports.LuRefreshCcw = LuRefreshCcw;
|
|
449
|
+
exports.LuRefreshCw = LuRefreshCw;
|
|
450
|
+
exports.LuSave = LuSave;
|
|
451
|
+
exports.LuSearch = LuSearch;
|
|
452
|
+
exports.LuSend = LuSend;
|
|
453
|
+
exports.LuSettings = LuSettings;
|
|
454
|
+
exports.LuShield = LuShield;
|
|
455
|
+
exports.LuShieldAlert = LuShieldAlert;
|
|
456
|
+
exports.LuSparkles = LuSparkles;
|
|
457
|
+
exports.LuStar = LuStar;
|
|
458
|
+
exports.LuStrikethrough = LuStrikethrough;
|
|
459
|
+
exports.LuSun = LuSun;
|
|
460
|
+
exports.LuTag = LuTag;
|
|
461
|
+
exports.LuTerminal = LuTerminal;
|
|
462
|
+
exports.LuTrash2 = LuTrash2;
|
|
463
|
+
exports.LuTriangleAlert = LuTriangleAlert;
|
|
464
|
+
exports.LuUnderline = LuUnderline;
|
|
465
|
+
exports.LuUndo = LuUndo;
|
|
466
|
+
exports.LuUserPlus = LuUserPlus;
|
|
467
|
+
exports.LuUsers = LuUsers;
|
|
468
|
+
exports.LuVideo = LuVideo;
|
|
469
|
+
exports.LuWebhook = LuWebhook;
|
|
470
|
+
exports.LuX = LuX;
|
|
471
|
+
exports.LuZap = LuZap;
|
|
472
|
+
//# sourceMappingURL=out.js.map
|
|
473
|
+
//# sourceMappingURL=chunk-GOACG6R7.cjs.map
|