@maizzle/framework
Version:
Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.
2,401 lines (2,400 loc) • 1.11 MB
JavaScript
import { n as __exportAll } from "./chunk-EAsCxrDo.js";
import { St as inject, W as computed, Wt as provide, mt as h } from "./vue.runtime.esm-bundler-Dz9O_TVp.js";
//#region ../../home/cosmin/Work/maizzle/framework/node_modules/@lucide/vue/dist/esm/shared/src/utils/isEmptyString.mjs
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var isEmptyString = (value) => value === "";
//#endregion
//#region ../../home/cosmin/Work/maizzle/framework/node_modules/@lucide/vue/dist/esm/shared/src/utils/mergeClasses.mjs
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var mergeClasses = (...classes) => classes.filter((className, index, array) => {
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
}).join(" ").trim();
//#endregion
//#region ../../home/cosmin/Work/maizzle/framework/node_modules/@lucide/vue/dist/esm/shared/src/utils/toKebabCase.mjs
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
//#endregion
//#region ../../home/cosmin/Work/maizzle/framework/node_modules/@lucide/vue/dist/esm/shared/src/utils/toCamelCase.mjs
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var toCamelCase = (string) => string.replace(/^([A-Z])|[\s-_]+(\w)/g, (match, p1, p2) => p2 ? p2.toUpperCase() : p1.toLowerCase());
//#endregion
//#region ../../home/cosmin/Work/maizzle/framework/node_modules/@lucide/vue/dist/esm/shared/src/utils/toPascalCase.mjs
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var toPascalCase = (string) => {
const camelCase = toCamelCase(string);
return camelCase.charAt(0).toUpperCase() + camelCase.slice(1);
};
//#endregion
//#region ../../home/cosmin/Work/maizzle/framework/node_modules/@lucide/vue/dist/esm/defaultAttributes.mjs
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var defaultAttributes = {
xmlns: "http://www.w3.org/2000/svg",
width: 24,
height: 24,
viewBox: "0 0 24 24",
fill: "none",
stroke: "currentColor",
"stroke-width": 2,
"stroke-linecap": "round",
"stroke-linejoin": "round"
};
//#endregion
//#region ../../home/cosmin/Work/maizzle/framework/node_modules/@lucide/vue/dist/esm/context.mjs
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var LUCIDE_CONTEXT = Symbol("lucide-icons");
function setLucideProps(props) {
return provide(LUCIDE_CONTEXT, props);
}
function useLucideProps() {
return inject(LUCIDE_CONTEXT, {});
}
//#endregion
//#region ../../home/cosmin/Work/maizzle/framework/node_modules/@lucide/vue/dist/esm/Icon.mjs
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Icon = ({ name, iconNode, absoluteStrokeWidth, "absolute-stroke-width": absoluteStrokeWidthKebabCase, strokeWidth, "stroke-width": strokeWidthKebabCase, size, color, ...props }, { slots }) => {
const { size: contextSize, color: contextColor, strokeWidth: contextStrokeWidth = 2, absoluteStrokeWidth: contextAbsoluteStrokeWidth = false, class: contextClass = "" } = useLucideProps();
const calculatedStrokeWidth = computed(() => {
const isAbsoluteStrokeWidth = isEmptyString(absoluteStrokeWidth) || isEmptyString(absoluteStrokeWidthKebabCase) || absoluteStrokeWidth === true || absoluteStrokeWidthKebabCase === true || contextAbsoluteStrokeWidth === true;
const strokeWidthValue = strokeWidth || strokeWidthKebabCase || contextStrokeWidth || defaultAttributes["stroke-width"];
if (isAbsoluteStrokeWidth) return Number(strokeWidthValue) * 24 / Number(size ?? contextSize ?? defaultAttributes.width);
return strokeWidthValue;
});
return h("svg", {
...defaultAttributes,
...props,
width: size ?? contextSize ?? defaultAttributes.width,
height: size ?? contextSize ?? defaultAttributes.height,
stroke: color ?? contextColor ?? defaultAttributes.stroke,
"stroke-width": calculatedStrokeWidth.value,
class: mergeClasses("lucide", contextClass, ...name ? [`lucide-${toKebabCase(toPascalCase(name))}-icon`, `lucide-${toKebabCase(name)}`] : ["lucide-icon"])
}, [...iconNode.map((child) => h(...child)), ...slots.default ? [slots.default()] : []]);
};
//#endregion
//#region ../../home/cosmin/Work/maizzle/framework/node_modules/@lucide/vue/dist/esm/createLucideIcon.mjs
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var createLucideIcon = (iconName, iconNode) => (props, { slots, attrs }) => h(Icon, {
...attrs,
...props,
iconNode,
name: iconName
}, slots.default ? { default: slots.default } : void 0);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AArrowDown = createLucideIcon("a-arrow-down", [
["path", {
d: "m14 12 4 4 4-4",
key: "buelq4"
}],
["path", {
d: "M18 16V7",
key: "ty0viw"
}],
["path", {
d: "m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",
key: "d5nyq2"
}],
["path", {
d: "M3.304 13h6.392",
key: "1q3zxz"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AArrowUp = createLucideIcon("a-arrow-up", [
["path", {
d: "m14 11 4-4 4 4",
key: "1pu57t"
}],
["path", {
d: "M18 16V7",
key: "ty0viw"
}],
["path", {
d: "m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",
key: "d5nyq2"
}],
["path", {
d: "M3.304 13h6.392",
key: "1q3zxz"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Accessibility = createLucideIcon("accessibility", [
["circle", {
cx: "16",
cy: "4",
r: "1",
key: "1grugj"
}],
["path", {
d: "m18 19 1-7-6 1",
key: "r0i19z"
}],
["path", {
d: "m5 8 3-3 5.5 3-2.36 3.5",
key: "9ptxx2"
}],
["path", {
d: "M4.24 14.5a5 5 0 0 0 6.88 6",
key: "10kmtu"
}],
["path", {
d: "M13.76 17.5a5 5 0 0 0-6.88-6",
key: "2qq6rc"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ALargeSmall = createLucideIcon("a-large-small", [
["path", {
d: "m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16",
key: "xik6mr"
}],
["path", {
d: "M15.697 14h5.606",
key: "1stdlc"
}],
["path", {
d: "m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",
key: "d5nyq2"
}],
["path", {
d: "M3.304 13h6.392",
key: "1q3zxz"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Activity = createLucideIcon("activity", [["path", {
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",
key: "169zse"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AirVent = createLucideIcon("air-vent", [
["path", {
d: "M18 17.5a2.5 2.5 0 1 1-4 2.03V12",
key: "yd12zl"
}],
["path", {
d: "M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",
key: "larmp2"
}],
["path", {
d: "M6 8h12",
key: "6g4wlu"
}],
["path", {
d: "M6.6 15.572A2 2 0 1 0 10 17v-5",
key: "1x1kqn"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Airplay = createLucideIcon("airplay", [["path", {
d: "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1",
key: "ns4c3b"
}], ["path", {
d: "m12 15 5 6H7Z",
key: "14qnn2"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlarmClockCheck = createLucideIcon("alarm-clock-check", [
["circle", {
cx: "12",
cy: "13",
r: "8",
key: "3y4lt7"
}],
["path", {
d: "M5 3 2 6",
key: "18tl5t"
}],
["path", {
d: "m22 6-3-3",
key: "1opdir"
}],
["path", {
d: "M6.38 18.7 4 21",
key: "17xu3x"
}],
["path", {
d: "M17.64 18.67 20 21",
key: "kv2oe2"
}],
["path", {
d: "m9 13 2 2 4-4",
key: "6343dt"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlarmClockMinus = createLucideIcon("alarm-clock-minus", [
["circle", {
cx: "12",
cy: "13",
r: "8",
key: "3y4lt7"
}],
["path", {
d: "M5 3 2 6",
key: "18tl5t"
}],
["path", {
d: "m22 6-3-3",
key: "1opdir"
}],
["path", {
d: "M6.38 18.7 4 21",
key: "17xu3x"
}],
["path", {
d: "M17.64 18.67 20 21",
key: "kv2oe2"
}],
["path", {
d: "M9 13h6",
key: "1uhe8q"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlarmClockOff = createLucideIcon("alarm-clock-off", [
["path", {
d: "M6.87 6.87a8 8 0 1 0 11.26 11.26",
key: "3on8tj"
}],
["path", {
d: "M19.9 14.25a8 8 0 0 0-9.15-9.15",
key: "15ghsc"
}],
["path", {
d: "m22 6-3-3",
key: "1opdir"
}],
["path", {
d: "M6.26 18.67 4 21",
key: "yzmioq"
}],
["path", {
d: "m2 2 20 20",
key: "1ooewy"
}],
["path", {
d: "M4 4 2 6",
key: "1ycko6"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlarmClockPlus = createLucideIcon("alarm-clock-plus", [
["circle", {
cx: "12",
cy: "13",
r: "8",
key: "3y4lt7"
}],
["path", {
d: "M5 3 2 6",
key: "18tl5t"
}],
["path", {
d: "m22 6-3-3",
key: "1opdir"
}],
["path", {
d: "M6.38 18.7 4 21",
key: "17xu3x"
}],
["path", {
d: "M17.64 18.67 20 21",
key: "kv2oe2"
}],
["path", {
d: "M12 10v6",
key: "1bos4e"
}],
["path", {
d: "M9 13h6",
key: "1uhe8q"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlarmClock = createLucideIcon("alarm-clock", [
["circle", {
cx: "12",
cy: "13",
r: "8",
key: "3y4lt7"
}],
["path", {
d: "M12 9v4l2 2",
key: "1c63tq"
}],
["path", {
d: "M5 3 2 6",
key: "18tl5t"
}],
["path", {
d: "m22 6-3-3",
key: "1opdir"
}],
["path", {
d: "M6.38 18.7 4 21",
key: "17xu3x"
}],
["path", {
d: "M17.64 18.67 20 21",
key: "kv2oe2"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlarmSmoke = createLucideIcon("alarm-smoke", [
["path", {
d: "M11 21c0-2.5 2-2.5 2-5",
key: "1sicvv"
}],
["path", {
d: "M16 21c0-2.5 2-2.5 2-5",
key: "1o3eny"
}],
["path", {
d: "m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8",
key: "1bvca4"
}],
["path", {
d: "M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z",
key: "x3qr1j"
}],
["path", {
d: "M6 21c0-2.5 2-2.5 2-5",
key: "i3w1gp"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Album = createLucideIcon("album", [["rect", {
width: "18",
height: "18",
x: "3",
y: "3",
rx: "2",
ry: "2",
key: "1m3agn"
}], ["polyline", {
points: "11 3 11 11 14 8 17 11 17 3",
key: "1wcwz3"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignCenterHorizontal = createLucideIcon("align-center-horizontal", [
["path", {
d: "M2 12h20",
key: "9i4pu4"
}],
["path", {
d: "M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4",
key: "11f1s0"
}],
["path", {
d: "M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4",
key: "t14dx9"
}],
["path", {
d: "M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1",
key: "1w07xs"
}],
["path", {
d: "M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1",
key: "1apec2"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignCenterVertical = createLucideIcon("align-center-vertical", [
["path", {
d: "M12 2v20",
key: "t6zp3m"
}],
["path", {
d: "M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4",
key: "14d6g8"
}],
["path", {
d: "M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4",
key: "1e2lrw"
}],
["path", {
d: "M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1",
key: "1fkdwx"
}],
["path", {
d: "M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1",
key: "1euafb"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignEndHorizontal = createLucideIcon("align-end-horizontal", [
["rect", {
width: "6",
height: "16",
x: "4",
y: "2",
rx: "2",
key: "z5wdxg"
}],
["rect", {
width: "6",
height: "9",
x: "14",
y: "9",
rx: "2",
key: "um7a8w"
}],
["path", {
d: "M22 22H2",
key: "19qnx5"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignEndVertical = createLucideIcon("align-end-vertical", [
["rect", {
width: "16",
height: "6",
x: "2",
y: "4",
rx: "2",
key: "10wcwx"
}],
["rect", {
width: "9",
height: "6",
x: "9",
y: "14",
rx: "2",
key: "4p5bwg"
}],
["path", {
d: "M22 22V2",
key: "12ipfv"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignHorizontalDistributeCenter = createLucideIcon("align-horizontal-distribute-center", [
["rect", {
width: "6",
height: "14",
x: "4",
y: "5",
rx: "2",
key: "1wwnby"
}],
["rect", {
width: "6",
height: "10",
x: "14",
y: "7",
rx: "2",
key: "1fe6j6"
}],
["path", {
d: "M17 22v-5",
key: "4b6g73"
}],
["path", {
d: "M17 7V2",
key: "hnrr36"
}],
["path", {
d: "M7 22v-3",
key: "1r4jpn"
}],
["path", {
d: "M7 5V2",
key: "liy1u9"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignHorizontalDistributeEnd = createLucideIcon("align-horizontal-distribute-end", [
["rect", {
width: "6",
height: "14",
x: "4",
y: "5",
rx: "2",
key: "1wwnby"
}],
["rect", {
width: "6",
height: "10",
x: "14",
y: "7",
rx: "2",
key: "1fe6j6"
}],
["path", {
d: "M10 2v20",
key: "uyc634"
}],
["path", {
d: "M20 2v20",
key: "1tx262"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignHorizontalDistributeStart = createLucideIcon("align-horizontal-distribute-start", [
["rect", {
width: "6",
height: "14",
x: "4",
y: "5",
rx: "2",
key: "1wwnby"
}],
["rect", {
width: "6",
height: "10",
x: "14",
y: "7",
rx: "2",
key: "1fe6j6"
}],
["path", {
d: "M4 2v20",
key: "gtpd5x"
}],
["path", {
d: "M14 2v20",
key: "tg6bpw"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignHorizontalJustifyCenter = createLucideIcon("align-horizontal-justify-center", [
["rect", {
width: "6",
height: "14",
x: "2",
y: "5",
rx: "2",
key: "dy24zr"
}],
["rect", {
width: "6",
height: "10",
x: "16",
y: "7",
rx: "2",
key: "13zkjt"
}],
["path", {
d: "M12 2v20",
key: "t6zp3m"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignHorizontalJustifyEnd = createLucideIcon("align-horizontal-justify-end", [
["rect", {
width: "6",
height: "14",
x: "2",
y: "5",
rx: "2",
key: "dy24zr"
}],
["rect", {
width: "6",
height: "10",
x: "12",
y: "7",
rx: "2",
key: "1ht384"
}],
["path", {
d: "M22 2v20",
key: "40qfg1"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignHorizontalJustifyStart = createLucideIcon("align-horizontal-justify-start", [
["rect", {
width: "6",
height: "14",
x: "6",
y: "5",
rx: "2",
key: "hsirpf"
}],
["rect", {
width: "6",
height: "10",
x: "16",
y: "7",
rx: "2",
key: "13zkjt"
}],
["path", {
d: "M2 2v20",
key: "1ivd8o"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignHorizontalSpaceAround = createLucideIcon("align-horizontal-space-around", [
["rect", {
width: "6",
height: "10",
x: "9",
y: "7",
rx: "2",
key: "yn7j0q"
}],
["path", {
d: "M4 22V2",
key: "tsjzd3"
}],
["path", {
d: "M20 22V2",
key: "1bnhr8"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignStartHorizontal = createLucideIcon("align-start-horizontal", [
["rect", {
width: "6",
height: "16",
x: "4",
y: "6",
rx: "2",
key: "1n4dg1"
}],
["rect", {
width: "6",
height: "9",
x: "14",
y: "6",
rx: "2",
key: "17khns"
}],
["path", {
d: "M22 2H2",
key: "fhrpnj"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignHorizontalSpaceBetween = createLucideIcon("align-horizontal-space-between", [
["rect", {
width: "6",
height: "14",
x: "3",
y: "5",
rx: "2",
key: "j77dae"
}],
["rect", {
width: "6",
height: "10",
x: "15",
y: "7",
rx: "2",
key: "bq30hj"
}],
["path", {
d: "M3 2v20",
key: "1d2pfg"
}],
["path", {
d: "M21 2v20",
key: "p059bm"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignStartVertical = createLucideIcon("align-start-vertical", [
["rect", {
width: "9",
height: "6",
x: "6",
y: "14",
rx: "2",
key: "lpm2y7"
}],
["rect", {
width: "16",
height: "6",
x: "6",
y: "4",
rx: "2",
key: "rdj6ps"
}],
["path", {
d: "M2 2v20",
key: "1ivd8o"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignVerticalDistributeCenter = createLucideIcon("align-vertical-distribute-center", [
["path", {
d: "M22 17h-3",
key: "1lwga1"
}],
["path", {
d: "M22 7h-5",
key: "o2endc"
}],
["path", {
d: "M5 17H2",
key: "1gx9xc"
}],
["path", {
d: "M7 7H2",
key: "6bq26l"
}],
["rect", {
x: "5",
y: "14",
width: "14",
height: "6",
rx: "2",
key: "1qrzuf"
}],
["rect", {
x: "7",
y: "4",
width: "10",
height: "6",
rx: "2",
key: "we8e9z"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignVerticalDistributeEnd = createLucideIcon("align-vertical-distribute-end", [
["rect", {
width: "14",
height: "6",
x: "5",
y: "14",
rx: "2",
key: "jmoj9s"
}],
["rect", {
width: "10",
height: "6",
x: "7",
y: "4",
rx: "2",
key: "aza5on"
}],
["path", {
d: "M2 20h20",
key: "owomy5"
}],
["path", {
d: "M2 10h20",
key: "1ir3d8"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignVerticalDistributeStart = createLucideIcon("align-vertical-distribute-start", [
["rect", {
width: "14",
height: "6",
x: "5",
y: "14",
rx: "2",
key: "jmoj9s"
}],
["rect", {
width: "10",
height: "6",
x: "7",
y: "4",
rx: "2",
key: "aza5on"
}],
["path", {
d: "M2 14h20",
key: "myj16y"
}],
["path", {
d: "M2 4h20",
key: "mda7wb"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignVerticalJustifyEnd = createLucideIcon("align-vertical-justify-end", [
["rect", {
width: "14",
height: "6",
x: "5",
y: "12",
rx: "2",
key: "4l4tp2"
}],
["rect", {
width: "10",
height: "6",
x: "7",
y: "2",
rx: "2",
key: "ypihtt"
}],
["path", {
d: "M2 22h20",
key: "272qi7"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignVerticalJustifyCenter = createLucideIcon("align-vertical-justify-center", [
["rect", {
width: "14",
height: "6",
x: "5",
y: "16",
rx: "2",
key: "1i8z2d"
}],
["rect", {
width: "10",
height: "6",
x: "7",
y: "2",
rx: "2",
key: "ypihtt"
}],
["path", {
d: "M2 12h20",
key: "9i4pu4"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignVerticalJustifyStart = createLucideIcon("align-vertical-justify-start", [
["rect", {
width: "14",
height: "6",
x: "5",
y: "16",
rx: "2",
key: "1i8z2d"
}],
["rect", {
width: "10",
height: "6",
x: "7",
y: "6",
rx: "2",
key: "13squh"
}],
["path", {
d: "M2 2h20",
key: "1ennik"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignVerticalSpaceAround = createLucideIcon("align-vertical-space-around", [
["rect", {
width: "10",
height: "6",
x: "7",
y: "9",
rx: "2",
key: "b1zbii"
}],
["path", {
d: "M22 20H2",
key: "1p1f7z"
}],
["path", {
d: "M22 4H2",
key: "1b7qnq"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AlignVerticalSpaceBetween = createLucideIcon("align-vertical-space-between", [
["rect", {
width: "14",
height: "6",
x: "5",
y: "15",
rx: "2",
key: "1w91an"
}],
["rect", {
width: "10",
height: "6",
x: "7",
y: "3",
rx: "2",
key: "17wqzy"
}],
["path", {
d: "M2 21h20",
key: "1nyx9w"
}],
["path", {
d: "M2 3h20",
key: "91anmk"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Ambulance = createLucideIcon("ambulance", [
["path", {
d: "M10 10H6",
key: "1bsnug"
}],
["path", {
d: "M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",
key: "wrbu53"
}],
["path", {
d: "M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14",
key: "lrkjwd"
}],
["path", {
d: "M8 8v4",
key: "1fwk8c"
}],
["path", {
d: "M9 18h6",
key: "x1upvd"
}],
["circle", {
cx: "17",
cy: "18",
r: "2",
key: "332jqn"
}],
["circle", {
cx: "7",
cy: "18",
r: "2",
key: "19iecd"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Ampersand = createLucideIcon("ampersand", [["path", {
d: "M16 12h3",
key: "4uvgyw"
}], ["path", {
d: "M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13",
key: "nfoe1t"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Ampersands = createLucideIcon("ampersands", [["path", {
d: "M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",
key: "12lh1k"
}], ["path", {
d: "M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",
key: "173c68"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Amphora = createLucideIcon("amphora", [
["path", {
d: "M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8",
key: "1h8rid"
}],
["path", {
d: "M10 5H8a2 2 0 0 0 0 4h.68",
key: "3ezsi6"
}],
["path", {
d: "M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8",
key: "yt6q09"
}],
["path", {
d: "M14 5h2a2 2 0 0 1 0 4h-.68",
key: "8f95yk"
}],
["path", {
d: "M18 22H6",
key: "mg6kv4"
}],
["path", {
d: "M9 2h6",
key: "1jrp98"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Anchor = createLucideIcon("anchor", [
["path", {
d: "M12 6v16",
key: "nqf5sj"
}],
["path", {
d: "m19 13 2-1a9 9 0 0 1-18 0l2 1",
key: "y7qv08"
}],
["path", {
d: "M9 11h6",
key: "1fldmi"
}],
["circle", {
cx: "12",
cy: "4",
r: "2",
key: "muu5ef"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Angry = createLucideIcon("angry", [
["circle", {
cx: "12",
cy: "12",
r: "10",
key: "1mglay"
}],
["path", {
d: "M16 16s-1.5-2-4-2-4 2-4 2",
key: "epbg0q"
}],
["path", {
d: "M7.5 8 10 9",
key: "olxxln"
}],
["path", {
d: "m14 9 2.5-1",
key: "1j6cij"
}],
["path", {
d: "M9 10h.01",
key: "qbtxuw"
}],
["path", {
d: "M15 10h.01",
key: "1qmjsl"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Annoyed = createLucideIcon("annoyed", [
["circle", {
cx: "12",
cy: "12",
r: "10",
key: "1mglay"
}],
["path", {
d: "M8 15h8",
key: "45n4r"
}],
["path", {
d: "M8 9h2",
key: "1g203m"
}],
["path", {
d: "M14 9h2",
key: "116p9w"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Antenna = createLucideIcon("antenna", [
["path", {
d: "M2 12 7 2",
key: "117k30"
}],
["path", {
d: "m7 12 5-10",
key: "1tvx22"
}],
["path", {
d: "m12 12 5-10",
key: "ev1o1a"
}],
["path", {
d: "m17 12 5-10",
key: "1e4ti3"
}],
["path", {
d: "M4.5 7h15",
key: "vlsxkz"
}],
["path", {
d: "M12 16v6",
key: "c8a4gj"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Anvil = createLucideIcon("anvil", [
["path", {
d: "M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4",
key: "1hjpb6"
}],
["path", {
d: "M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z",
key: "1qn45f"
}],
["path", {
d: "M9 12v5",
key: "3anwtq"
}],
["path", {
d: "M15 12v5",
key: "5xh3zn"
}],
["path", {
d: "M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1",
key: "1fi4x8"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Aperture = createLucideIcon("aperture", [
["circle", {
cx: "12",
cy: "12",
r: "10",
key: "1mglay"
}],
["path", {
d: "m14.31 8 5.74 9.94",
key: "1y6ab4"
}],
["path", {
d: "M9.69 8h11.48",
key: "1wxppr"
}],
["path", {
d: "m7.38 12 5.74-9.94",
key: "1grp0k"
}],
["path", {
d: "M9.69 16 3.95 6.06",
key: "libnyf"
}],
["path", {
d: "M14.31 16H2.83",
key: "x5fava"
}],
["path", {
d: "m16.62 12-5.74 9.94",
key: "1vwawt"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AppWindowMac = createLucideIcon("app-window-mac", [
["rect", {
width: "20",
height: "16",
x: "2",
y: "4",
rx: "2",
key: "18n3k1"
}],
["path", {
d: "M6 8h.01",
key: "x9i8wu"
}],
["path", {
d: "M10 8h.01",
key: "1r9ogq"
}],
["path", {
d: "M14 8h.01",
key: "1primd"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var AppWindow = createLucideIcon("app-window", [
["rect", {
x: "2",
y: "4",
width: "20",
height: "16",
rx: "2",
key: "izxlao"
}],
["path", {
d: "M10 4v4",
key: "pp8u80"
}],
["path", {
d: "M2 8h20",
key: "d11cs7"
}],
["path", {
d: "M6 4v4",
key: "1svtjw"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Apple = createLucideIcon("apple", [["path", {
d: "M12 6.528V3a1 1 0 0 1 1-1h0",
key: "11qiee"
}], ["path", {
d: "M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21",
key: "110c12"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArchiveRestore = createLucideIcon("archive-restore", [
["rect", {
width: "20",
height: "5",
x: "2",
y: "3",
rx: "1",
key: "1wp1u1"
}],
["path", {
d: "M4 8v11a2 2 0 0 0 2 2h2",
key: "tvwodi"
}],
["path", {
d: "M20 8v11a2 2 0 0 1-2 2h-2",
key: "1gkqxj"
}],
["path", {
d: "m9 15 3-3 3 3",
key: "1pd0qc"
}],
["path", {
d: "M12 12v9",
key: "192myk"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArchiveX = createLucideIcon("archive-x", [
["rect", {
width: "20",
height: "5",
x: "2",
y: "3",
rx: "1",
key: "1wp1u1"
}],
["path", {
d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8",
key: "1s80jp"
}],
["path", {
d: "m9.5 17 5-5",
key: "nakeu6"
}],
["path", {
d: "m9.5 12 5 5",
key: "1hccrj"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Archive = createLucideIcon("archive", [
["rect", {
width: "20",
height: "5",
x: "2",
y: "3",
rx: "1",
key: "1wp1u1"
}],
["path", {
d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8",
key: "1s80jp"
}],
["path", {
d: "M10 12h4",
key: "a56b0p"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var Armchair = createLucideIcon("armchair", [
["path", {
d: "M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3",
key: "irtipd"
}],
["path", {
d: "M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",
key: "1qyhux"
}],
["path", {
d: "M5 18v2",
key: "ppbyun"
}],
["path", {
d: "M19 18v2",
key: "gy7782"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowBigDownDash = createLucideIcon("arrow-big-down-dash", [["path", {
d: "M14 8a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1h3.293a.707.707 0 0 1 .5 1.207l-6.939 6.939a1.207 1.207 0 0 1-1.708 0l-6.94-6.94a.707.707 0 0 1 .5-1.206H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1z",
key: "1b91ra"
}], ["path", {
d: "M9 4h6",
key: "10am2s"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowBigDown = createLucideIcon("arrow-big-down", [["path", {
d: "M9 5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6a1 1 0 0 0 1 1h3.293a.707.707 0 0 1 .5 1.207l-7.086 7.086a1 1 0 0 1-1.414 0l-7.086-7.086a.707.707 0 0 1 .5-1.207H8a1 1 0 0 0 1-1z",
key: "1o3tkq"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowBigLeftDash = createLucideIcon("arrow-big-left-dash", [["path", {
d: "M13 9a1 1 0 0 1-1-1V4.707a.707.707 0 0 0-1.207-.5l-6.94 6.94a1.207 1.207 0 0 0 0 1.707l6.94 6.94a.707.707 0 0 0 1.207-.5V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z",
key: "17jy80"
}], ["path", {
d: "M20 9v6",
key: "14roy0"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowBigLeft = createLucideIcon("arrow-big-left", [["path", {
d: "M10.793 19.793a.707.707 0 0 0 1.207-.5V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-6a1 1 0 0 1-1-1V4.707a.707.707 0 0 0-1.207-.5l-6.94 6.94a1.207 1.207 0 0 0 0 1.707z",
key: "qbhtmx"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowBigRightDash = createLucideIcon("arrow-big-right-dash", [["path", {
d: "M11 9a1 1 0 0 0 1-1V4.707a.707.707 0 0 1 1.207-.5l6.94 6.94a1.207 1.207 0 0 1 0 1.707l-6.94 6.94a.707.707 0 0 1-1.207-.5V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z",
key: "9idyso"
}], ["path", {
d: "M4 9v6",
key: "bns7oa"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowBigRight = createLucideIcon("arrow-big-right", [["path", {
d: "M13.207 19.793a.707.707 0 0 1-1.207-.5V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1V4.707a.707.707 0 0 1 1.207-.5l6.94 6.94a1.207 1.207 0 0 1 0 1.707z",
key: "zee3eo"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowBigUpDash = createLucideIcon("arrow-big-up-dash", [["path", {
d: "M14 16a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1h3.293a.707.707 0 0 0 .5-1.207l-6.939-6.939a1.207 1.207 0 0 0-1.708 0l-6.94 6.94a.707.707 0 0 0 .5 1.206H8a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1z",
key: "q57loy"
}], ["path", {
d: "M9 20h6",
key: "s66wpe"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowBigUp = createLucideIcon("arrow-big-up", [["path", {
d: "M9 19a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-6a1 1 0 0 1 1-1h3.293a.707.707 0 0 0 .5-1.207l-7.086-7.086a1 1 0 0 0-1.414 0l-7.086 7.086a.707.707 0 0 0 .5 1.207H8a1 1 0 0 1 1 1z",
key: "106j91"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDown01 = createLucideIcon("arrow-down-0-1", [
["path", {
d: "m3 16 4 4 4-4",
key: "1co6wj"
}],
["path", {
d: "M7 20V4",
key: "1yoxec"
}],
["rect", {
x: "15",
y: "4",
width: "4",
height: "6",
ry: "2",
key: "1bwicg"
}],
["path", {
d: "M17 20v-6h-2",
key: "1qp1so"
}],
["path", {
d: "M15 20h4",
key: "1j968p"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDown10 = createLucideIcon("arrow-down-1-0", [
["path", {
d: "m3 16 4 4 4-4",
key: "1co6wj"
}],
["path", {
d: "M7 20V4",
key: "1yoxec"
}],
["path", {
d: "M17 10V4h-2",
key: "zcsr5x"
}],
["path", {
d: "M15 10h4",
key: "id2lce"
}],
["rect", {
x: "15",
y: "14",
width: "4",
height: "6",
ry: "2",
key: "33xykx"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownAZ = createLucideIcon("arrow-down-a-z", [
["path", {
d: "m3 16 4 4 4-4",
key: "1co6wj"
}],
["path", {
d: "M7 20V4",
key: "1yoxec"
}],
["path", {
d: "M20 8h-5",
key: "1vsyxs"
}],
["path", {
d: "M15 10V6.5a2.5 2.5 0 0 1 5 0V10",
key: "ag13bf"
}],
["path", {
d: "M15 14h5l-5 6h5",
key: "ur5jdg"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownFromLine = createLucideIcon("arrow-down-from-line", [
["path", {
d: "M19 3H5",
key: "1236rx"
}],
["path", {
d: "M12 21V7",
key: "gj6g52"
}],
["path", {
d: "m6 15 6 6 6-6",
key: "h15q88"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownLeft = createLucideIcon("arrow-down-left", [["path", {
d: "M17 7 7 17",
key: "15tmo1"
}], ["path", {
d: "M17 17H7V7",
key: "1org7z"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownNarrowWide = createLucideIcon("arrow-down-narrow-wide", [
["path", {
d: "m3 16 4 4 4-4",
key: "1co6wj"
}],
["path", {
d: "M7 20V4",
key: "1yoxec"
}],
["path", {
d: "M11 4h4",
key: "6d7r33"
}],
["path", {
d: "M11 8h7",
key: "djye34"
}],
["path", {
d: "M11 12h10",
key: "1438ji"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownRight = createLucideIcon("arrow-down-right", [["path", {
d: "m7 7 10 10",
key: "1fmybs"
}], ["path", {
d: "M17 7v10H7",
key: "6fjiku"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownToDot = createLucideIcon("arrow-down-to-dot", [
["path", {
d: "M12 2v14",
key: "jyx4ut"
}],
["path", {
d: "m19 9-7 7-7-7",
key: "1oe3oy"
}],
["circle", {
cx: "12",
cy: "21",
r: "1",
key: "o0uj5v"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownToLine = createLucideIcon("arrow-down-to-line", [
["path", {
d: "M12 17V3",
key: "1cwfxf"
}],
["path", {
d: "m6 11 6 6 6-6",
key: "12ii2o"
}],
["path", {
d: "M19 21H5",
key: "150jfl"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownUp = createLucideIcon("arrow-down-up", [
["path", {
d: "m3 16 4 4 4-4",
key: "1co6wj"
}],
["path", {
d: "M7 20V4",
key: "1yoxec"
}],
["path", {
d: "m21 8-4-4-4 4",
key: "1c9v7m"
}],
["path", {
d: "M17 4v16",
key: "7dpous"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownWideNarrow = createLucideIcon("arrow-down-wide-narrow", [
["path", {
d: "m3 16 4 4 4-4",
key: "1co6wj"
}],
["path", {
d: "M7 20V4",
key: "1yoxec"
}],
["path", {
d: "M11 4h10",
key: "1w87gc"
}],
["path", {
d: "M11 8h7",
key: "djye34"
}],
["path", {
d: "M11 12h4",
key: "q8tih4"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDownZA = createLucideIcon("arrow-down-z-a", [
["path", {
d: "m3 16 4 4 4-4",
key: "1co6wj"
}],
["path", {
d: "M7 4v16",
key: "1glfcx"
}],
["path", {
d: "M15 4h5l-5 6h5",
key: "8asdl1"
}],
["path", {
d: "M15 20v-3.5a2.5 2.5 0 0 1 5 0V20",
key: "r6l5cz"
}],
["path", {
d: "M20 18h-5",
key: "18j1r2"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowDown = createLucideIcon("arrow-down", [["path", {
d: "M12 5v14",
key: "s699le"
}], ["path", {
d: "m19 12-7 7-7-7",
key: "1idqje"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowLeftFromLine = createLucideIcon("arrow-left-from-line", [
["path", {
d: "m9 6-6 6 6 6",
key: "7v63n9"
}],
["path", {
d: "M3 12h14",
key: "13k4hi"
}],
["path", {
d: "M21 19V5",
key: "b4bplr"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowLeftRight = createLucideIcon("arrow-left-right", [
["path", {
d: "M8 3 4 7l4 4",
key: "9rb6wj"
}],
["path", {
d: "M4 7h16",
key: "6tx8e3"
}],
["path", {
d: "m16 21 4-4-4-4",
key: "siv7j2"
}],
["path", {
d: "M20 17H4",
key: "h6l3hr"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowLeftToLine = createLucideIcon("arrow-left-to-line", [
["path", {
d: "M3 19V5",
key: "rwsyhb"
}],
["path", {
d: "m13 6-6 6 6 6",
key: "1yhaz7"
}],
["path", {
d: "M7 12h14",
key: "uoisry"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowLeft = createLucideIcon("arrow-left", [["path", {
d: "m12 19-7-7 7-7",
key: "1l729n"
}], ["path", {
d: "M19 12H5",
key: "x3x0zl"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowRightFromLine = createLucideIcon("arrow-right-from-line", [
["path", {
d: "M3 5v14",
key: "1nt18q"
}],
["path", {
d: "M21 12H7",
key: "13ipq5"
}],
["path", {
d: "m15 18 6-6-6-6",
key: "6tx3qv"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowRightLeft = createLucideIcon("arrow-right-left", [
["path", {
d: "m16 3 4 4-4 4",
key: "1x1c3m"
}],
["path", {
d: "M20 7H4",
key: "zbl0bi"
}],
["path", {
d: "m8 21-4-4 4-4",
key: "h9nckh"
}],
["path", {
d: "M4 17h16",
key: "g4d7ey"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowRightToLine = createLucideIcon("arrow-right-to-line", [
["path", {
d: "M17 12H3",
key: "8awo09"
}],
["path", {
d: "m11 18 6-6-6-6",
key: "8c2y43"
}],
["path", {
d: "M21 5v14",
key: "nzette"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowRight = createLucideIcon("arrow-right", [["path", {
d: "M5 12h14",
key: "1ays0h"
}], ["path", {
d: "m12 5 7 7-7 7",
key: "xquz4c"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUp01 = createLucideIcon("arrow-up-0-1", [
["path", {
d: "m3 8 4-4 4 4",
key: "11wl7u"
}],
["path", {
d: "M7 4v16",
key: "1glfcx"
}],
["rect", {
x: "15",
y: "4",
width: "4",
height: "6",
ry: "2",
key: "1bwicg"
}],
["path", {
d: "M17 20v-6h-2",
key: "1qp1so"
}],
["path", {
d: "M15 20h4",
key: "1j968p"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUp10 = createLucideIcon("arrow-up-1-0", [
["path", {
d: "m3 8 4-4 4 4",
key: "11wl7u"
}],
["path", {
d: "M7 4v16",
key: "1glfcx"
}],
["path", {
d: "M17 10V4h-2",
key: "zcsr5x"
}],
["path", {
d: "M15 10h4",
key: "id2lce"
}],
["rect", {
x: "15",
y: "14",
width: "4",
height: "6",
ry: "2",
key: "33xykx"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUpAZ = createLucideIcon("arrow-up-a-z", [
["path", {
d: "m3 8 4-4 4 4",
key: "11wl7u"
}],
["path", {
d: "M7 4v16",
key: "1glfcx"
}],
["path", {
d: "M20 8h-5",
key: "1vsyxs"
}],
["path", {
d: "M15 10V6.5a2.5 2.5 0 0 1 5 0V10",
key: "ag13bf"
}],
["path", {
d: "M15 14h5l-5 6h5",
key: "ur5jdg"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUpDown = createLucideIcon("arrow-up-down", [
["path", {
d: "m21 16-4 4-4-4",
key: "f6ql7i"
}],
["path", {
d: "M17 20V4",
key: "1ejh1v"
}],
["path", {
d: "m3 8 4-4 4 4",
key: "11wl7u"
}],
["path", {
d: "M7 4v16",
key: "1glfcx"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUpFromLine = createLucideIcon("arrow-up-from-line", [
["path", {
d: "m18 9-6-6-6 6",
key: "kcunyi"
}],
["path", {
d: "M12 3v14",
key: "7cf3v8"
}],
["path", {
d: "M5 21h14",
key: "11awu3"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUpFromDot = createLucideIcon("arrow-up-from-dot", [
["path", {
d: "m5 9 7-7 7 7",
key: "1hw5ic"
}],
["path", {
d: "M12 16V2",
key: "ywoabb"
}],
["circle", {
cx: "12",
cy: "21",
r: "1",
key: "o0uj5v"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUpLeft = createLucideIcon("arrow-up-left", [["path", {
d: "M7 17V7h10",
key: "11bw93"
}], ["path", {
d: "M17 17 7 7",
key: "2786uv"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUpNarrowWide = createLucideIcon("arrow-up-narrow-wide", [
["path", {
d: "m3 8 4-4 4 4",
key: "11wl7u"
}],
["path", {
d: "M7 4v16",
key: "1glfcx"
}],
["path", {
d: "M11 12h4",
key: "q8tih4"
}],
["path", {
d: "M11 16h7",
key: "uosisv"
}],
["path", {
d: "M11 20h10",
key: "jvxblo"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUpRight = createLucideIcon("arrow-up-right", [["path", {
d: "M7 7h10v10",
key: "1tivn9"
}], ["path", {
d: "M7 17 17 7",
key: "1vkiza"
}]]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUpToLine = createLucideIcon("arrow-up-to-line", [
["path", {
d: "M5 3h14",
key: "7usisc"
}],
["path", {
d: "m18 13-6-6-6 6",
key: "1kf1n9"
}],
["path", {
d: "M12 7v14",
key: "1akyts"
}]
]);
/**
* @license @lucide/vue v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
var ArrowUpWideNarrow = createLucideIcon("arrow-up-wide-narrow", [
["path", {
d: "m3 8 4-4 4 4",
key: "11wl7u"
}],
["path", {
d: "M7 4v16",
key: "1glfcx"