canvas/canvas-demo/node_modules/.vite/deps/@blocknote_shadcn.js
2026-03-11 18:42:08 -07:00

31908 lines
1.2 MiB

import {
cva
} from "./chunk-5DYWO4C6.js";
import {
clsx
} from "./chunk-SIU35MPB.js";
import {
At,
D,
Dl,
M,
Ul,
Vr,
_r,
arrow,
autoUpdate,
flip,
hide,
jl,
limitShift,
lo,
offset,
q,
qt,
require_shim,
shift,
size,
useFloating,
yl
} from "./chunk-PT7F464S.js";
import "./chunk-DZXNXIW7.js";
import "./chunk-RU4TY2CQ.js";
import "./chunk-5QTNICOS.js";
import {
require_react_dom
} from "./chunk-LRUX6XQC.js";
import {
Slot,
composeRefs,
createSlot,
useComposedRefs
} from "./chunk-KLRFSZSC.js";
import {
require_jsx_runtime
} from "./chunk-YAGB2RBV.js";
import {
require_react
} from "./chunk-T3SJLYUH.js";
import {
__assign,
__rest,
__spreadArray,
init_tslib_es6
} from "./chunk-B3JW6XJO.js";
import {
__toESM
} from "./chunk-4B2QHNJT.js";
// ../../node_modules/.pnpm/@blocknote+shadcn@0.45.0_@floating-ui+dom@1.7.4_@tiptap+extensions@3.14.0_@tiptap+core@_ffb4794918886c8a19c364f2fbd1458d/node_modules/@blocknote/shadcn/dist/blocknote-shadcn.js
var import_jsx_runtime25 = __toESM(require_jsx_runtime());
var F = __toESM(require_react());
var import_react10 = __toESM(require_react());
// ../../node_modules/.pnpm/react-hook-form@7.69.0_react@19.2.3/node_modules/react-hook-form/dist/index.esm.mjs
var import_react = __toESM(require_react(), 1);
var isCheckBoxInput = (element) => element.type === "checkbox";
var isDateObject = (value) => value instanceof Date;
var isNullOrUndefined = (value) => value == null;
var isObjectType = (value) => typeof value === "object";
var isObject = (value) => !isNullOrUndefined(value) && !Array.isArray(value) && isObjectType(value) && !isDateObject(value);
var getEventValue = (event) => isObject(event) && event.target ? isCheckBoxInput(event.target) ? event.target.checked : event.target.value : event;
var getNodeParentName = (name) => name.substring(0, name.search(/\.\d+(\.|$)/)) || name;
var isNameInFieldArray = (names, name) => names.has(getNodeParentName(name));
var isPlainObject = (tempObject) => {
const prototypeCopy = tempObject.constructor && tempObject.constructor.prototype;
return isObject(prototypeCopy) && prototypeCopy.hasOwnProperty("isPrototypeOf");
};
var isWeb = typeof window !== "undefined" && typeof window.HTMLElement !== "undefined" && typeof document !== "undefined";
function cloneObject(data) {
if (data instanceof Date) {
return new Date(data);
}
const isFileListInstance = typeof FileList !== "undefined" && data instanceof FileList;
if (isWeb && (data instanceof Blob || isFileListInstance)) {
return data;
}
const isArray = Array.isArray(data);
if (!isArray && !(isObject(data) && isPlainObject(data))) {
return data;
}
const copy = isArray ? [] : Object.create(Object.getPrototypeOf(data));
for (const key in data) {
if (Object.prototype.hasOwnProperty.call(data, key)) {
copy[key] = cloneObject(data[key]);
}
}
return copy;
}
var isKey = (value) => /^\w*$/.test(value);
var isUndefined = (val) => val === void 0;
var compact = (value) => Array.isArray(value) ? value.filter(Boolean) : [];
var stringToPath = (input) => compact(input.replace(/["|']|\]/g, "").split(/\.|\[/));
var get = (object, path, defaultValue) => {
if (!path || !isObject(object)) {
return defaultValue;
}
const result = (isKey(path) ? [path] : stringToPath(path)).reduce((result2, key) => isNullOrUndefined(result2) ? result2 : result2[key], object);
return isUndefined(result) || result === object ? isUndefined(object[path]) ? defaultValue : object[path] : result;
};
var isBoolean = (value) => typeof value === "boolean";
var isFunction = (value) => typeof value === "function";
var set = (object, path, value) => {
let index = -1;
const tempPath = isKey(path) ? [path] : stringToPath(path);
const length = tempPath.length;
const lastIndex = length - 1;
while (++index < length) {
const key = tempPath[index];
let newValue = value;
if (index !== lastIndex) {
const objValue = object[key];
newValue = isObject(objValue) || Array.isArray(objValue) ? objValue : !isNaN(+tempPath[index + 1]) ? [] : {};
}
if (key === "__proto__" || key === "constructor" || key === "prototype") {
return;
}
object[key] = newValue;
object = object[key];
}
};
var EVENTS = {
BLUR: "blur",
FOCUS_OUT: "focusout",
CHANGE: "change"
};
var VALIDATION_MODE = {
onBlur: "onBlur",
onChange: "onChange",
onSubmit: "onSubmit",
onTouched: "onTouched",
all: "all"
};
var INPUT_VALIDATION_RULES = {
max: "max",
min: "min",
maxLength: "maxLength",
minLength: "minLength",
pattern: "pattern",
required: "required",
validate: "validate"
};
var HookFormContext = import_react.default.createContext(null);
HookFormContext.displayName = "HookFormContext";
var FormProvider = (props) => {
const { children, ...data } = props;
return import_react.default.createElement(HookFormContext.Provider, { value: data }, children);
};
var getProxyFormState = (formState, control, localProxyFormState, isRoot = true) => {
const result = {
defaultValues: control._defaultValues
};
for (const key in formState) {
Object.defineProperty(result, key, {
get: () => {
const _key = key;
if (control._proxyFormState[_key] !== VALIDATION_MODE.all) {
control._proxyFormState[_key] = !isRoot || VALIDATION_MODE.all;
}
localProxyFormState && (localProxyFormState[_key] = true);
return formState[_key];
}
});
}
return result;
};
var useIsomorphicLayoutEffect = typeof window !== "undefined" ? import_react.default.useLayoutEffect : import_react.default.useEffect;
var isString = (value) => typeof value === "string";
var generateWatchOutput = (names, _names, formValues, isGlobal, defaultValue) => {
if (isString(names)) {
isGlobal && _names.watch.add(names);
return get(formValues, names, defaultValue);
}
if (Array.isArray(names)) {
return names.map((fieldName) => (isGlobal && _names.watch.add(fieldName), get(formValues, fieldName)));
}
isGlobal && (_names.watchAll = true);
return formValues;
};
var isPrimitive = (value) => isNullOrUndefined(value) || !isObjectType(value);
function deepEqual(object1, object2, _internal_visited = /* @__PURE__ */ new WeakSet()) {
if (isPrimitive(object1) || isPrimitive(object2)) {
return Object.is(object1, object2);
}
if (isDateObject(object1) && isDateObject(object2)) {
return object1.getTime() === object2.getTime();
}
const keys1 = Object.keys(object1);
const keys2 = Object.keys(object2);
if (keys1.length !== keys2.length) {
return false;
}
if (_internal_visited.has(object1) || _internal_visited.has(object2)) {
return true;
}
_internal_visited.add(object1);
_internal_visited.add(object2);
for (const key of keys1) {
const val1 = object1[key];
if (!keys2.includes(key)) {
return false;
}
if (key !== "ref") {
const val2 = object2[key];
if (isDateObject(val1) && isDateObject(val2) || isObject(val1) && isObject(val2) || Array.isArray(val1) && Array.isArray(val2) ? !deepEqual(val1, val2, _internal_visited) : !Object.is(val1, val2)) {
return false;
}
}
}
return true;
}
var appendErrors = (name, validateAllFieldCriteria, errors, type, message) => validateAllFieldCriteria ? {
...errors[name],
types: {
...errors[name] && errors[name].types ? errors[name].types : {},
[type]: message || true
}
} : {};
var convertToArrayPayload = (value) => Array.isArray(value) ? value : [value];
var createSubject = () => {
let _observers = [];
const next = (value) => {
for (const observer of _observers) {
observer.next && observer.next(value);
}
};
const subscribe2 = (observer) => {
_observers.push(observer);
return {
unsubscribe: () => {
_observers = _observers.filter((o2) => o2 !== observer);
}
};
};
const unsubscribe = () => {
_observers = [];
};
return {
get observers() {
return _observers;
},
next,
subscribe: subscribe2,
unsubscribe
};
};
function extractFormValues(fieldsState, formValues) {
const values = {};
for (const key in fieldsState) {
if (fieldsState.hasOwnProperty(key)) {
const fieldState = fieldsState[key];
const fieldValue = formValues[key];
if (fieldState && isObject(fieldState) && fieldValue) {
const nestedFieldsState = extractFormValues(fieldState, fieldValue);
if (isObject(nestedFieldsState)) {
values[key] = nestedFieldsState;
}
} else if (fieldsState[key]) {
values[key] = fieldValue;
}
}
}
return values;
}
var isEmptyObject = (value) => isObject(value) && !Object.keys(value).length;
var isFileInput = (element) => element.type === "file";
var isHTMLElement = (value) => {
if (!isWeb) {
return false;
}
const owner = value ? value.ownerDocument : 0;
return value instanceof (owner && owner.defaultView ? owner.defaultView.HTMLElement : HTMLElement);
};
var isMultipleSelect = (element) => element.type === `select-multiple`;
var isRadioInput = (element) => element.type === "radio";
var isRadioOrCheckbox = (ref) => isRadioInput(ref) || isCheckBoxInput(ref);
var live = (ref) => isHTMLElement(ref) && ref.isConnected;
function baseGet(object, updatePath) {
const length = updatePath.slice(0, -1).length;
let index = 0;
while (index < length) {
object = isUndefined(object) ? index++ : object[updatePath[index++]];
}
return object;
}
function isEmptyArray(obj) {
for (const key in obj) {
if (obj.hasOwnProperty(key) && !isUndefined(obj[key])) {
return false;
}
}
return true;
}
function unset(object, path) {
const paths = Array.isArray(path) ? path : isKey(path) ? [path] : stringToPath(path);
const childObject = paths.length === 1 ? object : baseGet(object, paths);
const index = paths.length - 1;
const key = paths[index];
if (childObject) {
delete childObject[key];
}
if (index !== 0 && (isObject(childObject) && isEmptyObject(childObject) || Array.isArray(childObject) && isEmptyArray(childObject))) {
unset(object, paths.slice(0, -1));
}
return object;
}
var objectHasFunction = (data) => {
for (const key in data) {
if (isFunction(data[key])) {
return true;
}
}
return false;
};
function isTraversable(value) {
return Array.isArray(value) || isObject(value) && !objectHasFunction(value);
}
function markFieldsDirty(data, fields = {}) {
for (const key in data) {
const value = data[key];
if (isTraversable(value)) {
fields[key] = Array.isArray(value) ? [] : {};
markFieldsDirty(value, fields[key]);
} else if (!isUndefined(value)) {
fields[key] = true;
}
}
return fields;
}
function getDirtyFields(data, formValues, dirtyFieldsFromValues) {
if (!dirtyFieldsFromValues) {
dirtyFieldsFromValues = markFieldsDirty(formValues);
}
for (const key in data) {
const value = data[key];
if (isTraversable(value)) {
if (isUndefined(formValues) || isPrimitive(dirtyFieldsFromValues[key])) {
dirtyFieldsFromValues[key] = markFieldsDirty(value, Array.isArray(value) ? [] : {});
} else {
getDirtyFields(value, isNullOrUndefined(formValues) ? {} : formValues[key], dirtyFieldsFromValues[key]);
}
} else {
const formValue = formValues[key];
dirtyFieldsFromValues[key] = !deepEqual(value, formValue);
}
}
return dirtyFieldsFromValues;
}
var defaultResult = {
value: false,
isValid: false
};
var validResult = { value: true, isValid: true };
var getCheckboxValue = (options) => {
if (Array.isArray(options)) {
if (options.length > 1) {
const values = options.filter((option) => option && option.checked && !option.disabled).map((option) => option.value);
return { value: values, isValid: !!values.length };
}
return options[0].checked && !options[0].disabled ? (
// @ts-expect-error expected to work in the browser
options[0].attributes && !isUndefined(options[0].attributes.value) ? isUndefined(options[0].value) || options[0].value === "" ? validResult : { value: options[0].value, isValid: true } : validResult
) : defaultResult;
}
return defaultResult;
};
var getFieldValueAs = (value, { valueAsNumber, valueAsDate, setValueAs }) => isUndefined(value) ? value : valueAsNumber ? value === "" ? NaN : value ? +value : value : valueAsDate && isString(value) ? new Date(value) : setValueAs ? setValueAs(value) : value;
var defaultReturn = {
isValid: false,
value: null
};
var getRadioValue = (options) => Array.isArray(options) ? options.reduce((previous, option) => option && option.checked && !option.disabled ? {
isValid: true,
value: option.value
} : previous, defaultReturn) : defaultReturn;
function getFieldValue(_f) {
const ref = _f.ref;
if (isFileInput(ref)) {
return ref.files;
}
if (isRadioInput(ref)) {
return getRadioValue(_f.refs).value;
}
if (isMultipleSelect(ref)) {
return [...ref.selectedOptions].map(({ value }) => value);
}
if (isCheckBoxInput(ref)) {
return getCheckboxValue(_f.refs).value;
}
return getFieldValueAs(isUndefined(ref.value) ? _f.ref.value : ref.value, _f);
}
var getResolverOptions = (fieldsNames, _fields, criteriaMode, shouldUseNativeValidation) => {
const fields = {};
for (const name of fieldsNames) {
const field = get(_fields, name);
field && set(fields, name, field._f);
}
return {
criteriaMode,
names: [...fieldsNames],
fields,
shouldUseNativeValidation
};
};
var isRegex = (value) => value instanceof RegExp;
var getRuleValue = (rule) => isUndefined(rule) ? rule : isRegex(rule) ? rule.source : isObject(rule) ? isRegex(rule.value) ? rule.value.source : rule.value : rule;
var getValidationModes = (mode) => ({
isOnSubmit: !mode || mode === VALIDATION_MODE.onSubmit,
isOnBlur: mode === VALIDATION_MODE.onBlur,
isOnChange: mode === VALIDATION_MODE.onChange,
isOnAll: mode === VALIDATION_MODE.all,
isOnTouch: mode === VALIDATION_MODE.onTouched
});
var ASYNC_FUNCTION = "AsyncFunction";
var hasPromiseValidation = (fieldReference) => !!fieldReference && !!fieldReference.validate && !!(isFunction(fieldReference.validate) && fieldReference.validate.constructor.name === ASYNC_FUNCTION || isObject(fieldReference.validate) && Object.values(fieldReference.validate).find((validateFunction) => validateFunction.constructor.name === ASYNC_FUNCTION));
var hasValidation = (options) => options.mount && (options.required || options.min || options.max || options.maxLength || options.minLength || options.pattern || options.validate);
var isWatched = (name, _names, isBlurEvent) => !isBlurEvent && (_names.watchAll || _names.watch.has(name) || [..._names.watch].some((watchName) => name.startsWith(watchName) && /^\.\w+/.test(name.slice(watchName.length))));
var iterateFieldsByAction = (fields, action, fieldsNames, abortEarly) => {
for (const key of fieldsNames || Object.keys(fields)) {
const field = get(fields, key);
if (field) {
const { _f, ...currentField } = field;
if (_f) {
if (_f.refs && _f.refs[0] && action(_f.refs[0], key) && !abortEarly) {
return true;
} else if (_f.ref && action(_f.ref, _f.name) && !abortEarly) {
return true;
} else {
if (iterateFieldsByAction(currentField, action)) {
break;
}
}
} else if (isObject(currentField)) {
if (iterateFieldsByAction(currentField, action)) {
break;
}
}
}
}
return;
};
function schemaErrorLookup(errors, _fields, name) {
const error = get(errors, name);
if (error || isKey(name)) {
return {
error,
name
};
}
const names = name.split(".");
while (names.length) {
const fieldName = names.join(".");
const field = get(_fields, fieldName);
const foundError = get(errors, fieldName);
if (field && !Array.isArray(field) && name !== fieldName) {
return { name };
}
if (foundError && foundError.type) {
return {
name: fieldName,
error: foundError
};
}
if (foundError && foundError.root && foundError.root.type) {
return {
name: `${fieldName}.root`,
error: foundError.root
};
}
names.pop();
}
return {
name
};
}
var shouldRenderFormState = (formStateData, _proxyFormState, updateFormState, isRoot) => {
updateFormState(formStateData);
const { name, ...formState } = formStateData;
return isEmptyObject(formState) || Object.keys(formState).length >= Object.keys(_proxyFormState).length || Object.keys(formState).find((key) => _proxyFormState[key] === (!isRoot || VALIDATION_MODE.all));
};
var shouldSubscribeByName = (name, signalName, exact) => !name || !signalName || name === signalName || convertToArrayPayload(name).some((currentName) => currentName && (exact ? currentName === signalName : currentName.startsWith(signalName) || signalName.startsWith(currentName)));
var skipValidation = (isBlurEvent, isTouched, isSubmitted, reValidateMode, mode) => {
if (mode.isOnAll) {
return false;
} else if (!isSubmitted && mode.isOnTouch) {
return !(isTouched || isBlurEvent);
} else if (isSubmitted ? reValidateMode.isOnBlur : mode.isOnBlur) {
return !isBlurEvent;
} else if (isSubmitted ? reValidateMode.isOnChange : mode.isOnChange) {
return isBlurEvent;
}
return true;
};
var unsetEmptyArray = (ref, name) => !compact(get(ref, name)).length && unset(ref, name);
var updateFieldArrayRootError = (errors, error, name) => {
const fieldArrayErrors = convertToArrayPayload(get(errors, name));
set(fieldArrayErrors, "root", error[name]);
set(errors, name, fieldArrayErrors);
return errors;
};
function getValidateError(result, ref, type = "validate") {
if (isString(result) || Array.isArray(result) && result.every(isString) || isBoolean(result) && !result) {
return {
type,
message: isString(result) ? result : "",
ref
};
}
}
var getValueAndMessage = (validationData) => isObject(validationData) && !isRegex(validationData) ? validationData : {
value: validationData,
message: ""
};
var validateField = async (field, disabledFieldNames, formValues, validateAllFieldCriteria, shouldUseNativeValidation, isFieldArray) => {
const { ref, refs, required, maxLength, minLength, min, max, pattern, validate, name, valueAsNumber, mount } = field._f;
const inputValue = get(formValues, name);
if (!mount || disabledFieldNames.has(name)) {
return {};
}
const inputRef = refs ? refs[0] : ref;
const setCustomValidity = (message) => {
if (shouldUseNativeValidation && inputRef.reportValidity) {
inputRef.setCustomValidity(isBoolean(message) ? "" : message || "");
inputRef.reportValidity();
}
};
const error = {};
const isRadio = isRadioInput(ref);
const isCheckBox = isCheckBoxInput(ref);
const isRadioOrCheckbox2 = isRadio || isCheckBox;
const isEmpty = (valueAsNumber || isFileInput(ref)) && isUndefined(ref.value) && isUndefined(inputValue) || isHTMLElement(ref) && ref.value === "" || inputValue === "" || Array.isArray(inputValue) && !inputValue.length;
const appendErrorsCurry = appendErrors.bind(null, name, validateAllFieldCriteria, error);
const getMinMaxMessage = (exceedMax, maxLengthMessage, minLengthMessage, maxType = INPUT_VALIDATION_RULES.maxLength, minType = INPUT_VALIDATION_RULES.minLength) => {
const message = exceedMax ? maxLengthMessage : minLengthMessage;
error[name] = {
type: exceedMax ? maxType : minType,
message,
ref,
...appendErrorsCurry(exceedMax ? maxType : minType, message)
};
};
if (isFieldArray ? !Array.isArray(inputValue) || !inputValue.length : required && (!isRadioOrCheckbox2 && (isEmpty || isNullOrUndefined(inputValue)) || isBoolean(inputValue) && !inputValue || isCheckBox && !getCheckboxValue(refs).isValid || isRadio && !getRadioValue(refs).isValid)) {
const { value, message } = isString(required) ? { value: !!required, message: required } : getValueAndMessage(required);
if (value) {
error[name] = {
type: INPUT_VALIDATION_RULES.required,
message,
ref: inputRef,
...appendErrorsCurry(INPUT_VALIDATION_RULES.required, message)
};
if (!validateAllFieldCriteria) {
setCustomValidity(message);
return error;
}
}
}
if (!isEmpty && (!isNullOrUndefined(min) || !isNullOrUndefined(max))) {
let exceedMax;
let exceedMin;
const maxOutput = getValueAndMessage(max);
const minOutput = getValueAndMessage(min);
if (!isNullOrUndefined(inputValue) && !isNaN(inputValue)) {
const valueNumber = ref.valueAsNumber || (inputValue ? +inputValue : inputValue);
if (!isNullOrUndefined(maxOutput.value)) {
exceedMax = valueNumber > maxOutput.value;
}
if (!isNullOrUndefined(minOutput.value)) {
exceedMin = valueNumber < minOutput.value;
}
} else {
const valueDate = ref.valueAsDate || new Date(inputValue);
const convertTimeToDate = (time) => /* @__PURE__ */ new Date((/* @__PURE__ */ new Date()).toDateString() + " " + time);
const isTime = ref.type == "time";
const isWeek = ref.type == "week";
if (isString(maxOutput.value) && inputValue) {
exceedMax = isTime ? convertTimeToDate(inputValue) > convertTimeToDate(maxOutput.value) : isWeek ? inputValue > maxOutput.value : valueDate > new Date(maxOutput.value);
}
if (isString(minOutput.value) && inputValue) {
exceedMin = isTime ? convertTimeToDate(inputValue) < convertTimeToDate(minOutput.value) : isWeek ? inputValue < minOutput.value : valueDate < new Date(minOutput.value);
}
}
if (exceedMax || exceedMin) {
getMinMaxMessage(!!exceedMax, maxOutput.message, minOutput.message, INPUT_VALIDATION_RULES.max, INPUT_VALIDATION_RULES.min);
if (!validateAllFieldCriteria) {
setCustomValidity(error[name].message);
return error;
}
}
}
if ((maxLength || minLength) && !isEmpty && (isString(inputValue) || isFieldArray && Array.isArray(inputValue))) {
const maxLengthOutput = getValueAndMessage(maxLength);
const minLengthOutput = getValueAndMessage(minLength);
const exceedMax = !isNullOrUndefined(maxLengthOutput.value) && inputValue.length > +maxLengthOutput.value;
const exceedMin = !isNullOrUndefined(minLengthOutput.value) && inputValue.length < +minLengthOutput.value;
if (exceedMax || exceedMin) {
getMinMaxMessage(exceedMax, maxLengthOutput.message, minLengthOutput.message);
if (!validateAllFieldCriteria) {
setCustomValidity(error[name].message);
return error;
}
}
}
if (pattern && !isEmpty && isString(inputValue)) {
const { value: patternValue, message } = getValueAndMessage(pattern);
if (isRegex(patternValue) && !inputValue.match(patternValue)) {
error[name] = {
type: INPUT_VALIDATION_RULES.pattern,
message,
ref,
...appendErrorsCurry(INPUT_VALIDATION_RULES.pattern, message)
};
if (!validateAllFieldCriteria) {
setCustomValidity(message);
return error;
}
}
}
if (validate) {
if (isFunction(validate)) {
const result = await validate(inputValue, formValues);
const validateError = getValidateError(result, inputRef);
if (validateError) {
error[name] = {
...validateError,
...appendErrorsCurry(INPUT_VALIDATION_RULES.validate, validateError.message)
};
if (!validateAllFieldCriteria) {
setCustomValidity(validateError.message);
return error;
}
}
} else if (isObject(validate)) {
let validationResult = {};
for (const key in validate) {
if (!isEmptyObject(validationResult) && !validateAllFieldCriteria) {
break;
}
const validateError = getValidateError(await validate[key](inputValue, formValues), inputRef, key);
if (validateError) {
validationResult = {
...validateError,
...appendErrorsCurry(key, validateError.message)
};
setCustomValidity(validateError.message);
if (validateAllFieldCriteria) {
error[name] = validationResult;
}
}
}
if (!isEmptyObject(validationResult)) {
error[name] = {
ref: inputRef,
...validationResult
};
if (!validateAllFieldCriteria) {
return error;
}
}
}
}
setCustomValidity(true);
return error;
};
var defaultOptions = {
mode: VALIDATION_MODE.onSubmit,
reValidateMode: VALIDATION_MODE.onChange,
shouldFocusError: true
};
function createFormControl(props = {}) {
let _options = {
...defaultOptions,
...props
};
let _formState = {
submitCount: 0,
isDirty: false,
isReady: false,
isLoading: isFunction(_options.defaultValues),
isValidating: false,
isSubmitted: false,
isSubmitting: false,
isSubmitSuccessful: false,
isValid: false,
touchedFields: {},
dirtyFields: {},
validatingFields: {},
errors: _options.errors || {},
disabled: _options.disabled || false
};
let _fields = {};
let _defaultValues = isObject(_options.defaultValues) || isObject(_options.values) ? cloneObject(_options.defaultValues || _options.values) || {} : {};
let _formValues = _options.shouldUnregister ? {} : cloneObject(_defaultValues);
let _state = {
action: false,
mount: false,
watch: false,
keepIsValid: false
};
let _names = {
mount: /* @__PURE__ */ new Set(),
disabled: /* @__PURE__ */ new Set(),
unMount: /* @__PURE__ */ new Set(),
array: /* @__PURE__ */ new Set(),
watch: /* @__PURE__ */ new Set()
};
let delayErrorCallback;
let timer = 0;
const defaultProxyFormState = {
isDirty: false,
dirtyFields: false,
validatingFields: false,
touchedFields: false,
isValidating: false,
isValid: false,
errors: false
};
const _proxyFormState = {
...defaultProxyFormState
};
let _proxySubscribeFormState = {
..._proxyFormState
};
const _subjects = {
array: createSubject(),
state: createSubject()
};
const shouldDisplayAllAssociatedErrors = _options.criteriaMode === VALIDATION_MODE.all;
const debounce = (callback) => (wait) => {
clearTimeout(timer);
timer = setTimeout(callback, wait);
};
const _setValid = async (shouldUpdateValid) => {
if (_state.keepIsValid) {
return;
}
if (!_options.disabled && (_proxyFormState.isValid || _proxySubscribeFormState.isValid || shouldUpdateValid)) {
let isValid;
if (_options.resolver) {
isValid = isEmptyObject((await _runSchema()).errors);
_updateIsValidating();
} else {
isValid = await executeBuiltInValidation(_fields, true);
}
if (isValid !== _formState.isValid) {
_subjects.state.next({
isValid
});
}
}
};
const _updateIsValidating = (names, isValidating) => {
if (!_options.disabled && (_proxyFormState.isValidating || _proxyFormState.validatingFields || _proxySubscribeFormState.isValidating || _proxySubscribeFormState.validatingFields)) {
(names || Array.from(_names.mount)).forEach((name) => {
if (name) {
isValidating ? set(_formState.validatingFields, name, isValidating) : unset(_formState.validatingFields, name);
}
});
_subjects.state.next({
validatingFields: _formState.validatingFields,
isValidating: !isEmptyObject(_formState.validatingFields)
});
}
};
const _setFieldArray = (name, values = [], method, args, shouldSetValues = true, shouldUpdateFieldsAndState = true) => {
if (args && method && !_options.disabled) {
_state.action = true;
if (shouldUpdateFieldsAndState && Array.isArray(get(_fields, name))) {
const fieldValues = method(get(_fields, name), args.argA, args.argB);
shouldSetValues && set(_fields, name, fieldValues);
}
if (shouldUpdateFieldsAndState && Array.isArray(get(_formState.errors, name))) {
const errors = method(get(_formState.errors, name), args.argA, args.argB);
shouldSetValues && set(_formState.errors, name, errors);
unsetEmptyArray(_formState.errors, name);
}
if ((_proxyFormState.touchedFields || _proxySubscribeFormState.touchedFields) && shouldUpdateFieldsAndState && Array.isArray(get(_formState.touchedFields, name))) {
const touchedFields = method(get(_formState.touchedFields, name), args.argA, args.argB);
shouldSetValues && set(_formState.touchedFields, name, touchedFields);
}
if (_proxyFormState.dirtyFields || _proxySubscribeFormState.dirtyFields) {
_formState.dirtyFields = getDirtyFields(_defaultValues, _formValues);
}
_subjects.state.next({
name,
isDirty: _getDirty(name, values),
dirtyFields: _formState.dirtyFields,
errors: _formState.errors,
isValid: _formState.isValid
});
} else {
set(_formValues, name, values);
}
};
const updateErrors = (name, error) => {
set(_formState.errors, name, error);
_subjects.state.next({
errors: _formState.errors
});
};
const _setErrors = (errors) => {
_formState.errors = errors;
_subjects.state.next({
errors: _formState.errors,
isValid: false
});
};
const updateValidAndValue = (name, shouldSkipSetValueAs, value, ref) => {
const field = get(_fields, name);
if (field) {
const defaultValue = get(_formValues, name, isUndefined(value) ? get(_defaultValues, name) : value);
isUndefined(defaultValue) || ref && ref.defaultChecked || shouldSkipSetValueAs ? set(_formValues, name, shouldSkipSetValueAs ? defaultValue : getFieldValue(field._f)) : setFieldValue(name, defaultValue);
_state.mount && !_state.action && _setValid();
}
};
const updateTouchAndDirty = (name, fieldValue, isBlurEvent, shouldDirty, shouldRender) => {
let shouldUpdateField = false;
let isPreviousDirty = false;
const output = {
name
};
if (!_options.disabled) {
if (!isBlurEvent || shouldDirty) {
if (_proxyFormState.isDirty || _proxySubscribeFormState.isDirty) {
isPreviousDirty = _formState.isDirty;
_formState.isDirty = output.isDirty = _getDirty();
shouldUpdateField = isPreviousDirty !== output.isDirty;
}
const isCurrentFieldPristine = deepEqual(get(_defaultValues, name), fieldValue);
isPreviousDirty = !!get(_formState.dirtyFields, name);
isCurrentFieldPristine ? unset(_formState.dirtyFields, name) : set(_formState.dirtyFields, name, true);
output.dirtyFields = _formState.dirtyFields;
shouldUpdateField = shouldUpdateField || (_proxyFormState.dirtyFields || _proxySubscribeFormState.dirtyFields) && isPreviousDirty !== !isCurrentFieldPristine;
}
if (isBlurEvent) {
const isPreviousFieldTouched = get(_formState.touchedFields, name);
if (!isPreviousFieldTouched) {
set(_formState.touchedFields, name, isBlurEvent);
output.touchedFields = _formState.touchedFields;
shouldUpdateField = shouldUpdateField || (_proxyFormState.touchedFields || _proxySubscribeFormState.touchedFields) && isPreviousFieldTouched !== isBlurEvent;
}
}
shouldUpdateField && shouldRender && _subjects.state.next(output);
}
return shouldUpdateField ? output : {};
};
const shouldRenderByError = (name, isValid, error, fieldState) => {
const previousFieldError = get(_formState.errors, name);
const shouldUpdateValid = (_proxyFormState.isValid || _proxySubscribeFormState.isValid) && isBoolean(isValid) && _formState.isValid !== isValid;
if (_options.delayError && error) {
delayErrorCallback = debounce(() => updateErrors(name, error));
delayErrorCallback(_options.delayError);
} else {
clearTimeout(timer);
delayErrorCallback = null;
error ? set(_formState.errors, name, error) : unset(_formState.errors, name);
}
if ((error ? !deepEqual(previousFieldError, error) : previousFieldError) || !isEmptyObject(fieldState) || shouldUpdateValid) {
const updatedFormState = {
...fieldState,
...shouldUpdateValid && isBoolean(isValid) ? { isValid } : {},
errors: _formState.errors,
name
};
_formState = {
..._formState,
...updatedFormState
};
_subjects.state.next(updatedFormState);
}
};
const _runSchema = async (name) => {
_updateIsValidating(name, true);
const result = await _options.resolver(_formValues, _options.context, getResolverOptions(name || _names.mount, _fields, _options.criteriaMode, _options.shouldUseNativeValidation));
return result;
};
const executeSchemaAndUpdateState = async (names) => {
const { errors } = await _runSchema(names);
_updateIsValidating(names);
if (names) {
for (const name of names) {
const error = get(errors, name);
error ? set(_formState.errors, name, error) : unset(_formState.errors, name);
}
} else {
_formState.errors = errors;
}
return errors;
};
const executeBuiltInValidation = async (fields, shouldOnlyCheckValid, context = {
valid: true
}) => {
for (const name in fields) {
const field = fields[name];
if (field) {
const { _f, ...fieldValue } = field;
if (_f) {
const isFieldArrayRoot = _names.array.has(_f.name);
const isPromiseFunction = field._f && hasPromiseValidation(field._f);
if (isPromiseFunction && _proxyFormState.validatingFields) {
_updateIsValidating([_f.name], true);
}
const fieldError = await validateField(field, _names.disabled, _formValues, shouldDisplayAllAssociatedErrors, _options.shouldUseNativeValidation && !shouldOnlyCheckValid, isFieldArrayRoot);
if (isPromiseFunction && _proxyFormState.validatingFields) {
_updateIsValidating([_f.name]);
}
if (fieldError[_f.name]) {
context.valid = false;
if (shouldOnlyCheckValid) {
break;
}
}
!shouldOnlyCheckValid && (get(fieldError, _f.name) ? isFieldArrayRoot ? updateFieldArrayRootError(_formState.errors, fieldError, _f.name) : set(_formState.errors, _f.name, fieldError[_f.name]) : unset(_formState.errors, _f.name));
}
!isEmptyObject(fieldValue) && await executeBuiltInValidation(fieldValue, shouldOnlyCheckValid, context);
}
}
return context.valid;
};
const _removeUnmounted = () => {
for (const name of _names.unMount) {
const field = get(_fields, name);
field && (field._f.refs ? field._f.refs.every((ref) => !live(ref)) : !live(field._f.ref)) && unregister(name);
}
_names.unMount = /* @__PURE__ */ new Set();
};
const _getDirty = (name, data) => !_options.disabled && (name && data && set(_formValues, name, data), !deepEqual(getValues(), _defaultValues));
const _getWatch = (names, defaultValue, isGlobal) => generateWatchOutput(names, _names, {
..._state.mount ? _formValues : isUndefined(defaultValue) ? _defaultValues : isString(names) ? { [names]: defaultValue } : defaultValue
}, isGlobal, defaultValue);
const _getFieldArray = (name) => compact(get(_state.mount ? _formValues : _defaultValues, name, _options.shouldUnregister ? get(_defaultValues, name, []) : []));
const setFieldValue = (name, value, options = {}) => {
const field = get(_fields, name);
let fieldValue = value;
if (field) {
const fieldReference = field._f;
if (fieldReference) {
!fieldReference.disabled && set(_formValues, name, getFieldValueAs(value, fieldReference));
fieldValue = isHTMLElement(fieldReference.ref) && isNullOrUndefined(value) ? "" : value;
if (isMultipleSelect(fieldReference.ref)) {
[...fieldReference.ref.options].forEach((optionRef) => optionRef.selected = fieldValue.includes(optionRef.value));
} else if (fieldReference.refs) {
if (isCheckBoxInput(fieldReference.ref)) {
fieldReference.refs.forEach((checkboxRef) => {
if (!checkboxRef.defaultChecked || !checkboxRef.disabled) {
if (Array.isArray(fieldValue)) {
checkboxRef.checked = !!fieldValue.find((data) => data === checkboxRef.value);
} else {
checkboxRef.checked = fieldValue === checkboxRef.value || !!fieldValue;
}
}
});
} else {
fieldReference.refs.forEach((radioRef) => radioRef.checked = radioRef.value === fieldValue);
}
} else if (isFileInput(fieldReference.ref)) {
fieldReference.ref.value = "";
} else {
fieldReference.ref.value = fieldValue;
if (!fieldReference.ref.type) {
_subjects.state.next({
name,
values: cloneObject(_formValues)
});
}
}
}
}
(options.shouldDirty || options.shouldTouch) && updateTouchAndDirty(name, fieldValue, options.shouldTouch, options.shouldDirty, true);
options.shouldValidate && trigger(name);
};
const setValues = (name, value, options) => {
for (const fieldKey in value) {
if (!value.hasOwnProperty(fieldKey)) {
return;
}
const fieldValue = value[fieldKey];
const fieldName = name + "." + fieldKey;
const field = get(_fields, fieldName);
(_names.array.has(name) || isObject(fieldValue) || field && !field._f) && !isDateObject(fieldValue) ? setValues(fieldName, fieldValue, options) : setFieldValue(fieldName, fieldValue, options);
}
};
const setValue = (name, value, options = {}) => {
const field = get(_fields, name);
const isFieldArray = _names.array.has(name);
const cloneValue = cloneObject(value);
set(_formValues, name, cloneValue);
if (isFieldArray) {
_subjects.array.next({
name,
values: cloneObject(_formValues)
});
if ((_proxyFormState.isDirty || _proxyFormState.dirtyFields || _proxySubscribeFormState.isDirty || _proxySubscribeFormState.dirtyFields) && options.shouldDirty) {
_subjects.state.next({
name,
dirtyFields: getDirtyFields(_defaultValues, _formValues),
isDirty: _getDirty(name, cloneValue)
});
}
} else {
field && !field._f && !isNullOrUndefined(cloneValue) ? setValues(name, cloneValue, options) : setFieldValue(name, cloneValue, options);
}
isWatched(name, _names) && _subjects.state.next({ ..._formState, name });
_subjects.state.next({
name: _state.mount ? name : void 0,
values: cloneObject(_formValues)
});
};
const onChange = async (event) => {
_state.mount = true;
const target = event.target;
let name = target.name;
let isFieldValueUpdated = true;
const field = get(_fields, name);
const _updateIsFieldValueUpdated = (fieldValue) => {
isFieldValueUpdated = Number.isNaN(fieldValue) || isDateObject(fieldValue) && isNaN(fieldValue.getTime()) || deepEqual(fieldValue, get(_formValues, name, fieldValue));
};
const validationModeBeforeSubmit = getValidationModes(_options.mode);
const validationModeAfterSubmit = getValidationModes(_options.reValidateMode);
if (field) {
let error;
let isValid;
const fieldValue = target.type ? getFieldValue(field._f) : getEventValue(event);
const isBlurEvent = event.type === EVENTS.BLUR || event.type === EVENTS.FOCUS_OUT;
const shouldSkipValidation = !hasValidation(field._f) && !_options.resolver && !get(_formState.errors, name) && !field._f.deps || skipValidation(isBlurEvent, get(_formState.touchedFields, name), _formState.isSubmitted, validationModeAfterSubmit, validationModeBeforeSubmit);
const watched = isWatched(name, _names, isBlurEvent);
set(_formValues, name, fieldValue);
if (isBlurEvent) {
if (!target || !target.readOnly) {
field._f.onBlur && field._f.onBlur(event);
delayErrorCallback && delayErrorCallback(0);
}
} else if (field._f.onChange) {
field._f.onChange(event);
}
const fieldState = updateTouchAndDirty(name, fieldValue, isBlurEvent);
const shouldRender = !isEmptyObject(fieldState) || watched;
!isBlurEvent && _subjects.state.next({
name,
type: event.type,
values: cloneObject(_formValues)
});
if (shouldSkipValidation) {
if (_proxyFormState.isValid || _proxySubscribeFormState.isValid) {
if (_options.mode === "onBlur") {
if (isBlurEvent) {
_setValid();
}
} else if (!isBlurEvent) {
_setValid();
}
}
return shouldRender && _subjects.state.next({ name, ...watched ? {} : fieldState });
}
!isBlurEvent && watched && _subjects.state.next({ ..._formState });
if (_options.resolver) {
const { errors } = await _runSchema([name]);
_updateIsValidating([name]);
_updateIsFieldValueUpdated(fieldValue);
if (isFieldValueUpdated) {
const previousErrorLookupResult = schemaErrorLookup(_formState.errors, _fields, name);
const errorLookupResult = schemaErrorLookup(errors, _fields, previousErrorLookupResult.name || name);
error = errorLookupResult.error;
name = errorLookupResult.name;
isValid = isEmptyObject(errors);
}
} else {
_updateIsValidating([name], true);
error = (await validateField(field, _names.disabled, _formValues, shouldDisplayAllAssociatedErrors, _options.shouldUseNativeValidation))[name];
_updateIsValidating([name]);
_updateIsFieldValueUpdated(fieldValue);
if (isFieldValueUpdated) {
if (error) {
isValid = false;
} else if (_proxyFormState.isValid || _proxySubscribeFormState.isValid) {
isValid = await executeBuiltInValidation(_fields, true);
}
}
}
if (isFieldValueUpdated) {
field._f.deps && (!Array.isArray(field._f.deps) || field._f.deps.length > 0) && trigger(field._f.deps);
shouldRenderByError(name, isValid, error, fieldState);
}
}
};
const _focusInput = (ref, key) => {
if (get(_formState.errors, key) && ref.focus) {
ref.focus();
return 1;
}
return;
};
const trigger = async (name, options = {}) => {
let isValid;
let validationResult;
const fieldNames = convertToArrayPayload(name);
if (_options.resolver) {
const errors = await executeSchemaAndUpdateState(isUndefined(name) ? name : fieldNames);
isValid = isEmptyObject(errors);
validationResult = name ? !fieldNames.some((name2) => get(errors, name2)) : isValid;
} else if (name) {
validationResult = (await Promise.all(fieldNames.map(async (fieldName) => {
const field = get(_fields, fieldName);
return await executeBuiltInValidation(field && field._f ? { [fieldName]: field } : field);
}))).every(Boolean);
!(!validationResult && !_formState.isValid) && _setValid();
} else {
validationResult = isValid = await executeBuiltInValidation(_fields);
}
_subjects.state.next({
...!isString(name) || (_proxyFormState.isValid || _proxySubscribeFormState.isValid) && isValid !== _formState.isValid ? {} : { name },
..._options.resolver || !name ? { isValid } : {},
errors: _formState.errors
});
options.shouldFocus && !validationResult && iterateFieldsByAction(_fields, _focusInput, name ? fieldNames : _names.mount);
return validationResult;
};
const getValues = (fieldNames, config) => {
let values = {
..._state.mount ? _formValues : _defaultValues
};
if (config) {
values = extractFormValues(config.dirtyFields ? _formState.dirtyFields : _formState.touchedFields, values);
}
return isUndefined(fieldNames) ? values : isString(fieldNames) ? get(values, fieldNames) : fieldNames.map((name) => get(values, name));
};
const getFieldState = (name, formState) => ({
invalid: !!get((formState || _formState).errors, name),
isDirty: !!get((formState || _formState).dirtyFields, name),
error: get((formState || _formState).errors, name),
isValidating: !!get(_formState.validatingFields, name),
isTouched: !!get((formState || _formState).touchedFields, name)
});
const clearErrors = (name) => {
name && convertToArrayPayload(name).forEach((inputName) => unset(_formState.errors, inputName));
_subjects.state.next({
errors: name ? _formState.errors : {}
});
};
const setError = (name, error, options) => {
const ref = (get(_fields, name, { _f: {} })._f || {}).ref;
const currentError = get(_formState.errors, name) || {};
const { ref: currentRef, message, type, ...restOfErrorTree } = currentError;
set(_formState.errors, name, {
...restOfErrorTree,
...error,
ref
});
_subjects.state.next({
name,
errors: _formState.errors,
isValid: false
});
options && options.shouldFocus && ref && ref.focus && ref.focus();
};
const watch = (name, defaultValue) => isFunction(name) ? _subjects.state.subscribe({
next: (payload) => "values" in payload && name(_getWatch(void 0, defaultValue), payload)
}) : _getWatch(name, defaultValue, true);
const _subscribe = (props2) => _subjects.state.subscribe({
next: (formState) => {
if (shouldSubscribeByName(props2.name, formState.name, props2.exact) && shouldRenderFormState(formState, props2.formState || _proxyFormState, _setFormState, props2.reRenderRoot)) {
props2.callback({
values: { ..._formValues },
..._formState,
...formState,
defaultValues: _defaultValues
});
}
}
}).unsubscribe;
const subscribe2 = (props2) => {
_state.mount = true;
_proxySubscribeFormState = {
..._proxySubscribeFormState,
...props2.formState
};
return _subscribe({
...props2,
formState: {
...defaultProxyFormState,
...props2.formState
}
});
};
const unregister = (name, options = {}) => {
for (const fieldName of name ? convertToArrayPayload(name) : _names.mount) {
_names.mount.delete(fieldName);
_names.array.delete(fieldName);
if (!options.keepValue) {
unset(_fields, fieldName);
unset(_formValues, fieldName);
}
!options.keepError && unset(_formState.errors, fieldName);
!options.keepDirty && unset(_formState.dirtyFields, fieldName);
!options.keepTouched && unset(_formState.touchedFields, fieldName);
!options.keepIsValidating && unset(_formState.validatingFields, fieldName);
!_options.shouldUnregister && !options.keepDefaultValue && unset(_defaultValues, fieldName);
}
_subjects.state.next({
values: cloneObject(_formValues)
});
_subjects.state.next({
..._formState,
...!options.keepDirty ? {} : { isDirty: _getDirty() }
});
!options.keepIsValid && _setValid();
};
const _setDisabledField = ({ disabled, name }) => {
if (isBoolean(disabled) && _state.mount || !!disabled || _names.disabled.has(name)) {
disabled ? _names.disabled.add(name) : _names.disabled.delete(name);
}
};
const register = (name, options = {}) => {
let field = get(_fields, name);
const disabledIsDefined = isBoolean(options.disabled) || isBoolean(_options.disabled);
set(_fields, name, {
...field || {},
_f: {
...field && field._f ? field._f : { ref: { name } },
name,
mount: true,
...options
}
});
_names.mount.add(name);
if (field) {
_setDisabledField({
disabled: isBoolean(options.disabled) ? options.disabled : _options.disabled,
name
});
} else {
updateValidAndValue(name, true, options.value);
}
return {
...disabledIsDefined ? { disabled: options.disabled || _options.disabled } : {},
..._options.progressive ? {
required: !!options.required,
min: getRuleValue(options.min),
max: getRuleValue(options.max),
minLength: getRuleValue(options.minLength),
maxLength: getRuleValue(options.maxLength),
pattern: getRuleValue(options.pattern)
} : {},
name,
onChange,
onBlur: onChange,
ref: (ref) => {
if (ref) {
register(name, options);
field = get(_fields, name);
const fieldRef = isUndefined(ref.value) ? ref.querySelectorAll ? ref.querySelectorAll("input,select,textarea")[0] || ref : ref : ref;
const radioOrCheckbox = isRadioOrCheckbox(fieldRef);
const refs = field._f.refs || [];
if (radioOrCheckbox ? refs.find((option) => option === fieldRef) : fieldRef === field._f.ref) {
return;
}
set(_fields, name, {
_f: {
...field._f,
...radioOrCheckbox ? {
refs: [
...refs.filter(live),
fieldRef,
...Array.isArray(get(_defaultValues, name)) ? [{}] : []
],
ref: { type: fieldRef.type, name }
} : { ref: fieldRef }
}
});
updateValidAndValue(name, false, void 0, fieldRef);
} else {
field = get(_fields, name, {});
if (field._f) {
field._f.mount = false;
}
(_options.shouldUnregister || options.shouldUnregister) && !(isNameInFieldArray(_names.array, name) && _state.action) && _names.unMount.add(name);
}
}
};
};
const _focusError = () => _options.shouldFocusError && iterateFieldsByAction(_fields, _focusInput, _names.mount);
const _disableForm = (disabled) => {
if (isBoolean(disabled)) {
_subjects.state.next({ disabled });
iterateFieldsByAction(_fields, (ref, name) => {
const currentField = get(_fields, name);
if (currentField) {
ref.disabled = currentField._f.disabled || disabled;
if (Array.isArray(currentField._f.refs)) {
currentField._f.refs.forEach((inputRef) => {
inputRef.disabled = currentField._f.disabled || disabled;
});
}
}
}, 0, false);
}
};
const handleSubmit = (onValid, onInvalid) => async (e) => {
let onValidError = void 0;
if (e) {
e.preventDefault && e.preventDefault();
e.persist && e.persist();
}
let fieldValues = cloneObject(_formValues);
_subjects.state.next({
isSubmitting: true
});
if (_options.resolver) {
const { errors, values } = await _runSchema();
_updateIsValidating();
_formState.errors = errors;
fieldValues = cloneObject(values);
} else {
await executeBuiltInValidation(_fields);
}
if (_names.disabled.size) {
for (const name of _names.disabled) {
unset(fieldValues, name);
}
}
unset(_formState.errors, "root");
if (isEmptyObject(_formState.errors)) {
_subjects.state.next({
errors: {}
});
try {
await onValid(fieldValues, e);
} catch (error) {
onValidError = error;
}
} else {
if (onInvalid) {
await onInvalid({ ..._formState.errors }, e);
}
_focusError();
setTimeout(_focusError);
}
_subjects.state.next({
isSubmitted: true,
isSubmitting: false,
isSubmitSuccessful: isEmptyObject(_formState.errors) && !onValidError,
submitCount: _formState.submitCount + 1,
errors: _formState.errors
});
if (onValidError) {
throw onValidError;
}
};
const resetField = (name, options = {}) => {
if (get(_fields, name)) {
if (isUndefined(options.defaultValue)) {
setValue(name, cloneObject(get(_defaultValues, name)));
} else {
setValue(name, options.defaultValue);
set(_defaultValues, name, cloneObject(options.defaultValue));
}
if (!options.keepTouched) {
unset(_formState.touchedFields, name);
}
if (!options.keepDirty) {
unset(_formState.dirtyFields, name);
_formState.isDirty = options.defaultValue ? _getDirty(name, cloneObject(get(_defaultValues, name))) : _getDirty();
}
if (!options.keepError) {
unset(_formState.errors, name);
_proxyFormState.isValid && _setValid();
}
_subjects.state.next({ ..._formState });
}
};
const _reset = (formValues, keepStateOptions = {}) => {
const updatedValues = formValues ? cloneObject(formValues) : _defaultValues;
const cloneUpdatedValues = cloneObject(updatedValues);
const isEmptyResetValues = isEmptyObject(formValues);
const values = isEmptyResetValues ? _defaultValues : cloneUpdatedValues;
if (!keepStateOptions.keepDefaultValues) {
_defaultValues = updatedValues;
}
if (!keepStateOptions.keepValues) {
if (keepStateOptions.keepDirtyValues) {
const fieldsToCheck = /* @__PURE__ */ new Set([
..._names.mount,
...Object.keys(getDirtyFields(_defaultValues, _formValues))
]);
for (const fieldName of Array.from(fieldsToCheck)) {
get(_formState.dirtyFields, fieldName) ? set(values, fieldName, get(_formValues, fieldName)) : setValue(fieldName, get(values, fieldName));
}
} else {
if (isWeb && isUndefined(formValues)) {
for (const name of _names.mount) {
const field = get(_fields, name);
if (field && field._f) {
const fieldReference = Array.isArray(field._f.refs) ? field._f.refs[0] : field._f.ref;
if (isHTMLElement(fieldReference)) {
const form = fieldReference.closest("form");
if (form) {
form.reset();
break;
}
}
}
}
}
if (keepStateOptions.keepFieldsRef) {
for (const fieldName of _names.mount) {
setValue(fieldName, get(values, fieldName));
}
} else {
_fields = {};
}
}
_formValues = _options.shouldUnregister ? keepStateOptions.keepDefaultValues ? cloneObject(_defaultValues) : {} : cloneObject(values);
_subjects.array.next({
values: { ...values }
});
_subjects.state.next({
values: { ...values }
});
}
_names = {
mount: keepStateOptions.keepDirtyValues ? _names.mount : /* @__PURE__ */ new Set(),
unMount: /* @__PURE__ */ new Set(),
array: /* @__PURE__ */ new Set(),
disabled: /* @__PURE__ */ new Set(),
watch: /* @__PURE__ */ new Set(),
watchAll: false,
focus: ""
};
_state.mount = !_proxyFormState.isValid || !!keepStateOptions.keepIsValid || !!keepStateOptions.keepDirtyValues || !_options.shouldUnregister && !isEmptyObject(values);
_state.watch = !!_options.shouldUnregister;
_state.keepIsValid = !!keepStateOptions.keepIsValid;
_state.action = false;
if (!keepStateOptions.keepErrors) {
_formState.errors = {};
}
_subjects.state.next({
submitCount: keepStateOptions.keepSubmitCount ? _formState.submitCount : 0,
isDirty: isEmptyResetValues ? false : keepStateOptions.keepDirty ? _formState.isDirty : !!(keepStateOptions.keepDefaultValues && !deepEqual(formValues, _defaultValues)),
isSubmitted: keepStateOptions.keepIsSubmitted ? _formState.isSubmitted : false,
dirtyFields: isEmptyResetValues ? {} : keepStateOptions.keepDirtyValues ? keepStateOptions.keepDefaultValues && _formValues ? getDirtyFields(_defaultValues, _formValues) : _formState.dirtyFields : keepStateOptions.keepDefaultValues && formValues ? getDirtyFields(_defaultValues, formValues) : keepStateOptions.keepDirty ? _formState.dirtyFields : {},
touchedFields: keepStateOptions.keepTouched ? _formState.touchedFields : {},
errors: keepStateOptions.keepErrors ? _formState.errors : {},
isSubmitSuccessful: keepStateOptions.keepIsSubmitSuccessful ? _formState.isSubmitSuccessful : false,
isSubmitting: false,
defaultValues: _defaultValues
});
};
const reset = (formValues, keepStateOptions) => _reset(isFunction(formValues) ? formValues(_formValues) : formValues, { ..._options.resetOptions, ...keepStateOptions });
const setFocus = (name, options = {}) => {
const field = get(_fields, name);
const fieldReference = field && field._f;
if (fieldReference) {
const fieldRef = fieldReference.refs ? fieldReference.refs[0] : fieldReference.ref;
if (fieldRef.focus) {
setTimeout(() => {
fieldRef.focus();
options.shouldSelect && isFunction(fieldRef.select) && fieldRef.select();
});
}
}
};
const _setFormState = (updatedFormState) => {
_formState = {
..._formState,
...updatedFormState
};
};
const _resetDefaultValues = () => isFunction(_options.defaultValues) && _options.defaultValues().then((values) => {
reset(values, _options.resetOptions);
_subjects.state.next({
isLoading: false
});
});
const methods = {
control: {
register,
unregister,
getFieldState,
handleSubmit,
setError,
_subscribe,
_runSchema,
_updateIsValidating,
_focusError,
_getWatch,
_getDirty,
_setValid,
_setFieldArray,
_setDisabledField,
_setErrors,
_getFieldArray,
_reset,
_resetDefaultValues,
_removeUnmounted,
_disableForm,
_subjects,
_proxyFormState,
get _fields() {
return _fields;
},
get _formValues() {
return _formValues;
},
get _state() {
return _state;
},
set _state(value) {
_state = value;
},
get _defaultValues() {
return _defaultValues;
},
get _names() {
return _names;
},
set _names(value) {
_names = value;
},
get _formState() {
return _formState;
},
get _options() {
return _options;
},
set _options(value) {
_options = {
..._options,
...value
};
}
},
subscribe: subscribe2,
trigger,
register,
handleSubmit,
watch,
setValue,
getValues,
reset,
resetField,
clearErrors,
unregister,
setError,
setFocus,
getFieldState
};
return {
...methods,
formControl: methods
};
}
function useForm(props = {}) {
const _formControl = import_react.default.useRef(void 0);
const _values = import_react.default.useRef(void 0);
const [formState, updateFormState] = import_react.default.useState({
isDirty: false,
isValidating: false,
isLoading: isFunction(props.defaultValues),
isSubmitted: false,
isSubmitting: false,
isSubmitSuccessful: false,
isValid: false,
submitCount: 0,
dirtyFields: {},
touchedFields: {},
validatingFields: {},
errors: props.errors || {},
disabled: props.disabled || false,
isReady: false,
defaultValues: isFunction(props.defaultValues) ? void 0 : props.defaultValues
});
if (!_formControl.current) {
if (props.formControl) {
_formControl.current = {
...props.formControl,
formState
};
if (props.defaultValues && !isFunction(props.defaultValues)) {
props.formControl.reset(props.defaultValues, props.resetOptions);
}
} else {
const { formControl, ...rest } = createFormControl(props);
_formControl.current = {
...rest,
formState
};
}
}
const control = _formControl.current.control;
control._options = props;
useIsomorphicLayoutEffect(() => {
const sub = control._subscribe({
formState: control._proxyFormState,
callback: () => updateFormState({ ...control._formState }),
reRenderRoot: true
});
updateFormState((data) => ({
...data,
isReady: true
}));
control._formState.isReady = true;
return sub;
}, [control]);
import_react.default.useEffect(() => control._disableForm(props.disabled), [control, props.disabled]);
import_react.default.useEffect(() => {
if (props.mode) {
control._options.mode = props.mode;
}
if (props.reValidateMode) {
control._options.reValidateMode = props.reValidateMode;
}
}, [control, props.mode, props.reValidateMode]);
import_react.default.useEffect(() => {
if (props.errors) {
control._setErrors(props.errors);
control._focusError();
}
}, [control, props.errors]);
import_react.default.useEffect(() => {
props.shouldUnregister && control._subjects.state.next({
values: control._getWatch()
});
}, [control, props.shouldUnregister]);
import_react.default.useEffect(() => {
if (control._proxyFormState.isDirty) {
const isDirty = control._getDirty();
if (isDirty !== formState.isDirty) {
control._subjects.state.next({
isDirty
});
}
}
}, [control, formState.isDirty]);
import_react.default.useEffect(() => {
var _a;
if (props.values && !deepEqual(props.values, _values.current)) {
control._reset(props.values, {
keepFieldsRef: true,
...control._options.resetOptions
});
if (!((_a = control._options.resetOptions) === null || _a === void 0 ? void 0 : _a.keepIsValid)) {
control._setValid();
}
_values.current = props.values;
updateFormState((state) => ({ ...state }));
} else {
control._resetDefaultValues();
}
}, [control, props.values]);
import_react.default.useEffect(() => {
if (!control._state.mount) {
control._setValid();
control._state.mount = true;
}
if (control._state.watch) {
control._state.watch = false;
control._subjects.state.next({ ...control._formState });
}
control._removeUnmounted();
});
_formControl.current.formState = getProxyFormState(formState, control);
return _formControl.current;
}
// ../../node_modules/.pnpm/@radix-ui+react-avatar@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_cea228018a2b8cb6c2f671b3f24f4d51/node_modules/@radix-ui/react-avatar/dist/index.mjs
var React6 = __toESM(require_react(), 1);
// ../../node_modules/.pnpm/@radix-ui+react-context@1.1.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs
var React2 = __toESM(require_react(), 1);
var import_jsx_runtime = __toESM(require_jsx_runtime(), 1);
function createContextScope(scopeName, createContextScopeDeps = []) {
let defaultContexts = [];
function createContext32(rootComponentName, defaultContext) {
const BaseContext = React2.createContext(defaultContext);
BaseContext.displayName = rootComponentName + "Context";
const index = defaultContexts.length;
defaultContexts = [...defaultContexts, defaultContext];
const Provider2 = (props) => {
var _a;
const { scope, children, ...context } = props;
const Context = ((_a = scope == null ? void 0 : scope[scopeName]) == null ? void 0 : _a[index]) || BaseContext;
const value = React2.useMemo(() => context, Object.values(context));
return (0, import_jsx_runtime.jsx)(Context.Provider, { value, children });
};
Provider2.displayName = rootComponentName + "Provider";
function useContext22(consumerName, scope) {
var _a;
const Context = ((_a = scope == null ? void 0 : scope[scopeName]) == null ? void 0 : _a[index]) || BaseContext;
const context = React2.useContext(Context);
if (context) return context;
if (defaultContext !== void 0) return defaultContext;
throw new Error(`\`${consumerName}\` must be used within \`${rootComponentName}\``);
}
return [Provider2, useContext22];
}
const createScope = () => {
const scopeContexts = defaultContexts.map((defaultContext) => {
return React2.createContext(defaultContext);
});
return function useScope(scope) {
const contexts = (scope == null ? void 0 : scope[scopeName]) || scopeContexts;
return React2.useMemo(
() => ({ [`__scope${scopeName}`]: { ...scope, [scopeName]: contexts } }),
[scope, contexts]
);
};
};
createScope.scopeName = scopeName;
return [createContext32, composeContextScopes(createScope, ...createContextScopeDeps)];
}
function composeContextScopes(...scopes) {
const baseScope = scopes[0];
if (scopes.length === 1) return baseScope;
const createScope = () => {
const scopeHooks = scopes.map((createScope2) => ({
useScope: createScope2(),
scopeName: createScope2.scopeName
}));
return function useComposedScopes(overrideScopes) {
const nextScopes = scopeHooks.reduce((nextScopes2, { useScope, scopeName }) => {
const scopeProps = useScope(overrideScopes);
const currentScope = scopeProps[`__scope${scopeName}`];
return { ...nextScopes2, ...currentScope };
}, {});
return React2.useMemo(() => ({ [`__scope${baseScope.scopeName}`]: nextScopes }), [nextScopes]);
};
};
createScope.scopeName = baseScope.scopeName;
return createScope;
}
// ../../node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs
var React3 = __toESM(require_react(), 1);
function useCallbackRef(callback) {
const callbackRef = React3.useRef(callback);
React3.useEffect(() => {
callbackRef.current = callback;
});
return React3.useMemo(() => (...args) => {
var _a;
return (_a = callbackRef.current) == null ? void 0 : _a.call(callbackRef, ...args);
}, []);
}
// ../../node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs
var React4 = __toESM(require_react(), 1);
var useLayoutEffect2 = (globalThis == null ? void 0 : globalThis.document) ? React4.useLayoutEffect : () => {
};
// ../../node_modules/.pnpm/@radix-ui+react-primitive@2.1.4_@types+react-dom@19.2.3_@types+react@19.2.7__@types+rea_2890c4f0094b3fe96d52c22245e0b989/node_modules/@radix-ui/react-primitive/dist/index.mjs
var React5 = __toESM(require_react(), 1);
var ReactDOM = __toESM(require_react_dom(), 1);
var import_jsx_runtime2 = __toESM(require_jsx_runtime(), 1);
var NODES = [
"a",
"button",
"div",
"form",
"h2",
"h3",
"img",
"input",
"label",
"li",
"nav",
"ol",
"p",
"select",
"span",
"svg",
"ul"
];
var Primitive = NODES.reduce((primitive, node) => {
const Slot6 = createSlot(`Primitive.${node}`);
const Node2 = React5.forwardRef((props, forwardedRef) => {
const { asChild, ...primitiveProps } = props;
const Comp = asChild ? Slot6 : node;
if (typeof window !== "undefined") {
window[Symbol.for("radix-ui")] = true;
}
return (0, import_jsx_runtime2.jsx)(Comp, { ...primitiveProps, ref: forwardedRef });
});
Node2.displayName = `Primitive.${node}`;
return { ...primitive, [node]: Node2 };
}, {});
// ../../node_modules/.pnpm/@radix-ui+react-use-is-hydrated@0.1.0_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-is-hydrated/dist/index.mjs
var import_shim = __toESM(require_shim(), 1);
function useIsHydrated() {
return (0, import_shim.useSyncExternalStore)(
subscribe,
() => true,
() => false
);
}
function subscribe() {
return () => {
};
}
// ../../node_modules/.pnpm/@radix-ui+react-avatar@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_cea228018a2b8cb6c2f671b3f24f4d51/node_modules/@radix-ui/react-avatar/dist/index.mjs
var import_jsx_runtime3 = __toESM(require_jsx_runtime(), 1);
var AVATAR_NAME = "Avatar";
var [createAvatarContext, createAvatarScope] = createContextScope(AVATAR_NAME);
var [AvatarProvider, useAvatarContext] = createAvatarContext(AVATAR_NAME);
var Avatar = React6.forwardRef(
(props, forwardedRef) => {
const { __scopeAvatar, ...avatarProps } = props;
const [imageLoadingStatus, setImageLoadingStatus] = React6.useState("idle");
return (0, import_jsx_runtime3.jsx)(
AvatarProvider,
{
scope: __scopeAvatar,
imageLoadingStatus,
onImageLoadingStatusChange: setImageLoadingStatus,
children: (0, import_jsx_runtime3.jsx)(Primitive.span, { ...avatarProps, ref: forwardedRef })
}
);
}
);
Avatar.displayName = AVATAR_NAME;
var IMAGE_NAME = "AvatarImage";
var AvatarImage = React6.forwardRef(
(props, forwardedRef) => {
const { __scopeAvatar, src, onLoadingStatusChange = () => {
}, ...imageProps } = props;
const context = useAvatarContext(IMAGE_NAME, __scopeAvatar);
const imageLoadingStatus = useImageLoadingStatus(src, imageProps);
const handleLoadingStatusChange = useCallbackRef((status) => {
onLoadingStatusChange(status);
context.onImageLoadingStatusChange(status);
});
useLayoutEffect2(() => {
if (imageLoadingStatus !== "idle") {
handleLoadingStatusChange(imageLoadingStatus);
}
}, [imageLoadingStatus, handleLoadingStatusChange]);
return imageLoadingStatus === "loaded" ? (0, import_jsx_runtime3.jsx)(Primitive.img, { ...imageProps, ref: forwardedRef, src }) : null;
}
);
AvatarImage.displayName = IMAGE_NAME;
var FALLBACK_NAME = "AvatarFallback";
var AvatarFallback = React6.forwardRef(
(props, forwardedRef) => {
const { __scopeAvatar, delayMs, ...fallbackProps } = props;
const context = useAvatarContext(FALLBACK_NAME, __scopeAvatar);
const [canRender, setCanRender] = React6.useState(delayMs === void 0);
React6.useEffect(() => {
if (delayMs !== void 0) {
const timerId = window.setTimeout(() => setCanRender(true), delayMs);
return () => window.clearTimeout(timerId);
}
}, [delayMs]);
return canRender && context.imageLoadingStatus !== "loaded" ? (0, import_jsx_runtime3.jsx)(Primitive.span, { ...fallbackProps, ref: forwardedRef }) : null;
}
);
AvatarFallback.displayName = FALLBACK_NAME;
function resolveLoadingStatus(image, src) {
if (!image) {
return "idle";
}
if (!src) {
return "error";
}
if (image.src !== src) {
image.src = src;
}
return image.complete && image.naturalWidth > 0 ? "loaded" : "loading";
}
function useImageLoadingStatus(src, { referrerPolicy, crossOrigin }) {
const isHydrated = useIsHydrated();
const imageRef = React6.useRef(null);
const image = (() => {
if (!isHydrated) return null;
if (!imageRef.current) {
imageRef.current = new window.Image();
}
return imageRef.current;
})();
const [loadingStatus, setLoadingStatus] = React6.useState(
() => resolveLoadingStatus(image, src)
);
useLayoutEffect2(() => {
setLoadingStatus(resolveLoadingStatus(image, src));
}, [image, src]);
useLayoutEffect2(() => {
const updateStatus = (status) => () => {
setLoadingStatus(status);
};
if (!image) return;
const handleLoad = updateStatus("loaded");
const handleError = updateStatus("error");
image.addEventListener("load", handleLoad);
image.addEventListener("error", handleError);
if (referrerPolicy) {
image.referrerPolicy = referrerPolicy;
}
if (typeof crossOrigin === "string") {
image.crossOrigin = crossOrigin;
}
return () => {
image.removeEventListener("load", handleLoad);
image.removeEventListener("error", handleError);
};
}, [image, crossOrigin, referrerPolicy]);
return loadingStatus;
}
var Root = Avatar;
var Image = AvatarImage;
var Fallback = AvatarFallback;
// ../../node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs
var CLASS_PART_SEPARATOR = "-";
var createClassGroupUtils = (config) => {
const classMap = createClassMap(config);
const {
conflictingClassGroups,
conflictingClassGroupModifiers
} = config;
const getClassGroupId = (className) => {
const classParts = className.split(CLASS_PART_SEPARATOR);
if (classParts[0] === "" && classParts.length !== 1) {
classParts.shift();
}
return getGroupRecursive(classParts, classMap) || getGroupIdForArbitraryProperty(className);
};
const getConflictingClassGroupIds = (classGroupId, hasPostfixModifier) => {
const conflicts = conflictingClassGroups[classGroupId] || [];
if (hasPostfixModifier && conflictingClassGroupModifiers[classGroupId]) {
return [...conflicts, ...conflictingClassGroupModifiers[classGroupId]];
}
return conflicts;
};
return {
getClassGroupId,
getConflictingClassGroupIds
};
};
var getGroupRecursive = (classParts, classPartObject) => {
var _a;
if (classParts.length === 0) {
return classPartObject.classGroupId;
}
const currentClassPart = classParts[0];
const nextClassPartObject = classPartObject.nextPart.get(currentClassPart);
const classGroupFromNextClassPart = nextClassPartObject ? getGroupRecursive(classParts.slice(1), nextClassPartObject) : void 0;
if (classGroupFromNextClassPart) {
return classGroupFromNextClassPart;
}
if (classPartObject.validators.length === 0) {
return void 0;
}
const classRest = classParts.join(CLASS_PART_SEPARATOR);
return (_a = classPartObject.validators.find(({
validator
}) => validator(classRest))) == null ? void 0 : _a.classGroupId;
};
var arbitraryPropertyRegex = /^\[(.+)\]$/;
var getGroupIdForArbitraryProperty = (className) => {
if (arbitraryPropertyRegex.test(className)) {
const arbitraryPropertyClassName = arbitraryPropertyRegex.exec(className)[1];
const property = arbitraryPropertyClassName == null ? void 0 : arbitraryPropertyClassName.substring(0, arbitraryPropertyClassName.indexOf(":"));
if (property) {
return "arbitrary.." + property;
}
}
};
var createClassMap = (config) => {
const {
theme,
prefix
} = config;
const classMap = {
nextPart: /* @__PURE__ */ new Map(),
validators: []
};
const prefixedClassGroupEntries = getPrefixedClassGroupEntries(Object.entries(config.classGroups), prefix);
prefixedClassGroupEntries.forEach(([classGroupId, classGroup]) => {
processClassesRecursively(classGroup, classMap, classGroupId, theme);
});
return classMap;
};
var processClassesRecursively = (classGroup, classPartObject, classGroupId, theme) => {
classGroup.forEach((classDefinition) => {
if (typeof classDefinition === "string") {
const classPartObjectToEdit = classDefinition === "" ? classPartObject : getPart(classPartObject, classDefinition);
classPartObjectToEdit.classGroupId = classGroupId;
return;
}
if (typeof classDefinition === "function") {
if (isThemeGetter(classDefinition)) {
processClassesRecursively(classDefinition(theme), classPartObject, classGroupId, theme);
return;
}
classPartObject.validators.push({
validator: classDefinition,
classGroupId
});
return;
}
Object.entries(classDefinition).forEach(([key, classGroup2]) => {
processClassesRecursively(classGroup2, getPart(classPartObject, key), classGroupId, theme);
});
});
};
var getPart = (classPartObject, path) => {
let currentClassPartObject = classPartObject;
path.split(CLASS_PART_SEPARATOR).forEach((pathPart) => {
if (!currentClassPartObject.nextPart.has(pathPart)) {
currentClassPartObject.nextPart.set(pathPart, {
nextPart: /* @__PURE__ */ new Map(),
validators: []
});
}
currentClassPartObject = currentClassPartObject.nextPart.get(pathPart);
});
return currentClassPartObject;
};
var isThemeGetter = (func) => func.isThemeGetter;
var getPrefixedClassGroupEntries = (classGroupEntries, prefix) => {
if (!prefix) {
return classGroupEntries;
}
return classGroupEntries.map(([classGroupId, classGroup]) => {
const prefixedClassGroup = classGroup.map((classDefinition) => {
if (typeof classDefinition === "string") {
return prefix + classDefinition;
}
if (typeof classDefinition === "object") {
return Object.fromEntries(Object.entries(classDefinition).map(([key, value]) => [prefix + key, value]));
}
return classDefinition;
});
return [classGroupId, prefixedClassGroup];
});
};
var createLruCache = (maxCacheSize) => {
if (maxCacheSize < 1) {
return {
get: () => void 0,
set: () => {
}
};
}
let cacheSize = 0;
let cache = /* @__PURE__ */ new Map();
let previousCache = /* @__PURE__ */ new Map();
const update = (key, value) => {
cache.set(key, value);
cacheSize++;
if (cacheSize > maxCacheSize) {
cacheSize = 0;
previousCache = cache;
cache = /* @__PURE__ */ new Map();
}
};
return {
get(key) {
let value = cache.get(key);
if (value !== void 0) {
return value;
}
if ((value = previousCache.get(key)) !== void 0) {
update(key, value);
return value;
}
},
set(key, value) {
if (cache.has(key)) {
cache.set(key, value);
} else {
update(key, value);
}
}
};
};
var IMPORTANT_MODIFIER = "!";
var createParseClassName = (config) => {
const {
separator,
experimentalParseClassName
} = config;
const isSeparatorSingleCharacter = separator.length === 1;
const firstSeparatorCharacter = separator[0];
const separatorLength = separator.length;
const parseClassName = (className) => {
const modifiers = [];
let bracketDepth = 0;
let modifierStart = 0;
let postfixModifierPosition;
for (let index = 0; index < className.length; index++) {
let currentCharacter = className[index];
if (bracketDepth === 0) {
if (currentCharacter === firstSeparatorCharacter && (isSeparatorSingleCharacter || className.slice(index, index + separatorLength) === separator)) {
modifiers.push(className.slice(modifierStart, index));
modifierStart = index + separatorLength;
continue;
}
if (currentCharacter === "/") {
postfixModifierPosition = index;
continue;
}
}
if (currentCharacter === "[") {
bracketDepth++;
} else if (currentCharacter === "]") {
bracketDepth--;
}
}
const baseClassNameWithImportantModifier = modifiers.length === 0 ? className : className.substring(modifierStart);
const hasImportantModifier = baseClassNameWithImportantModifier.startsWith(IMPORTANT_MODIFIER);
const baseClassName = hasImportantModifier ? baseClassNameWithImportantModifier.substring(1) : baseClassNameWithImportantModifier;
const maybePostfixModifierPosition = postfixModifierPosition && postfixModifierPosition > modifierStart ? postfixModifierPosition - modifierStart : void 0;
return {
modifiers,
hasImportantModifier,
baseClassName,
maybePostfixModifierPosition
};
};
if (experimentalParseClassName) {
return (className) => experimentalParseClassName({
className,
parseClassName
});
}
return parseClassName;
};
var sortModifiers = (modifiers) => {
if (modifiers.length <= 1) {
return modifiers;
}
const sortedModifiers = [];
let unsortedModifiers = [];
modifiers.forEach((modifier) => {
const isArbitraryVariant = modifier[0] === "[";
if (isArbitraryVariant) {
sortedModifiers.push(...unsortedModifiers.sort(), modifier);
unsortedModifiers = [];
} else {
unsortedModifiers.push(modifier);
}
});
sortedModifiers.push(...unsortedModifiers.sort());
return sortedModifiers;
};
var createConfigUtils = (config) => ({
cache: createLruCache(config.cacheSize),
parseClassName: createParseClassName(config),
...createClassGroupUtils(config)
});
var SPLIT_CLASSES_REGEX = /\s+/;
var mergeClassList = (classList, configUtils) => {
const {
parseClassName,
getClassGroupId,
getConflictingClassGroupIds
} = configUtils;
const classGroupsInConflict = [];
const classNames = classList.trim().split(SPLIT_CLASSES_REGEX);
let result = "";
for (let index = classNames.length - 1; index >= 0; index -= 1) {
const originalClassName = classNames[index];
const {
modifiers,
hasImportantModifier,
baseClassName,
maybePostfixModifierPosition
} = parseClassName(originalClassName);
let hasPostfixModifier = Boolean(maybePostfixModifierPosition);
let classGroupId = getClassGroupId(hasPostfixModifier ? baseClassName.substring(0, maybePostfixModifierPosition) : baseClassName);
if (!classGroupId) {
if (!hasPostfixModifier) {
result = originalClassName + (result.length > 0 ? " " + result : result);
continue;
}
classGroupId = getClassGroupId(baseClassName);
if (!classGroupId) {
result = originalClassName + (result.length > 0 ? " " + result : result);
continue;
}
hasPostfixModifier = false;
}
const variantModifier = sortModifiers(modifiers).join(":");
const modifierId = hasImportantModifier ? variantModifier + IMPORTANT_MODIFIER : variantModifier;
const classId = modifierId + classGroupId;
if (classGroupsInConflict.includes(classId)) {
continue;
}
classGroupsInConflict.push(classId);
const conflictGroups = getConflictingClassGroupIds(classGroupId, hasPostfixModifier);
for (let i = 0; i < conflictGroups.length; ++i) {
const group = conflictGroups[i];
classGroupsInConflict.push(modifierId + group);
}
result = originalClassName + (result.length > 0 ? " " + result : result);
}
return result;
};
function twJoin() {
let index = 0;
let argument;
let resolvedValue;
let string = "";
while (index < arguments.length) {
if (argument = arguments[index++]) {
if (resolvedValue = toValue(argument)) {
string && (string += " ");
string += resolvedValue;
}
}
}
return string;
}
var toValue = (mix) => {
if (typeof mix === "string") {
return mix;
}
let resolvedValue;
let string = "";
for (let k2 = 0; k2 < mix.length; k2++) {
if (mix[k2]) {
if (resolvedValue = toValue(mix[k2])) {
string && (string += " ");
string += resolvedValue;
}
}
}
return string;
};
function createTailwindMerge(createConfigFirst, ...createConfigRest) {
let configUtils;
let cacheGet;
let cacheSet;
let functionToCall = initTailwindMerge;
function initTailwindMerge(classList) {
const config = createConfigRest.reduce((previousConfig, createConfigCurrent) => createConfigCurrent(previousConfig), createConfigFirst());
configUtils = createConfigUtils(config);
cacheGet = configUtils.cache.get;
cacheSet = configUtils.cache.set;
functionToCall = tailwindMerge;
return tailwindMerge(classList);
}
function tailwindMerge(classList) {
const cachedResult = cacheGet(classList);
if (cachedResult) {
return cachedResult;
}
const result = mergeClassList(classList, configUtils);
cacheSet(classList, result);
return result;
}
return function callTailwindMerge() {
return functionToCall(twJoin.apply(null, arguments));
};
}
var fromTheme = (key) => {
const themeGetter = (theme) => theme[key] || [];
themeGetter.isThemeGetter = true;
return themeGetter;
};
var arbitraryValueRegex = /^\[(?:([a-z-]+):)?(.+)\]$/i;
var fractionRegex = /^\d+\/\d+$/;
var stringLengths = /* @__PURE__ */ new Set(["px", "full", "screen"]);
var tshirtUnitRegex = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/;
var lengthUnitRegex = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/;
var colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/;
var shadowRegex = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/;
var imageRegex = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/;
var isLength = (value) => isNumber(value) || stringLengths.has(value) || fractionRegex.test(value);
var isArbitraryLength = (value) => getIsArbitraryValue(value, "length", isLengthOnly);
var isNumber = (value) => Boolean(value) && !Number.isNaN(Number(value));
var isArbitraryNumber = (value) => getIsArbitraryValue(value, "number", isNumber);
var isInteger = (value) => Boolean(value) && Number.isInteger(Number(value));
var isPercent = (value) => value.endsWith("%") && isNumber(value.slice(0, -1));
var isArbitraryValue = (value) => arbitraryValueRegex.test(value);
var isTshirtSize = (value) => tshirtUnitRegex.test(value);
var sizeLabels = /* @__PURE__ */ new Set(["length", "size", "percentage"]);
var isArbitrarySize = (value) => getIsArbitraryValue(value, sizeLabels, isNever);
var isArbitraryPosition = (value) => getIsArbitraryValue(value, "position", isNever);
var imageLabels = /* @__PURE__ */ new Set(["image", "url"]);
var isArbitraryImage = (value) => getIsArbitraryValue(value, imageLabels, isImage);
var isArbitraryShadow = (value) => getIsArbitraryValue(value, "", isShadow);
var isAny = () => true;
var getIsArbitraryValue = (value, label, testValue) => {
const result = arbitraryValueRegex.exec(value);
if (result) {
if (result[1]) {
return typeof label === "string" ? result[1] === label : label.has(result[1]);
}
return testValue(result[2]);
}
return false;
};
var isLengthOnly = (value) => (
// `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
// For example, `hsl(0 0% 0%)` would be classified as a length without this check.
// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
lengthUnitRegex.test(value) && !colorFunctionRegex.test(value)
);
var isNever = () => false;
var isShadow = (value) => shadowRegex.test(value);
var isImage = (value) => imageRegex.test(value);
var validators = Object.defineProperty({
__proto__: null,
isAny,
isArbitraryImage,
isArbitraryLength,
isArbitraryNumber,
isArbitraryPosition,
isArbitraryShadow,
isArbitrarySize,
isArbitraryValue,
isInteger,
isLength,
isNumber,
isPercent,
isTshirtSize
}, Symbol.toStringTag, {
value: "Module"
});
var getDefaultConfig = () => {
const colors = fromTheme("colors");
const spacing = fromTheme("spacing");
const blur = fromTheme("blur");
const brightness = fromTheme("brightness");
const borderColor = fromTheme("borderColor");
const borderRadius = fromTheme("borderRadius");
const borderSpacing = fromTheme("borderSpacing");
const borderWidth = fromTheme("borderWidth");
const contrast = fromTheme("contrast");
const grayscale = fromTheme("grayscale");
const hueRotate = fromTheme("hueRotate");
const invert = fromTheme("invert");
const gap = fromTheme("gap");
const gradientColorStops = fromTheme("gradientColorStops");
const gradientColorStopPositions = fromTheme("gradientColorStopPositions");
const inset = fromTheme("inset");
const margin = fromTheme("margin");
const opacity = fromTheme("opacity");
const padding = fromTheme("padding");
const saturate = fromTheme("saturate");
const scale = fromTheme("scale");
const sepia = fromTheme("sepia");
const skew = fromTheme("skew");
const space = fromTheme("space");
const translate = fromTheme("translate");
const getOverscroll = () => ["auto", "contain", "none"];
const getOverflow = () => ["auto", "hidden", "clip", "visible", "scroll"];
const getSpacingWithAutoAndArbitrary = () => ["auto", isArbitraryValue, spacing];
const getSpacingWithArbitrary = () => [isArbitraryValue, spacing];
const getLengthWithEmptyAndArbitrary = () => ["", isLength, isArbitraryLength];
const getNumberWithAutoAndArbitrary = () => ["auto", isNumber, isArbitraryValue];
const getPositions = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"];
const getLineStyles = () => ["solid", "dashed", "dotted", "double", "none"];
const getBlendModes = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"];
const getAlign = () => ["start", "end", "center", "between", "around", "evenly", "stretch"];
const getZeroAndEmpty = () => ["", "0", isArbitraryValue];
const getBreaks = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"];
const getNumberAndArbitrary = () => [isNumber, isArbitraryValue];
return {
cacheSize: 500,
separator: ":",
theme: {
colors: [isAny],
spacing: [isLength, isArbitraryLength],
blur: ["none", "", isTshirtSize, isArbitraryValue],
brightness: getNumberAndArbitrary(),
borderColor: [colors],
borderRadius: ["none", "", "full", isTshirtSize, isArbitraryValue],
borderSpacing: getSpacingWithArbitrary(),
borderWidth: getLengthWithEmptyAndArbitrary(),
contrast: getNumberAndArbitrary(),
grayscale: getZeroAndEmpty(),
hueRotate: getNumberAndArbitrary(),
invert: getZeroAndEmpty(),
gap: getSpacingWithArbitrary(),
gradientColorStops: [colors],
gradientColorStopPositions: [isPercent, isArbitraryLength],
inset: getSpacingWithAutoAndArbitrary(),
margin: getSpacingWithAutoAndArbitrary(),
opacity: getNumberAndArbitrary(),
padding: getSpacingWithArbitrary(),
saturate: getNumberAndArbitrary(),
scale: getNumberAndArbitrary(),
sepia: getZeroAndEmpty(),
skew: getNumberAndArbitrary(),
space: getSpacingWithArbitrary(),
translate: getSpacingWithArbitrary()
},
classGroups: {
// Layout
/**
* Aspect Ratio
* @see https://tailwindcss.com/docs/aspect-ratio
*/
aspect: [{
aspect: ["auto", "square", "video", isArbitraryValue]
}],
/**
* Container
* @see https://tailwindcss.com/docs/container
*/
container: ["container"],
/**
* Columns
* @see https://tailwindcss.com/docs/columns
*/
columns: [{
columns: [isTshirtSize]
}],
/**
* Break After
* @see https://tailwindcss.com/docs/break-after
*/
"break-after": [{
"break-after": getBreaks()
}],
/**
* Break Before
* @see https://tailwindcss.com/docs/break-before
*/
"break-before": [{
"break-before": getBreaks()
}],
/**
* Break Inside
* @see https://tailwindcss.com/docs/break-inside
*/
"break-inside": [{
"break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
}],
/**
* Box Decoration Break
* @see https://tailwindcss.com/docs/box-decoration-break
*/
"box-decoration": [{
"box-decoration": ["slice", "clone"]
}],
/**
* Box Sizing
* @see https://tailwindcss.com/docs/box-sizing
*/
box: [{
box: ["border", "content"]
}],
/**
* Display
* @see https://tailwindcss.com/docs/display
*/
display: ["block", "inline-block", "inline", "flex", "inline-flex", "table", "inline-table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row-group", "table-row", "flow-root", "grid", "inline-grid", "contents", "list-item", "hidden"],
/**
* Floats
* @see https://tailwindcss.com/docs/float
*/
float: [{
float: ["right", "left", "none", "start", "end"]
}],
/**
* Clear
* @see https://tailwindcss.com/docs/clear
*/
clear: [{
clear: ["left", "right", "both", "none", "start", "end"]
}],
/**
* Isolation
* @see https://tailwindcss.com/docs/isolation
*/
isolation: ["isolate", "isolation-auto"],
/**
* Object Fit
* @see https://tailwindcss.com/docs/object-fit
*/
"object-fit": [{
object: ["contain", "cover", "fill", "none", "scale-down"]
}],
/**
* Object Position
* @see https://tailwindcss.com/docs/object-position
*/
"object-position": [{
object: [...getPositions(), isArbitraryValue]
}],
/**
* Overflow
* @see https://tailwindcss.com/docs/overflow
*/
overflow: [{
overflow: getOverflow()
}],
/**
* Overflow X
* @see https://tailwindcss.com/docs/overflow
*/
"overflow-x": [{
"overflow-x": getOverflow()
}],
/**
* Overflow Y
* @see https://tailwindcss.com/docs/overflow
*/
"overflow-y": [{
"overflow-y": getOverflow()
}],
/**
* Overscroll Behavior
* @see https://tailwindcss.com/docs/overscroll-behavior
*/
overscroll: [{
overscroll: getOverscroll()
}],
/**
* Overscroll Behavior X
* @see https://tailwindcss.com/docs/overscroll-behavior
*/
"overscroll-x": [{
"overscroll-x": getOverscroll()
}],
/**
* Overscroll Behavior Y
* @see https://tailwindcss.com/docs/overscroll-behavior
*/
"overscroll-y": [{
"overscroll-y": getOverscroll()
}],
/**
* Position
* @see https://tailwindcss.com/docs/position
*/
position: ["static", "fixed", "absolute", "relative", "sticky"],
/**
* Top / Right / Bottom / Left
* @see https://tailwindcss.com/docs/top-right-bottom-left
*/
inset: [{
inset: [inset]
}],
/**
* Right / Left
* @see https://tailwindcss.com/docs/top-right-bottom-left
*/
"inset-x": [{
"inset-x": [inset]
}],
/**
* Top / Bottom
* @see https://tailwindcss.com/docs/top-right-bottom-left
*/
"inset-y": [{
"inset-y": [inset]
}],
/**
* Start
* @see https://tailwindcss.com/docs/top-right-bottom-left
*/
start: [{
start: [inset]
}],
/**
* End
* @see https://tailwindcss.com/docs/top-right-bottom-left
*/
end: [{
end: [inset]
}],
/**
* Top
* @see https://tailwindcss.com/docs/top-right-bottom-left
*/
top: [{
top: [inset]
}],
/**
* Right
* @see https://tailwindcss.com/docs/top-right-bottom-left
*/
right: [{
right: [inset]
}],
/**
* Bottom
* @see https://tailwindcss.com/docs/top-right-bottom-left
*/
bottom: [{
bottom: [inset]
}],
/**
* Left
* @see https://tailwindcss.com/docs/top-right-bottom-left
*/
left: [{
left: [inset]
}],
/**
* Visibility
* @see https://tailwindcss.com/docs/visibility
*/
visibility: ["visible", "invisible", "collapse"],
/**
* Z-Index
* @see https://tailwindcss.com/docs/z-index
*/
z: [{
z: ["auto", isInteger, isArbitraryValue]
}],
// Flexbox and Grid
/**
* Flex Basis
* @see https://tailwindcss.com/docs/flex-basis
*/
basis: [{
basis: getSpacingWithAutoAndArbitrary()
}],
/**
* Flex Direction
* @see https://tailwindcss.com/docs/flex-direction
*/
"flex-direction": [{
flex: ["row", "row-reverse", "col", "col-reverse"]
}],
/**
* Flex Wrap
* @see https://tailwindcss.com/docs/flex-wrap
*/
"flex-wrap": [{
flex: ["wrap", "wrap-reverse", "nowrap"]
}],
/**
* Flex
* @see https://tailwindcss.com/docs/flex
*/
flex: [{
flex: ["1", "auto", "initial", "none", isArbitraryValue]
}],
/**
* Flex Grow
* @see https://tailwindcss.com/docs/flex-grow
*/
grow: [{
grow: getZeroAndEmpty()
}],
/**
* Flex Shrink
* @see https://tailwindcss.com/docs/flex-shrink
*/
shrink: [{
shrink: getZeroAndEmpty()
}],
/**
* Order
* @see https://tailwindcss.com/docs/order
*/
order: [{
order: ["first", "last", "none", isInteger, isArbitraryValue]
}],
/**
* Grid Template Columns
* @see https://tailwindcss.com/docs/grid-template-columns
*/
"grid-cols": [{
"grid-cols": [isAny]
}],
/**
* Grid Column Start / End
* @see https://tailwindcss.com/docs/grid-column
*/
"col-start-end": [{
col: ["auto", {
span: ["full", isInteger, isArbitraryValue]
}, isArbitraryValue]
}],
/**
* Grid Column Start
* @see https://tailwindcss.com/docs/grid-column
*/
"col-start": [{
"col-start": getNumberWithAutoAndArbitrary()
}],
/**
* Grid Column End
* @see https://tailwindcss.com/docs/grid-column
*/
"col-end": [{
"col-end": getNumberWithAutoAndArbitrary()
}],
/**
* Grid Template Rows
* @see https://tailwindcss.com/docs/grid-template-rows
*/
"grid-rows": [{
"grid-rows": [isAny]
}],
/**
* Grid Row Start / End
* @see https://tailwindcss.com/docs/grid-row
*/
"row-start-end": [{
row: ["auto", {
span: [isInteger, isArbitraryValue]
}, isArbitraryValue]
}],
/**
* Grid Row Start
* @see https://tailwindcss.com/docs/grid-row
*/
"row-start": [{
"row-start": getNumberWithAutoAndArbitrary()
}],
/**
* Grid Row End
* @see https://tailwindcss.com/docs/grid-row
*/
"row-end": [{
"row-end": getNumberWithAutoAndArbitrary()
}],
/**
* Grid Auto Flow
* @see https://tailwindcss.com/docs/grid-auto-flow
*/
"grid-flow": [{
"grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
}],
/**
* Grid Auto Columns
* @see https://tailwindcss.com/docs/grid-auto-columns
*/
"auto-cols": [{
"auto-cols": ["auto", "min", "max", "fr", isArbitraryValue]
}],
/**
* Grid Auto Rows
* @see https://tailwindcss.com/docs/grid-auto-rows
*/
"auto-rows": [{
"auto-rows": ["auto", "min", "max", "fr", isArbitraryValue]
}],
/**
* Gap
* @see https://tailwindcss.com/docs/gap
*/
gap: [{
gap: [gap]
}],
/**
* Gap X
* @see https://tailwindcss.com/docs/gap
*/
"gap-x": [{
"gap-x": [gap]
}],
/**
* Gap Y
* @see https://tailwindcss.com/docs/gap
*/
"gap-y": [{
"gap-y": [gap]
}],
/**
* Justify Content
* @see https://tailwindcss.com/docs/justify-content
*/
"justify-content": [{
justify: ["normal", ...getAlign()]
}],
/**
* Justify Items
* @see https://tailwindcss.com/docs/justify-items
*/
"justify-items": [{
"justify-items": ["start", "end", "center", "stretch"]
}],
/**
* Justify Self
* @see https://tailwindcss.com/docs/justify-self
*/
"justify-self": [{
"justify-self": ["auto", "start", "end", "center", "stretch"]
}],
/**
* Align Content
* @see https://tailwindcss.com/docs/align-content
*/
"align-content": [{
content: ["normal", ...getAlign(), "baseline"]
}],
/**
* Align Items
* @see https://tailwindcss.com/docs/align-items
*/
"align-items": [{
items: ["start", "end", "center", "baseline", "stretch"]
}],
/**
* Align Self
* @see https://tailwindcss.com/docs/align-self
*/
"align-self": [{
self: ["auto", "start", "end", "center", "stretch", "baseline"]
}],
/**
* Place Content
* @see https://tailwindcss.com/docs/place-content
*/
"place-content": [{
"place-content": [...getAlign(), "baseline"]
}],
/**
* Place Items
* @see https://tailwindcss.com/docs/place-items
*/
"place-items": [{
"place-items": ["start", "end", "center", "baseline", "stretch"]
}],
/**
* Place Self
* @see https://tailwindcss.com/docs/place-self
*/
"place-self": [{
"place-self": ["auto", "start", "end", "center", "stretch"]
}],
// Spacing
/**
* Padding
* @see https://tailwindcss.com/docs/padding
*/
p: [{
p: [padding]
}],
/**
* Padding X
* @see https://tailwindcss.com/docs/padding
*/
px: [{
px: [padding]
}],
/**
* Padding Y
* @see https://tailwindcss.com/docs/padding
*/
py: [{
py: [padding]
}],
/**
* Padding Start
* @see https://tailwindcss.com/docs/padding
*/
ps: [{
ps: [padding]
}],
/**
* Padding End
* @see https://tailwindcss.com/docs/padding
*/
pe: [{
pe: [padding]
}],
/**
* Padding Top
* @see https://tailwindcss.com/docs/padding
*/
pt: [{
pt: [padding]
}],
/**
* Padding Right
* @see https://tailwindcss.com/docs/padding
*/
pr: [{
pr: [padding]
}],
/**
* Padding Bottom
* @see https://tailwindcss.com/docs/padding
*/
pb: [{
pb: [padding]
}],
/**
* Padding Left
* @see https://tailwindcss.com/docs/padding
*/
pl: [{
pl: [padding]
}],
/**
* Margin
* @see https://tailwindcss.com/docs/margin
*/
m: [{
m: [margin]
}],
/**
* Margin X
* @see https://tailwindcss.com/docs/margin
*/
mx: [{
mx: [margin]
}],
/**
* Margin Y
* @see https://tailwindcss.com/docs/margin
*/
my: [{
my: [margin]
}],
/**
* Margin Start
* @see https://tailwindcss.com/docs/margin
*/
ms: [{
ms: [margin]
}],
/**
* Margin End
* @see https://tailwindcss.com/docs/margin
*/
me: [{
me: [margin]
}],
/**
* Margin Top
* @see https://tailwindcss.com/docs/margin
*/
mt: [{
mt: [margin]
}],
/**
* Margin Right
* @see https://tailwindcss.com/docs/margin
*/
mr: [{
mr: [margin]
}],
/**
* Margin Bottom
* @see https://tailwindcss.com/docs/margin
*/
mb: [{
mb: [margin]
}],
/**
* Margin Left
* @see https://tailwindcss.com/docs/margin
*/
ml: [{
ml: [margin]
}],
/**
* Space Between X
* @see https://tailwindcss.com/docs/space
*/
"space-x": [{
"space-x": [space]
}],
/**
* Space Between X Reverse
* @see https://tailwindcss.com/docs/space
*/
"space-x-reverse": ["space-x-reverse"],
/**
* Space Between Y
* @see https://tailwindcss.com/docs/space
*/
"space-y": [{
"space-y": [space]
}],
/**
* Space Between Y Reverse
* @see https://tailwindcss.com/docs/space
*/
"space-y-reverse": ["space-y-reverse"],
// Sizing
/**
* Width
* @see https://tailwindcss.com/docs/width
*/
w: [{
w: ["auto", "min", "max", "fit", "svw", "lvw", "dvw", isArbitraryValue, spacing]
}],
/**
* Min-Width
* @see https://tailwindcss.com/docs/min-width
*/
"min-w": [{
"min-w": [isArbitraryValue, spacing, "min", "max", "fit"]
}],
/**
* Max-Width
* @see https://tailwindcss.com/docs/max-width
*/
"max-w": [{
"max-w": [isArbitraryValue, spacing, "none", "full", "min", "max", "fit", "prose", {
screen: [isTshirtSize]
}, isTshirtSize]
}],
/**
* Height
* @see https://tailwindcss.com/docs/height
*/
h: [{
h: [isArbitraryValue, spacing, "auto", "min", "max", "fit", "svh", "lvh", "dvh"]
}],
/**
* Min-Height
* @see https://tailwindcss.com/docs/min-height
*/
"min-h": [{
"min-h": [isArbitraryValue, spacing, "min", "max", "fit", "svh", "lvh", "dvh"]
}],
/**
* Max-Height
* @see https://tailwindcss.com/docs/max-height
*/
"max-h": [{
"max-h": [isArbitraryValue, spacing, "min", "max", "fit", "svh", "lvh", "dvh"]
}],
/**
* Size
* @see https://tailwindcss.com/docs/size
*/
size: [{
size: [isArbitraryValue, spacing, "auto", "min", "max", "fit"]
}],
// Typography
/**
* Font Size
* @see https://tailwindcss.com/docs/font-size
*/
"font-size": [{
text: ["base", isTshirtSize, isArbitraryLength]
}],
/**
* Font Smoothing
* @see https://tailwindcss.com/docs/font-smoothing
*/
"font-smoothing": ["antialiased", "subpixel-antialiased"],
/**
* Font Style
* @see https://tailwindcss.com/docs/font-style
*/
"font-style": ["italic", "not-italic"],
/**
* Font Weight
* @see https://tailwindcss.com/docs/font-weight
*/
"font-weight": [{
font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", isArbitraryNumber]
}],
/**
* Font Family
* @see https://tailwindcss.com/docs/font-family
*/
"font-family": [{
font: [isAny]
}],
/**
* Font Variant Numeric
* @see https://tailwindcss.com/docs/font-variant-numeric
*/
"fvn-normal": ["normal-nums"],
/**
* Font Variant Numeric
* @see https://tailwindcss.com/docs/font-variant-numeric
*/
"fvn-ordinal": ["ordinal"],
/**
* Font Variant Numeric
* @see https://tailwindcss.com/docs/font-variant-numeric
*/
"fvn-slashed-zero": ["slashed-zero"],
/**
* Font Variant Numeric
* @see https://tailwindcss.com/docs/font-variant-numeric
*/
"fvn-figure": ["lining-nums", "oldstyle-nums"],
/**
* Font Variant Numeric
* @see https://tailwindcss.com/docs/font-variant-numeric
*/
"fvn-spacing": ["proportional-nums", "tabular-nums"],
/**
* Font Variant Numeric
* @see https://tailwindcss.com/docs/font-variant-numeric
*/
"fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
/**
* Letter Spacing
* @see https://tailwindcss.com/docs/letter-spacing
*/
tracking: [{
tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", isArbitraryValue]
}],
/**
* Line Clamp
* @see https://tailwindcss.com/docs/line-clamp
*/
"line-clamp": [{
"line-clamp": ["none", isNumber, isArbitraryNumber]
}],
/**
* Line Height
* @see https://tailwindcss.com/docs/line-height
*/
leading: [{
leading: ["none", "tight", "snug", "normal", "relaxed", "loose", isLength, isArbitraryValue]
}],
/**
* List Style Image
* @see https://tailwindcss.com/docs/list-style-image
*/
"list-image": [{
"list-image": ["none", isArbitraryValue]
}],
/**
* List Style Type
* @see https://tailwindcss.com/docs/list-style-type
*/
"list-style-type": [{
list: ["none", "disc", "decimal", isArbitraryValue]
}],
/**
* List Style Position
* @see https://tailwindcss.com/docs/list-style-position
*/
"list-style-position": [{
list: ["inside", "outside"]
}],
/**
* Placeholder Color
* @deprecated since Tailwind CSS v3.0.0
* @see https://tailwindcss.com/docs/placeholder-color
*/
"placeholder-color": [{
placeholder: [colors]
}],
/**
* Placeholder Opacity
* @see https://tailwindcss.com/docs/placeholder-opacity
*/
"placeholder-opacity": [{
"placeholder-opacity": [opacity]
}],
/**
* Text Alignment
* @see https://tailwindcss.com/docs/text-align
*/
"text-alignment": [{
text: ["left", "center", "right", "justify", "start", "end"]
}],
/**
* Text Color
* @see https://tailwindcss.com/docs/text-color
*/
"text-color": [{
text: [colors]
}],
/**
* Text Opacity
* @see https://tailwindcss.com/docs/text-opacity
*/
"text-opacity": [{
"text-opacity": [opacity]
}],
/**
* Text Decoration
* @see https://tailwindcss.com/docs/text-decoration
*/
"text-decoration": ["underline", "overline", "line-through", "no-underline"],
/**
* Text Decoration Style
* @see https://tailwindcss.com/docs/text-decoration-style
*/
"text-decoration-style": [{
decoration: [...getLineStyles(), "wavy"]
}],
/**
* Text Decoration Thickness
* @see https://tailwindcss.com/docs/text-decoration-thickness
*/
"text-decoration-thickness": [{
decoration: ["auto", "from-font", isLength, isArbitraryLength]
}],
/**
* Text Underline Offset
* @see https://tailwindcss.com/docs/text-underline-offset
*/
"underline-offset": [{
"underline-offset": ["auto", isLength, isArbitraryValue]
}],
/**
* Text Decoration Color
* @see https://tailwindcss.com/docs/text-decoration-color
*/
"text-decoration-color": [{
decoration: [colors]
}],
/**
* Text Transform
* @see https://tailwindcss.com/docs/text-transform
*/
"text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
/**
* Text Overflow
* @see https://tailwindcss.com/docs/text-overflow
*/
"text-overflow": ["truncate", "text-ellipsis", "text-clip"],
/**
* Text Wrap
* @see https://tailwindcss.com/docs/text-wrap
*/
"text-wrap": [{
text: ["wrap", "nowrap", "balance", "pretty"]
}],
/**
* Text Indent
* @see https://tailwindcss.com/docs/text-indent
*/
indent: [{
indent: getSpacingWithArbitrary()
}],
/**
* Vertical Alignment
* @see https://tailwindcss.com/docs/vertical-align
*/
"vertical-align": [{
align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", isArbitraryValue]
}],
/**
* Whitespace
* @see https://tailwindcss.com/docs/whitespace
*/
whitespace: [{
whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"]
}],
/**
* Word Break
* @see https://tailwindcss.com/docs/word-break
*/
break: [{
break: ["normal", "words", "all", "keep"]
}],
/**
* Hyphens
* @see https://tailwindcss.com/docs/hyphens
*/
hyphens: [{
hyphens: ["none", "manual", "auto"]
}],
/**
* Content
* @see https://tailwindcss.com/docs/content
*/
content: [{
content: ["none", isArbitraryValue]
}],
// Backgrounds
/**
* Background Attachment
* @see https://tailwindcss.com/docs/background-attachment
*/
"bg-attachment": [{
bg: ["fixed", "local", "scroll"]
}],
/**
* Background Clip
* @see https://tailwindcss.com/docs/background-clip
*/
"bg-clip": [{
"bg-clip": ["border", "padding", "content", "text"]
}],
/**
* Background Opacity
* @deprecated since Tailwind CSS v3.0.0
* @see https://tailwindcss.com/docs/background-opacity
*/
"bg-opacity": [{
"bg-opacity": [opacity]
}],
/**
* Background Origin
* @see https://tailwindcss.com/docs/background-origin
*/
"bg-origin": [{
"bg-origin": ["border", "padding", "content"]
}],
/**
* Background Position
* @see https://tailwindcss.com/docs/background-position
*/
"bg-position": [{
bg: [...getPositions(), isArbitraryPosition]
}],
/**
* Background Repeat
* @see https://tailwindcss.com/docs/background-repeat
*/
"bg-repeat": [{
bg: ["no-repeat", {
repeat: ["", "x", "y", "round", "space"]
}]
}],
/**
* Background Size
* @see https://tailwindcss.com/docs/background-size
*/
"bg-size": [{
bg: ["auto", "cover", "contain", isArbitrarySize]
}],
/**
* Background Image
* @see https://tailwindcss.com/docs/background-image
*/
"bg-image": [{
bg: ["none", {
"gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
}, isArbitraryImage]
}],
/**
* Background Color
* @see https://tailwindcss.com/docs/background-color
*/
"bg-color": [{
bg: [colors]
}],
/**
* Gradient Color Stops From Position
* @see https://tailwindcss.com/docs/gradient-color-stops
*/
"gradient-from-pos": [{
from: [gradientColorStopPositions]
}],
/**
* Gradient Color Stops Via Position
* @see https://tailwindcss.com/docs/gradient-color-stops
*/
"gradient-via-pos": [{
via: [gradientColorStopPositions]
}],
/**
* Gradient Color Stops To Position
* @see https://tailwindcss.com/docs/gradient-color-stops
*/
"gradient-to-pos": [{
to: [gradientColorStopPositions]
}],
/**
* Gradient Color Stops From
* @see https://tailwindcss.com/docs/gradient-color-stops
*/
"gradient-from": [{
from: [gradientColorStops]
}],
/**
* Gradient Color Stops Via
* @see https://tailwindcss.com/docs/gradient-color-stops
*/
"gradient-via": [{
via: [gradientColorStops]
}],
/**
* Gradient Color Stops To
* @see https://tailwindcss.com/docs/gradient-color-stops
*/
"gradient-to": [{
to: [gradientColorStops]
}],
// Borders
/**
* Border Radius
* @see https://tailwindcss.com/docs/border-radius
*/
rounded: [{
rounded: [borderRadius]
}],
/**
* Border Radius Start
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-s": [{
"rounded-s": [borderRadius]
}],
/**
* Border Radius End
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-e": [{
"rounded-e": [borderRadius]
}],
/**
* Border Radius Top
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-t": [{
"rounded-t": [borderRadius]
}],
/**
* Border Radius Right
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-r": [{
"rounded-r": [borderRadius]
}],
/**
* Border Radius Bottom
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-b": [{
"rounded-b": [borderRadius]
}],
/**
* Border Radius Left
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-l": [{
"rounded-l": [borderRadius]
}],
/**
* Border Radius Start Start
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-ss": [{
"rounded-ss": [borderRadius]
}],
/**
* Border Radius Start End
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-se": [{
"rounded-se": [borderRadius]
}],
/**
* Border Radius End End
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-ee": [{
"rounded-ee": [borderRadius]
}],
/**
* Border Radius End Start
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-es": [{
"rounded-es": [borderRadius]
}],
/**
* Border Radius Top Left
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-tl": [{
"rounded-tl": [borderRadius]
}],
/**
* Border Radius Top Right
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-tr": [{
"rounded-tr": [borderRadius]
}],
/**
* Border Radius Bottom Right
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-br": [{
"rounded-br": [borderRadius]
}],
/**
* Border Radius Bottom Left
* @see https://tailwindcss.com/docs/border-radius
*/
"rounded-bl": [{
"rounded-bl": [borderRadius]
}],
/**
* Border Width
* @see https://tailwindcss.com/docs/border-width
*/
"border-w": [{
border: [borderWidth]
}],
/**
* Border Width X
* @see https://tailwindcss.com/docs/border-width
*/
"border-w-x": [{
"border-x": [borderWidth]
}],
/**
* Border Width Y
* @see https://tailwindcss.com/docs/border-width
*/
"border-w-y": [{
"border-y": [borderWidth]
}],
/**
* Border Width Start
* @see https://tailwindcss.com/docs/border-width
*/
"border-w-s": [{
"border-s": [borderWidth]
}],
/**
* Border Width End
* @see https://tailwindcss.com/docs/border-width
*/
"border-w-e": [{
"border-e": [borderWidth]
}],
/**
* Border Width Top
* @see https://tailwindcss.com/docs/border-width
*/
"border-w-t": [{
"border-t": [borderWidth]
}],
/**
* Border Width Right
* @see https://tailwindcss.com/docs/border-width
*/
"border-w-r": [{
"border-r": [borderWidth]
}],
/**
* Border Width Bottom
* @see https://tailwindcss.com/docs/border-width
*/
"border-w-b": [{
"border-b": [borderWidth]
}],
/**
* Border Width Left
* @see https://tailwindcss.com/docs/border-width
*/
"border-w-l": [{
"border-l": [borderWidth]
}],
/**
* Border Opacity
* @see https://tailwindcss.com/docs/border-opacity
*/
"border-opacity": [{
"border-opacity": [opacity]
}],
/**
* Border Style
* @see https://tailwindcss.com/docs/border-style
*/
"border-style": [{
border: [...getLineStyles(), "hidden"]
}],
/**
* Divide Width X
* @see https://tailwindcss.com/docs/divide-width
*/
"divide-x": [{
"divide-x": [borderWidth]
}],
/**
* Divide Width X Reverse
* @see https://tailwindcss.com/docs/divide-width
*/
"divide-x-reverse": ["divide-x-reverse"],
/**
* Divide Width Y
* @see https://tailwindcss.com/docs/divide-width
*/
"divide-y": [{
"divide-y": [borderWidth]
}],
/**
* Divide Width Y Reverse
* @see https://tailwindcss.com/docs/divide-width
*/
"divide-y-reverse": ["divide-y-reverse"],
/**
* Divide Opacity
* @see https://tailwindcss.com/docs/divide-opacity
*/
"divide-opacity": [{
"divide-opacity": [opacity]
}],
/**
* Divide Style
* @see https://tailwindcss.com/docs/divide-style
*/
"divide-style": [{
divide: getLineStyles()
}],
/**
* Border Color
* @see https://tailwindcss.com/docs/border-color
*/
"border-color": [{
border: [borderColor]
}],
/**
* Border Color X
* @see https://tailwindcss.com/docs/border-color
*/
"border-color-x": [{
"border-x": [borderColor]
}],
/**
* Border Color Y
* @see https://tailwindcss.com/docs/border-color
*/
"border-color-y": [{
"border-y": [borderColor]
}],
/**
* Border Color S
* @see https://tailwindcss.com/docs/border-color
*/
"border-color-s": [{
"border-s": [borderColor]
}],
/**
* Border Color E
* @see https://tailwindcss.com/docs/border-color
*/
"border-color-e": [{
"border-e": [borderColor]
}],
/**
* Border Color Top
* @see https://tailwindcss.com/docs/border-color
*/
"border-color-t": [{
"border-t": [borderColor]
}],
/**
* Border Color Right
* @see https://tailwindcss.com/docs/border-color
*/
"border-color-r": [{
"border-r": [borderColor]
}],
/**
* Border Color Bottom
* @see https://tailwindcss.com/docs/border-color
*/
"border-color-b": [{
"border-b": [borderColor]
}],
/**
* Border Color Left
* @see https://tailwindcss.com/docs/border-color
*/
"border-color-l": [{
"border-l": [borderColor]
}],
/**
* Divide Color
* @see https://tailwindcss.com/docs/divide-color
*/
"divide-color": [{
divide: [borderColor]
}],
/**
* Outline Style
* @see https://tailwindcss.com/docs/outline-style
*/
"outline-style": [{
outline: ["", ...getLineStyles()]
}],
/**
* Outline Offset
* @see https://tailwindcss.com/docs/outline-offset
*/
"outline-offset": [{
"outline-offset": [isLength, isArbitraryValue]
}],
/**
* Outline Width
* @see https://tailwindcss.com/docs/outline-width
*/
"outline-w": [{
outline: [isLength, isArbitraryLength]
}],
/**
* Outline Color
* @see https://tailwindcss.com/docs/outline-color
*/
"outline-color": [{
outline: [colors]
}],
/**
* Ring Width
* @see https://tailwindcss.com/docs/ring-width
*/
"ring-w": [{
ring: getLengthWithEmptyAndArbitrary()
}],
/**
* Ring Width Inset
* @see https://tailwindcss.com/docs/ring-width
*/
"ring-w-inset": ["ring-inset"],
/**
* Ring Color
* @see https://tailwindcss.com/docs/ring-color
*/
"ring-color": [{
ring: [colors]
}],
/**
* Ring Opacity
* @see https://tailwindcss.com/docs/ring-opacity
*/
"ring-opacity": [{
"ring-opacity": [opacity]
}],
/**
* Ring Offset Width
* @see https://tailwindcss.com/docs/ring-offset-width
*/
"ring-offset-w": [{
"ring-offset": [isLength, isArbitraryLength]
}],
/**
* Ring Offset Color
* @see https://tailwindcss.com/docs/ring-offset-color
*/
"ring-offset-color": [{
"ring-offset": [colors]
}],
// Effects
/**
* Box Shadow
* @see https://tailwindcss.com/docs/box-shadow
*/
shadow: [{
shadow: ["", "inner", "none", isTshirtSize, isArbitraryShadow]
}],
/**
* Box Shadow Color
* @see https://tailwindcss.com/docs/box-shadow-color
*/
"shadow-color": [{
shadow: [isAny]
}],
/**
* Opacity
* @see https://tailwindcss.com/docs/opacity
*/
opacity: [{
opacity: [opacity]
}],
/**
* Mix Blend Mode
* @see https://tailwindcss.com/docs/mix-blend-mode
*/
"mix-blend": [{
"mix-blend": [...getBlendModes(), "plus-lighter", "plus-darker"]
}],
/**
* Background Blend Mode
* @see https://tailwindcss.com/docs/background-blend-mode
*/
"bg-blend": [{
"bg-blend": getBlendModes()
}],
// Filters
/**
* Filter
* @deprecated since Tailwind CSS v3.0.0
* @see https://tailwindcss.com/docs/filter
*/
filter: [{
filter: ["", "none"]
}],
/**
* Blur
* @see https://tailwindcss.com/docs/blur
*/
blur: [{
blur: [blur]
}],
/**
* Brightness
* @see https://tailwindcss.com/docs/brightness
*/
brightness: [{
brightness: [brightness]
}],
/**
* Contrast
* @see https://tailwindcss.com/docs/contrast
*/
contrast: [{
contrast: [contrast]
}],
/**
* Drop Shadow
* @see https://tailwindcss.com/docs/drop-shadow
*/
"drop-shadow": [{
"drop-shadow": ["", "none", isTshirtSize, isArbitraryValue]
}],
/**
* Grayscale
* @see https://tailwindcss.com/docs/grayscale
*/
grayscale: [{
grayscale: [grayscale]
}],
/**
* Hue Rotate
* @see https://tailwindcss.com/docs/hue-rotate
*/
"hue-rotate": [{
"hue-rotate": [hueRotate]
}],
/**
* Invert
* @see https://tailwindcss.com/docs/invert
*/
invert: [{
invert: [invert]
}],
/**
* Saturate
* @see https://tailwindcss.com/docs/saturate
*/
saturate: [{
saturate: [saturate]
}],
/**
* Sepia
* @see https://tailwindcss.com/docs/sepia
*/
sepia: [{
sepia: [sepia]
}],
/**
* Backdrop Filter
* @deprecated since Tailwind CSS v3.0.0
* @see https://tailwindcss.com/docs/backdrop-filter
*/
"backdrop-filter": [{
"backdrop-filter": ["", "none"]
}],
/**
* Backdrop Blur
* @see https://tailwindcss.com/docs/backdrop-blur
*/
"backdrop-blur": [{
"backdrop-blur": [blur]
}],
/**
* Backdrop Brightness
* @see https://tailwindcss.com/docs/backdrop-brightness
*/
"backdrop-brightness": [{
"backdrop-brightness": [brightness]
}],
/**
* Backdrop Contrast
* @see https://tailwindcss.com/docs/backdrop-contrast
*/
"backdrop-contrast": [{
"backdrop-contrast": [contrast]
}],
/**
* Backdrop Grayscale
* @see https://tailwindcss.com/docs/backdrop-grayscale
*/
"backdrop-grayscale": [{
"backdrop-grayscale": [grayscale]
}],
/**
* Backdrop Hue Rotate
* @see https://tailwindcss.com/docs/backdrop-hue-rotate
*/
"backdrop-hue-rotate": [{
"backdrop-hue-rotate": [hueRotate]
}],
/**
* Backdrop Invert
* @see https://tailwindcss.com/docs/backdrop-invert
*/
"backdrop-invert": [{
"backdrop-invert": [invert]
}],
/**
* Backdrop Opacity
* @see https://tailwindcss.com/docs/backdrop-opacity
*/
"backdrop-opacity": [{
"backdrop-opacity": [opacity]
}],
/**
* Backdrop Saturate
* @see https://tailwindcss.com/docs/backdrop-saturate
*/
"backdrop-saturate": [{
"backdrop-saturate": [saturate]
}],
/**
* Backdrop Sepia
* @see https://tailwindcss.com/docs/backdrop-sepia
*/
"backdrop-sepia": [{
"backdrop-sepia": [sepia]
}],
// Tables
/**
* Border Collapse
* @see https://tailwindcss.com/docs/border-collapse
*/
"border-collapse": [{
border: ["collapse", "separate"]
}],
/**
* Border Spacing
* @see https://tailwindcss.com/docs/border-spacing
*/
"border-spacing": [{
"border-spacing": [borderSpacing]
}],
/**
* Border Spacing X
* @see https://tailwindcss.com/docs/border-spacing
*/
"border-spacing-x": [{
"border-spacing-x": [borderSpacing]
}],
/**
* Border Spacing Y
* @see https://tailwindcss.com/docs/border-spacing
*/
"border-spacing-y": [{
"border-spacing-y": [borderSpacing]
}],
/**
* Table Layout
* @see https://tailwindcss.com/docs/table-layout
*/
"table-layout": [{
table: ["auto", "fixed"]
}],
/**
* Caption Side
* @see https://tailwindcss.com/docs/caption-side
*/
caption: [{
caption: ["top", "bottom"]
}],
// Transitions and Animation
/**
* Tranisition Property
* @see https://tailwindcss.com/docs/transition-property
*/
transition: [{
transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", isArbitraryValue]
}],
/**
* Transition Duration
* @see https://tailwindcss.com/docs/transition-duration
*/
duration: [{
duration: getNumberAndArbitrary()
}],
/**
* Transition Timing Function
* @see https://tailwindcss.com/docs/transition-timing-function
*/
ease: [{
ease: ["linear", "in", "out", "in-out", isArbitraryValue]
}],
/**
* Transition Delay
* @see https://tailwindcss.com/docs/transition-delay
*/
delay: [{
delay: getNumberAndArbitrary()
}],
/**
* Animation
* @see https://tailwindcss.com/docs/animation
*/
animate: [{
animate: ["none", "spin", "ping", "pulse", "bounce", isArbitraryValue]
}],
// Transforms
/**
* Transform
* @see https://tailwindcss.com/docs/transform
*/
transform: [{
transform: ["", "gpu", "none"]
}],
/**
* Scale
* @see https://tailwindcss.com/docs/scale
*/
scale: [{
scale: [scale]
}],
/**
* Scale X
* @see https://tailwindcss.com/docs/scale
*/
"scale-x": [{
"scale-x": [scale]
}],
/**
* Scale Y
* @see https://tailwindcss.com/docs/scale
*/
"scale-y": [{
"scale-y": [scale]
}],
/**
* Rotate
* @see https://tailwindcss.com/docs/rotate
*/
rotate: [{
rotate: [isInteger, isArbitraryValue]
}],
/**
* Translate X
* @see https://tailwindcss.com/docs/translate
*/
"translate-x": [{
"translate-x": [translate]
}],
/**
* Translate Y
* @see https://tailwindcss.com/docs/translate
*/
"translate-y": [{
"translate-y": [translate]
}],
/**
* Skew X
* @see https://tailwindcss.com/docs/skew
*/
"skew-x": [{
"skew-x": [skew]
}],
/**
* Skew Y
* @see https://tailwindcss.com/docs/skew
*/
"skew-y": [{
"skew-y": [skew]
}],
/**
* Transform Origin
* @see https://tailwindcss.com/docs/transform-origin
*/
"transform-origin": [{
origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", isArbitraryValue]
}],
// Interactivity
/**
* Accent Color
* @see https://tailwindcss.com/docs/accent-color
*/
accent: [{
accent: ["auto", colors]
}],
/**
* Appearance
* @see https://tailwindcss.com/docs/appearance
*/
appearance: [{
appearance: ["none", "auto"]
}],
/**
* Cursor
* @see https://tailwindcss.com/docs/cursor
*/
cursor: [{
cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out", isArbitraryValue]
}],
/**
* Caret Color
* @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
*/
"caret-color": [{
caret: [colors]
}],
/**
* Pointer Events
* @see https://tailwindcss.com/docs/pointer-events
*/
"pointer-events": [{
"pointer-events": ["none", "auto"]
}],
/**
* Resize
* @see https://tailwindcss.com/docs/resize
*/
resize: [{
resize: ["none", "y", "x", ""]
}],
/**
* Scroll Behavior
* @see https://tailwindcss.com/docs/scroll-behavior
*/
"scroll-behavior": [{
scroll: ["auto", "smooth"]
}],
/**
* Scroll Margin
* @see https://tailwindcss.com/docs/scroll-margin
*/
"scroll-m": [{
"scroll-m": getSpacingWithArbitrary()
}],
/**
* Scroll Margin X
* @see https://tailwindcss.com/docs/scroll-margin
*/
"scroll-mx": [{
"scroll-mx": getSpacingWithArbitrary()
}],
/**
* Scroll Margin Y
* @see https://tailwindcss.com/docs/scroll-margin
*/
"scroll-my": [{
"scroll-my": getSpacingWithArbitrary()
}],
/**
* Scroll Margin Start
* @see https://tailwindcss.com/docs/scroll-margin
*/
"scroll-ms": [{
"scroll-ms": getSpacingWithArbitrary()
}],
/**
* Scroll Margin End
* @see https://tailwindcss.com/docs/scroll-margin
*/
"scroll-me": [{
"scroll-me": getSpacingWithArbitrary()
}],
/**
* Scroll Margin Top
* @see https://tailwindcss.com/docs/scroll-margin
*/
"scroll-mt": [{
"scroll-mt": getSpacingWithArbitrary()
}],
/**
* Scroll Margin Right
* @see https://tailwindcss.com/docs/scroll-margin
*/
"scroll-mr": [{
"scroll-mr": getSpacingWithArbitrary()
}],
/**
* Scroll Margin Bottom
* @see https://tailwindcss.com/docs/scroll-margin
*/
"scroll-mb": [{
"scroll-mb": getSpacingWithArbitrary()
}],
/**
* Scroll Margin Left
* @see https://tailwindcss.com/docs/scroll-margin
*/
"scroll-ml": [{
"scroll-ml": getSpacingWithArbitrary()
}],
/**
* Scroll Padding
* @see https://tailwindcss.com/docs/scroll-padding
*/
"scroll-p": [{
"scroll-p": getSpacingWithArbitrary()
}],
/**
* Scroll Padding X
* @see https://tailwindcss.com/docs/scroll-padding
*/
"scroll-px": [{
"scroll-px": getSpacingWithArbitrary()
}],
/**
* Scroll Padding Y
* @see https://tailwindcss.com/docs/scroll-padding
*/
"scroll-py": [{
"scroll-py": getSpacingWithArbitrary()
}],
/**
* Scroll Padding Start
* @see https://tailwindcss.com/docs/scroll-padding
*/
"scroll-ps": [{
"scroll-ps": getSpacingWithArbitrary()
}],
/**
* Scroll Padding End
* @see https://tailwindcss.com/docs/scroll-padding
*/
"scroll-pe": [{
"scroll-pe": getSpacingWithArbitrary()
}],
/**
* Scroll Padding Top
* @see https://tailwindcss.com/docs/scroll-padding
*/
"scroll-pt": [{
"scroll-pt": getSpacingWithArbitrary()
}],
/**
* Scroll Padding Right
* @see https://tailwindcss.com/docs/scroll-padding
*/
"scroll-pr": [{
"scroll-pr": getSpacingWithArbitrary()
}],
/**
* Scroll Padding Bottom
* @see https://tailwindcss.com/docs/scroll-padding
*/
"scroll-pb": [{
"scroll-pb": getSpacingWithArbitrary()
}],
/**
* Scroll Padding Left
* @see https://tailwindcss.com/docs/scroll-padding
*/
"scroll-pl": [{
"scroll-pl": getSpacingWithArbitrary()
}],
/**
* Scroll Snap Align
* @see https://tailwindcss.com/docs/scroll-snap-align
*/
"snap-align": [{
snap: ["start", "end", "center", "align-none"]
}],
/**
* Scroll Snap Stop
* @see https://tailwindcss.com/docs/scroll-snap-stop
*/
"snap-stop": [{
snap: ["normal", "always"]
}],
/**
* Scroll Snap Type
* @see https://tailwindcss.com/docs/scroll-snap-type
*/
"snap-type": [{
snap: ["none", "x", "y", "both"]
}],
/**
* Scroll Snap Type Strictness
* @see https://tailwindcss.com/docs/scroll-snap-type
*/
"snap-strictness": [{
snap: ["mandatory", "proximity"]
}],
/**
* Touch Action
* @see https://tailwindcss.com/docs/touch-action
*/
touch: [{
touch: ["auto", "none", "manipulation"]
}],
/**
* Touch Action X
* @see https://tailwindcss.com/docs/touch-action
*/
"touch-x": [{
"touch-pan": ["x", "left", "right"]
}],
/**
* Touch Action Y
* @see https://tailwindcss.com/docs/touch-action
*/
"touch-y": [{
"touch-pan": ["y", "up", "down"]
}],
/**
* Touch Action Pinch Zoom
* @see https://tailwindcss.com/docs/touch-action
*/
"touch-pz": ["touch-pinch-zoom"],
/**
* User Select
* @see https://tailwindcss.com/docs/user-select
*/
select: [{
select: ["none", "text", "all", "auto"]
}],
/**
* Will Change
* @see https://tailwindcss.com/docs/will-change
*/
"will-change": [{
"will-change": ["auto", "scroll", "contents", "transform", isArbitraryValue]
}],
// SVG
/**
* Fill
* @see https://tailwindcss.com/docs/fill
*/
fill: [{
fill: [colors, "none"]
}],
/**
* Stroke Width
* @see https://tailwindcss.com/docs/stroke-width
*/
"stroke-w": [{
stroke: [isLength, isArbitraryLength, isArbitraryNumber]
}],
/**
* Stroke
* @see https://tailwindcss.com/docs/stroke
*/
stroke: [{
stroke: [colors, "none"]
}],
// Accessibility
/**
* Screen Readers
* @see https://tailwindcss.com/docs/screen-readers
*/
sr: ["sr-only", "not-sr-only"],
/**
* Forced Color Adjust
* @see https://tailwindcss.com/docs/forced-color-adjust
*/
"forced-color-adjust": [{
"forced-color-adjust": ["auto", "none"]
}]
},
conflictingClassGroups: {
overflow: ["overflow-x", "overflow-y"],
overscroll: ["overscroll-x", "overscroll-y"],
inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"],
"inset-x": ["right", "left"],
"inset-y": ["top", "bottom"],
flex: ["basis", "grow", "shrink"],
gap: ["gap-x", "gap-y"],
p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"],
px: ["pr", "pl"],
py: ["pt", "pb"],
m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"],
mx: ["mr", "ml"],
my: ["mt", "mb"],
size: ["w", "h"],
"font-size": ["leading"],
"fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
"fvn-ordinal": ["fvn-normal"],
"fvn-slashed-zero": ["fvn-normal"],
"fvn-figure": ["fvn-normal"],
"fvn-spacing": ["fvn-normal"],
"fvn-fraction": ["fvn-normal"],
"line-clamp": ["display", "overflow"],
rounded: ["rounded-s", "rounded-e", "rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-ss", "rounded-se", "rounded-ee", "rounded-es", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"],
"rounded-s": ["rounded-ss", "rounded-es"],
"rounded-e": ["rounded-se", "rounded-ee"],
"rounded-t": ["rounded-tl", "rounded-tr"],
"rounded-r": ["rounded-tr", "rounded-br"],
"rounded-b": ["rounded-br", "rounded-bl"],
"rounded-l": ["rounded-tl", "rounded-bl"],
"border-spacing": ["border-spacing-x", "border-spacing-y"],
"border-w": ["border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
"border-w-x": ["border-w-r", "border-w-l"],
"border-w-y": ["border-w-t", "border-w-b"],
"border-color": ["border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
"border-color-x": ["border-color-r", "border-color-l"],
"border-color-y": ["border-color-t", "border-color-b"],
"scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
"scroll-mx": ["scroll-mr", "scroll-ml"],
"scroll-my": ["scroll-mt", "scroll-mb"],
"scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
"scroll-px": ["scroll-pr", "scroll-pl"],
"scroll-py": ["scroll-pt", "scroll-pb"],
touch: ["touch-x", "touch-y", "touch-pz"],
"touch-x": ["touch"],
"touch-y": ["touch"],
"touch-pz": ["touch"]
},
conflictingClassGroupModifiers: {
"font-size": ["leading"]
}
};
};
var twMerge = createTailwindMerge(getDefaultConfig);
// ../../node_modules/.pnpm/@radix-ui+react-dropdown-menu@2.1.16_@types+react-dom@19.2.3_@types+react@19.2.7__@type_9ae99dbb567afdb87068bf276cfbb7a7/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs
var React38 = __toESM(require_react(), 1);
// ../../node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs
var canUseDOM = !!(typeof window !== "undefined" && window.document && window.document.createElement);
function composeEventHandlers(originalEventHandler, ourEventHandler, { checkForDefaultPrevented = true } = {}) {
return function handleEvent(event) {
originalEventHandler == null ? void 0 : originalEventHandler(event);
if (checkForDefaultPrevented === false || !event.defaultPrevented) {
return ourEventHandler == null ? void 0 : ourEventHandler(event);
}
};
}
// ../../node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs
var React7 = __toESM(require_react(), 1);
var import_jsx_runtime4 = __toESM(require_jsx_runtime(), 1);
function createContextScope2(scopeName, createContextScopeDeps = []) {
let defaultContexts = [];
function createContext32(rootComponentName, defaultContext) {
const BaseContext = React7.createContext(defaultContext);
const index = defaultContexts.length;
defaultContexts = [...defaultContexts, defaultContext];
const Provider2 = (props) => {
var _a;
const { scope, children, ...context } = props;
const Context = ((_a = scope == null ? void 0 : scope[scopeName]) == null ? void 0 : _a[index]) || BaseContext;
const value = React7.useMemo(() => context, Object.values(context));
return (0, import_jsx_runtime4.jsx)(Context.Provider, { value, children });
};
Provider2.displayName = rootComponentName + "Provider";
function useContext22(consumerName, scope) {
var _a;
const Context = ((_a = scope == null ? void 0 : scope[scopeName]) == null ? void 0 : _a[index]) || BaseContext;
const context = React7.useContext(Context);
if (context) return context;
if (defaultContext !== void 0) return defaultContext;
throw new Error(`\`${consumerName}\` must be used within \`${rootComponentName}\``);
}
return [Provider2, useContext22];
}
const createScope = () => {
const scopeContexts = defaultContexts.map((defaultContext) => {
return React7.createContext(defaultContext);
});
return function useScope(scope) {
const contexts = (scope == null ? void 0 : scope[scopeName]) || scopeContexts;
return React7.useMemo(
() => ({ [`__scope${scopeName}`]: { ...scope, [scopeName]: contexts } }),
[scope, contexts]
);
};
};
createScope.scopeName = scopeName;
return [createContext32, composeContextScopes2(createScope, ...createContextScopeDeps)];
}
function composeContextScopes2(...scopes) {
const baseScope = scopes[0];
if (scopes.length === 1) return baseScope;
const createScope = () => {
const scopeHooks = scopes.map((createScope2) => ({
useScope: createScope2(),
scopeName: createScope2.scopeName
}));
return function useComposedScopes(overrideScopes) {
const nextScopes = scopeHooks.reduce((nextScopes2, { useScope, scopeName }) => {
const scopeProps = useScope(overrideScopes);
const currentScope = scopeProps[`__scope${scopeName}`];
return { ...nextScopes2, ...currentScope };
}, {});
return React7.useMemo(() => ({ [`__scope${baseScope.scopeName}`]: nextScopes }), [nextScopes]);
};
};
createScope.scopeName = baseScope.scopeName;
return createScope;
}
// ../../node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs
var React9 = __toESM(require_react(), 1);
var React22 = __toESM(require_react(), 1);
// ../../node_modules/.pnpm/@radix-ui+react-use-effect-event@0.0.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs
var React8 = __toESM(require_react(), 1);
var useReactEffectEvent = React8[" useEffectEvent ".trim().toString()];
var useReactInsertionEffect = React8[" useInsertionEffect ".trim().toString()];
// ../../node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs
var useInsertionEffect = React9[" useInsertionEffect ".trim().toString()] || useLayoutEffect2;
function useControllableState({
prop,
defaultProp,
onChange = () => {
},
caller
}) {
const [uncontrolledProp, setUncontrolledProp, onChangeRef] = useUncontrolledState({
defaultProp,
onChange
});
const isControlled = prop !== void 0;
const value = isControlled ? prop : uncontrolledProp;
if (true) {
const isControlledRef = React9.useRef(prop !== void 0);
React9.useEffect(() => {
const wasControlled = isControlledRef.current;
if (wasControlled !== isControlled) {
const from = wasControlled ? "controlled" : "uncontrolled";
const to = isControlled ? "controlled" : "uncontrolled";
console.warn(
`${caller} is changing from ${from} to ${to}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`
);
}
isControlledRef.current = isControlled;
}, [isControlled, caller]);
}
const setValue = React9.useCallback(
(nextValue) => {
var _a;
if (isControlled) {
const value2 = isFunction2(nextValue) ? nextValue(prop) : nextValue;
if (value2 !== prop) {
(_a = onChangeRef.current) == null ? void 0 : _a.call(onChangeRef, value2);
}
} else {
setUncontrolledProp(nextValue);
}
},
[isControlled, prop, setUncontrolledProp, onChangeRef]
);
return [value, setValue];
}
function useUncontrolledState({
defaultProp,
onChange
}) {
const [value, setValue] = React9.useState(defaultProp);
const prevValueRef = React9.useRef(value);
const onChangeRef = React9.useRef(onChange);
useInsertionEffect(() => {
onChangeRef.current = onChange;
}, [onChange]);
React9.useEffect(() => {
var _a;
if (prevValueRef.current !== value) {
(_a = onChangeRef.current) == null ? void 0 : _a.call(onChangeRef, value);
prevValueRef.current = value;
}
}, [value, prevValueRef]);
return [value, setValue, onChangeRef];
}
function isFunction2(value) {
return typeof value === "function";
}
var SYNC_STATE = Symbol("RADIX:SYNC_STATE");
// ../../node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+rea_5f3d28fea11cf58eed3830d0189b6e2d/node_modules/@radix-ui/react-primitive/dist/index.mjs
var React11 = __toESM(require_react(), 1);
var ReactDOM2 = __toESM(require_react_dom(), 1);
// ../../node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs
var React10 = __toESM(require_react(), 1);
var import_jsx_runtime5 = __toESM(require_jsx_runtime(), 1);
function createSlot2(ownerName) {
const SlotClone = createSlotClone(ownerName);
const Slot22 = React10.forwardRef((props, forwardedRef) => {
const { children, ...slotProps } = props;
const childrenArray = React10.Children.toArray(children);
const slottable = childrenArray.find(isSlottable);
if (slottable) {
const newElement = slottable.props.children;
const newChildren = childrenArray.map((child) => {
if (child === slottable) {
if (React10.Children.count(newElement) > 1) return React10.Children.only(null);
return React10.isValidElement(newElement) ? newElement.props.children : null;
} else {
return child;
}
});
return (0, import_jsx_runtime5.jsx)(SlotClone, { ...slotProps, ref: forwardedRef, children: React10.isValidElement(newElement) ? React10.cloneElement(newElement, void 0, newChildren) : null });
}
return (0, import_jsx_runtime5.jsx)(SlotClone, { ...slotProps, ref: forwardedRef, children });
});
Slot22.displayName = `${ownerName}.Slot`;
return Slot22;
}
var Slot2 = createSlot2("Slot");
function createSlotClone(ownerName) {
const SlotClone = React10.forwardRef((props, forwardedRef) => {
const { children, ...slotProps } = props;
if (React10.isValidElement(children)) {
const childrenRef = getElementRef(children);
const props2 = mergeProps(slotProps, children.props);
if (children.type !== React10.Fragment) {
props2.ref = forwardedRef ? composeRefs(forwardedRef, childrenRef) : childrenRef;
}
return React10.cloneElement(children, props2);
}
return React10.Children.count(children) > 1 ? React10.Children.only(null) : null;
});
SlotClone.displayName = `${ownerName}.SlotClone`;
return SlotClone;
}
var SLOTTABLE_IDENTIFIER = Symbol("radix.slottable");
function createSlottable(ownerName) {
const Slottable22 = ({ children }) => {
return (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children });
};
Slottable22.displayName = `${ownerName}.Slottable`;
Slottable22.__radixId = SLOTTABLE_IDENTIFIER;
return Slottable22;
}
var Slottable = createSlottable("Slottable");
function isSlottable(child) {
return React10.isValidElement(child) && typeof child.type === "function" && "__radixId" in child.type && child.type.__radixId === SLOTTABLE_IDENTIFIER;
}
function mergeProps(slotProps, childProps) {
const overrideProps = { ...childProps };
for (const propName in childProps) {
const slotPropValue = slotProps[propName];
const childPropValue = childProps[propName];
const isHandler = /^on[A-Z]/.test(propName);
if (isHandler) {
if (slotPropValue && childPropValue) {
overrideProps[propName] = (...args) => {
const result = childPropValue(...args);
slotPropValue(...args);
return result;
};
} else if (slotPropValue) {
overrideProps[propName] = slotPropValue;
}
} else if (propName === "style") {
overrideProps[propName] = { ...slotPropValue, ...childPropValue };
} else if (propName === "className") {
overrideProps[propName] = [slotPropValue, childPropValue].filter(Boolean).join(" ");
}
}
return { ...slotProps, ...overrideProps };
}
function getElementRef(element) {
var _a, _b;
let getter = (_a = Object.getOwnPropertyDescriptor(element.props, "ref")) == null ? void 0 : _a.get;
let mayWarn = getter && "isReactWarning" in getter && getter.isReactWarning;
if (mayWarn) {
return element.ref;
}
getter = (_b = Object.getOwnPropertyDescriptor(element, "ref")) == null ? void 0 : _b.get;
mayWarn = getter && "isReactWarning" in getter && getter.isReactWarning;
if (mayWarn) {
return element.props.ref;
}
return element.props.ref || element.ref;
}
// ../../node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+rea_5f3d28fea11cf58eed3830d0189b6e2d/node_modules/@radix-ui/react-primitive/dist/index.mjs
var import_jsx_runtime6 = __toESM(require_jsx_runtime(), 1);
var NODES2 = [
"a",
"button",
"div",
"form",
"h2",
"h3",
"img",
"input",
"label",
"li",
"nav",
"ol",
"p",
"select",
"span",
"svg",
"ul"
];
var Primitive2 = NODES2.reduce((primitive, node) => {
const Slot6 = createSlot2(`Primitive.${node}`);
const Node2 = React11.forwardRef((props, forwardedRef) => {
const { asChild, ...primitiveProps } = props;
const Comp = asChild ? Slot6 : node;
if (typeof window !== "undefined") {
window[Symbol.for("radix-ui")] = true;
}
return (0, import_jsx_runtime6.jsx)(Comp, { ...primitiveProps, ref: forwardedRef });
});
Node2.displayName = `Primitive.${node}`;
return { ...primitive, [node]: Node2 };
}, {});
function dispatchDiscreteCustomEvent(target, event) {
if (target) ReactDOM2.flushSync(() => target.dispatchEvent(event));
}
// ../../node_modules/.pnpm/@radix-ui+react-menu@2.1.16_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_29de2434e7d88997dbc2ca0d34462146/node_modules/@radix-ui/react-menu/dist/index.mjs
var React37 = __toESM(require_react(), 1);
// ../../node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+re_51f38897cc3aa0a11933866657bdcfb1/node_modules/@radix-ui/react-collection/dist/index.mjs
var import_react2 = __toESM(require_react(), 1);
var import_jsx_runtime7 = __toESM(require_jsx_runtime(), 1);
var import_react3 = __toESM(require_react(), 1);
var import_jsx_runtime8 = __toESM(require_jsx_runtime(), 1);
function createCollection(name) {
const PROVIDER_NAME2 = name + "CollectionProvider";
const [createCollectionContext, createCollectionScope4] = createContextScope2(PROVIDER_NAME2);
const [CollectionProviderImpl, useCollectionContext] = createCollectionContext(
PROVIDER_NAME2,
{ collectionRef: { current: null }, itemMap: /* @__PURE__ */ new Map() }
);
const CollectionProvider = (props) => {
const { scope, children } = props;
const ref = import_react2.default.useRef(null);
const itemMap = import_react2.default.useRef(/* @__PURE__ */ new Map()).current;
return (0, import_jsx_runtime7.jsx)(CollectionProviderImpl, { scope, itemMap, collectionRef: ref, children });
};
CollectionProvider.displayName = PROVIDER_NAME2;
const COLLECTION_SLOT_NAME = name + "CollectionSlot";
const CollectionSlotImpl = createSlot2(COLLECTION_SLOT_NAME);
const CollectionSlot = import_react2.default.forwardRef(
(props, forwardedRef) => {
const { scope, children } = props;
const context = useCollectionContext(COLLECTION_SLOT_NAME, scope);
const composedRefs = useComposedRefs(forwardedRef, context.collectionRef);
return (0, import_jsx_runtime7.jsx)(CollectionSlotImpl, { ref: composedRefs, children });
}
);
CollectionSlot.displayName = COLLECTION_SLOT_NAME;
const ITEM_SLOT_NAME = name + "CollectionItemSlot";
const ITEM_DATA_ATTR = "data-radix-collection-item";
const CollectionItemSlotImpl = createSlot2(ITEM_SLOT_NAME);
const CollectionItemSlot = import_react2.default.forwardRef(
(props, forwardedRef) => {
const { scope, children, ...itemData } = props;
const ref = import_react2.default.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref);
const context = useCollectionContext(ITEM_SLOT_NAME, scope);
import_react2.default.useEffect(() => {
context.itemMap.set(ref, { ref, ...itemData });
return () => void context.itemMap.delete(ref);
});
return (0, import_jsx_runtime7.jsx)(CollectionItemSlotImpl, { ...{ [ITEM_DATA_ATTR]: "" }, ref: composedRefs, children });
}
);
CollectionItemSlot.displayName = ITEM_SLOT_NAME;
function useCollection4(scope) {
const context = useCollectionContext(name + "CollectionConsumer", scope);
const getItems = import_react2.default.useCallback(() => {
const collectionNode = context.collectionRef.current;
if (!collectionNode) return [];
const orderedNodes = Array.from(collectionNode.querySelectorAll(`[${ITEM_DATA_ATTR}]`));
const items = Array.from(context.itemMap.values());
const orderedItems = items.sort(
(a, b) => orderedNodes.indexOf(a.ref.current) - orderedNodes.indexOf(b.ref.current)
);
return orderedItems;
}, [context.collectionRef, context.itemMap]);
return getItems;
}
return [
{ Provider: CollectionProvider, Slot: CollectionSlot, ItemSlot: CollectionItemSlot },
useCollection4,
createCollectionScope4
];
}
// ../../node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-direction/dist/index.mjs
var React13 = __toESM(require_react(), 1);
var import_jsx_runtime9 = __toESM(require_jsx_runtime(), 1);
var DirectionContext = React13.createContext(void 0);
function useDirection(localDir) {
const globalDir = React13.useContext(DirectionContext);
return localDir || globalDir || "ltr";
}
// ../../node_modules/.pnpm/@radix-ui+react-dismissable-layer@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@_d3b8d348a25db9227f3697eddbb26378/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs
var React15 = __toESM(require_react(), 1);
// ../../node_modules/.pnpm/@radix-ui+react-use-escape-keydown@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-escape-keydown/dist/index.mjs
var React14 = __toESM(require_react(), 1);
function useEscapeKeydown(onEscapeKeyDownProp, ownerDocument = globalThis == null ? void 0 : globalThis.document) {
const onEscapeKeyDown = useCallbackRef(onEscapeKeyDownProp);
React14.useEffect(() => {
const handleKeyDown = (event) => {
if (event.key === "Escape") {
onEscapeKeyDown(event);
}
};
ownerDocument.addEventListener("keydown", handleKeyDown, { capture: true });
return () => ownerDocument.removeEventListener("keydown", handleKeyDown, { capture: true });
}, [onEscapeKeyDown, ownerDocument]);
}
// ../../node_modules/.pnpm/@radix-ui+react-dismissable-layer@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@_d3b8d348a25db9227f3697eddbb26378/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs
var import_jsx_runtime10 = __toESM(require_jsx_runtime(), 1);
var DISMISSABLE_LAYER_NAME = "DismissableLayer";
var CONTEXT_UPDATE = "dismissableLayer.update";
var POINTER_DOWN_OUTSIDE = "dismissableLayer.pointerDownOutside";
var FOCUS_OUTSIDE = "dismissableLayer.focusOutside";
var originalBodyPointerEvents;
var DismissableLayerContext = React15.createContext({
layers: /* @__PURE__ */ new Set(),
layersWithOutsidePointerEventsDisabled: /* @__PURE__ */ new Set(),
branches: /* @__PURE__ */ new Set()
});
var DismissableLayer = React15.forwardRef(
(props, forwardedRef) => {
const {
disableOutsidePointerEvents = false,
onEscapeKeyDown,
onPointerDownOutside,
onFocusOutside,
onInteractOutside,
onDismiss,
...layerProps
} = props;
const context = React15.useContext(DismissableLayerContext);
const [node, setNode] = React15.useState(null);
const ownerDocument = (node == null ? void 0 : node.ownerDocument) ?? (globalThis == null ? void 0 : globalThis.document);
const [, force] = React15.useState({});
const composedRefs = useComposedRefs(forwardedRef, (node2) => setNode(node2));
const layers = Array.from(context.layers);
const [highestLayerWithOutsidePointerEventsDisabled] = [...context.layersWithOutsidePointerEventsDisabled].slice(-1);
const highestLayerWithOutsidePointerEventsDisabledIndex = layers.indexOf(highestLayerWithOutsidePointerEventsDisabled);
const index = node ? layers.indexOf(node) : -1;
const isBodyPointerEventsDisabled = context.layersWithOutsidePointerEventsDisabled.size > 0;
const isPointerEventsEnabled = index >= highestLayerWithOutsidePointerEventsDisabledIndex;
const pointerDownOutside = usePointerDownOutside((event) => {
const target = event.target;
const isPointerDownOnBranch = [...context.branches].some((branch) => branch.contains(target));
if (!isPointerEventsEnabled || isPointerDownOnBranch) return;
onPointerDownOutside == null ? void 0 : onPointerDownOutside(event);
onInteractOutside == null ? void 0 : onInteractOutside(event);
if (!event.defaultPrevented) onDismiss == null ? void 0 : onDismiss();
}, ownerDocument);
const focusOutside = useFocusOutside((event) => {
const target = event.target;
const isFocusInBranch = [...context.branches].some((branch) => branch.contains(target));
if (isFocusInBranch) return;
onFocusOutside == null ? void 0 : onFocusOutside(event);
onInteractOutside == null ? void 0 : onInteractOutside(event);
if (!event.defaultPrevented) onDismiss == null ? void 0 : onDismiss();
}, ownerDocument);
useEscapeKeydown((event) => {
const isHighestLayer = index === context.layers.size - 1;
if (!isHighestLayer) return;
onEscapeKeyDown == null ? void 0 : onEscapeKeyDown(event);
if (!event.defaultPrevented && onDismiss) {
event.preventDefault();
onDismiss();
}
}, ownerDocument);
React15.useEffect(() => {
if (!node) return;
if (disableOutsidePointerEvents) {
if (context.layersWithOutsidePointerEventsDisabled.size === 0) {
originalBodyPointerEvents = ownerDocument.body.style.pointerEvents;
ownerDocument.body.style.pointerEvents = "none";
}
context.layersWithOutsidePointerEventsDisabled.add(node);
}
context.layers.add(node);
dispatchUpdate();
return () => {
if (disableOutsidePointerEvents && context.layersWithOutsidePointerEventsDisabled.size === 1) {
ownerDocument.body.style.pointerEvents = originalBodyPointerEvents;
}
};
}, [node, ownerDocument, disableOutsidePointerEvents, context]);
React15.useEffect(() => {
return () => {
if (!node) return;
context.layers.delete(node);
context.layersWithOutsidePointerEventsDisabled.delete(node);
dispatchUpdate();
};
}, [node, context]);
React15.useEffect(() => {
const handleUpdate = () => force({});
document.addEventListener(CONTEXT_UPDATE, handleUpdate);
return () => document.removeEventListener(CONTEXT_UPDATE, handleUpdate);
}, []);
return (0, import_jsx_runtime10.jsx)(
Primitive2.div,
{
...layerProps,
ref: composedRefs,
style: {
pointerEvents: isBodyPointerEventsDisabled ? isPointerEventsEnabled ? "auto" : "none" : void 0,
...props.style
},
onFocusCapture: composeEventHandlers(props.onFocusCapture, focusOutside.onFocusCapture),
onBlurCapture: composeEventHandlers(props.onBlurCapture, focusOutside.onBlurCapture),
onPointerDownCapture: composeEventHandlers(
props.onPointerDownCapture,
pointerDownOutside.onPointerDownCapture
)
}
);
}
);
DismissableLayer.displayName = DISMISSABLE_LAYER_NAME;
var BRANCH_NAME = "DismissableLayerBranch";
var DismissableLayerBranch = React15.forwardRef((props, forwardedRef) => {
const context = React15.useContext(DismissableLayerContext);
const ref = React15.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref);
React15.useEffect(() => {
const node = ref.current;
if (node) {
context.branches.add(node);
return () => {
context.branches.delete(node);
};
}
}, [context.branches]);
return (0, import_jsx_runtime10.jsx)(Primitive2.div, { ...props, ref: composedRefs });
});
DismissableLayerBranch.displayName = BRANCH_NAME;
function usePointerDownOutside(onPointerDownOutside, ownerDocument = globalThis == null ? void 0 : globalThis.document) {
const handlePointerDownOutside = useCallbackRef(onPointerDownOutside);
const isPointerInsideReactTreeRef = React15.useRef(false);
const handleClickRef = React15.useRef(() => {
});
React15.useEffect(() => {
const handlePointerDown = (event) => {
if (event.target && !isPointerInsideReactTreeRef.current) {
let handleAndDispatchPointerDownOutsideEvent2 = function() {
handleAndDispatchCustomEvent(
POINTER_DOWN_OUTSIDE,
handlePointerDownOutside,
eventDetail,
{ discrete: true }
);
};
var handleAndDispatchPointerDownOutsideEvent = handleAndDispatchPointerDownOutsideEvent2;
const eventDetail = { originalEvent: event };
if (event.pointerType === "touch") {
ownerDocument.removeEventListener("click", handleClickRef.current);
handleClickRef.current = handleAndDispatchPointerDownOutsideEvent2;
ownerDocument.addEventListener("click", handleClickRef.current, { once: true });
} else {
handleAndDispatchPointerDownOutsideEvent2();
}
} else {
ownerDocument.removeEventListener("click", handleClickRef.current);
}
isPointerInsideReactTreeRef.current = false;
};
const timerId = window.setTimeout(() => {
ownerDocument.addEventListener("pointerdown", handlePointerDown);
}, 0);
return () => {
window.clearTimeout(timerId);
ownerDocument.removeEventListener("pointerdown", handlePointerDown);
ownerDocument.removeEventListener("click", handleClickRef.current);
};
}, [ownerDocument, handlePointerDownOutside]);
return {
// ensures we check React component tree (not just DOM tree)
onPointerDownCapture: () => isPointerInsideReactTreeRef.current = true
};
}
function useFocusOutside(onFocusOutside, ownerDocument = globalThis == null ? void 0 : globalThis.document) {
const handleFocusOutside = useCallbackRef(onFocusOutside);
const isFocusInsideReactTreeRef = React15.useRef(false);
React15.useEffect(() => {
const handleFocus = (event) => {
if (event.target && !isFocusInsideReactTreeRef.current) {
const eventDetail = { originalEvent: event };
handleAndDispatchCustomEvent(FOCUS_OUTSIDE, handleFocusOutside, eventDetail, {
discrete: false
});
}
};
ownerDocument.addEventListener("focusin", handleFocus);
return () => ownerDocument.removeEventListener("focusin", handleFocus);
}, [ownerDocument, handleFocusOutside]);
return {
onFocusCapture: () => isFocusInsideReactTreeRef.current = true,
onBlurCapture: () => isFocusInsideReactTreeRef.current = false
};
}
function dispatchUpdate() {
const event = new CustomEvent(CONTEXT_UPDATE);
document.dispatchEvent(event);
}
function handleAndDispatchCustomEvent(name, handler, detail, { discrete }) {
const target = detail.originalEvent.target;
const event = new CustomEvent(name, { bubbles: false, cancelable: true, detail });
if (handler) target.addEventListener(name, handler, { once: true });
if (discrete) {
dispatchDiscreteCustomEvent(target, event);
} else {
target.dispatchEvent(event);
}
}
// ../../node_modules/.pnpm/@radix-ui+react-focus-guards@1.1.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-focus-guards/dist/index.mjs
var React16 = __toESM(require_react(), 1);
var count = 0;
function useFocusGuards() {
React16.useEffect(() => {
const edgeGuards = document.querySelectorAll("[data-radix-focus-guard]");
document.body.insertAdjacentElement("afterbegin", edgeGuards[0] ?? createFocusGuard());
document.body.insertAdjacentElement("beforeend", edgeGuards[1] ?? createFocusGuard());
count++;
return () => {
if (count === 1) {
document.querySelectorAll("[data-radix-focus-guard]").forEach((node) => node.remove());
}
count--;
};
}, []);
}
function createFocusGuard() {
const element = document.createElement("span");
element.setAttribute("data-radix-focus-guard", "");
element.tabIndex = 0;
element.style.outline = "none";
element.style.opacity = "0";
element.style.position = "fixed";
element.style.pointerEvents = "none";
return element;
}
// ../../node_modules/.pnpm/@radix-ui+react-focus-scope@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+r_4bc0a4f7a0f317379d2e6b46c577ea20/node_modules/@radix-ui/react-focus-scope/dist/index.mjs
var React17 = __toESM(require_react(), 1);
var import_jsx_runtime11 = __toESM(require_jsx_runtime(), 1);
var AUTOFOCUS_ON_MOUNT = "focusScope.autoFocusOnMount";
var AUTOFOCUS_ON_UNMOUNT = "focusScope.autoFocusOnUnmount";
var EVENT_OPTIONS = { bubbles: false, cancelable: true };
var FOCUS_SCOPE_NAME = "FocusScope";
var FocusScope = React17.forwardRef((props, forwardedRef) => {
const {
loop = false,
trapped = false,
onMountAutoFocus: onMountAutoFocusProp,
onUnmountAutoFocus: onUnmountAutoFocusProp,
...scopeProps
} = props;
const [container, setContainer] = React17.useState(null);
const onMountAutoFocus = useCallbackRef(onMountAutoFocusProp);
const onUnmountAutoFocus = useCallbackRef(onUnmountAutoFocusProp);
const lastFocusedElementRef = React17.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, (node) => setContainer(node));
const focusScope = React17.useRef({
paused: false,
pause() {
this.paused = true;
},
resume() {
this.paused = false;
}
}).current;
React17.useEffect(() => {
if (trapped) {
let handleFocusIn2 = function(event) {
if (focusScope.paused || !container) return;
const target = event.target;
if (container.contains(target)) {
lastFocusedElementRef.current = target;
} else {
focus(lastFocusedElementRef.current, { select: true });
}
}, handleFocusOut2 = function(event) {
if (focusScope.paused || !container) return;
const relatedTarget = event.relatedTarget;
if (relatedTarget === null) return;
if (!container.contains(relatedTarget)) {
focus(lastFocusedElementRef.current, { select: true });
}
}, handleMutations2 = function(mutations) {
const focusedElement = document.activeElement;
if (focusedElement !== document.body) return;
for (const mutation of mutations) {
if (mutation.removedNodes.length > 0) focus(container);
}
};
var handleFocusIn = handleFocusIn2, handleFocusOut = handleFocusOut2, handleMutations = handleMutations2;
document.addEventListener("focusin", handleFocusIn2);
document.addEventListener("focusout", handleFocusOut2);
const mutationObserver = new MutationObserver(handleMutations2);
if (container) mutationObserver.observe(container, { childList: true, subtree: true });
return () => {
document.removeEventListener("focusin", handleFocusIn2);
document.removeEventListener("focusout", handleFocusOut2);
mutationObserver.disconnect();
};
}
}, [trapped, container, focusScope.paused]);
React17.useEffect(() => {
if (container) {
focusScopesStack.add(focusScope);
const previouslyFocusedElement = document.activeElement;
const hasFocusedCandidate = container.contains(previouslyFocusedElement);
if (!hasFocusedCandidate) {
const mountEvent = new CustomEvent(AUTOFOCUS_ON_MOUNT, EVENT_OPTIONS);
container.addEventListener(AUTOFOCUS_ON_MOUNT, onMountAutoFocus);
container.dispatchEvent(mountEvent);
if (!mountEvent.defaultPrevented) {
focusFirst(removeLinks(getTabbableCandidates(container)), { select: true });
if (document.activeElement === previouslyFocusedElement) {
focus(container);
}
}
}
return () => {
container.removeEventListener(AUTOFOCUS_ON_MOUNT, onMountAutoFocus);
setTimeout(() => {
const unmountEvent = new CustomEvent(AUTOFOCUS_ON_UNMOUNT, EVENT_OPTIONS);
container.addEventListener(AUTOFOCUS_ON_UNMOUNT, onUnmountAutoFocus);
container.dispatchEvent(unmountEvent);
if (!unmountEvent.defaultPrevented) {
focus(previouslyFocusedElement ?? document.body, { select: true });
}
container.removeEventListener(AUTOFOCUS_ON_UNMOUNT, onUnmountAutoFocus);
focusScopesStack.remove(focusScope);
}, 0);
};
}
}, [container, onMountAutoFocus, onUnmountAutoFocus, focusScope]);
const handleKeyDown = React17.useCallback(
(event) => {
if (!loop && !trapped) return;
if (focusScope.paused) return;
const isTabKey = event.key === "Tab" && !event.altKey && !event.ctrlKey && !event.metaKey;
const focusedElement = document.activeElement;
if (isTabKey && focusedElement) {
const container2 = event.currentTarget;
const [first, last] = getTabbableEdges(container2);
const hasTabbableElementsInside = first && last;
if (!hasTabbableElementsInside) {
if (focusedElement === container2) event.preventDefault();
} else {
if (!event.shiftKey && focusedElement === last) {
event.preventDefault();
if (loop) focus(first, { select: true });
} else if (event.shiftKey && focusedElement === first) {
event.preventDefault();
if (loop) focus(last, { select: true });
}
}
}
},
[loop, trapped, focusScope.paused]
);
return (0, import_jsx_runtime11.jsx)(Primitive2.div, { tabIndex: -1, ...scopeProps, ref: composedRefs, onKeyDown: handleKeyDown });
});
FocusScope.displayName = FOCUS_SCOPE_NAME;
function focusFirst(candidates, { select = false } = {}) {
const previouslyFocusedElement = document.activeElement;
for (const candidate of candidates) {
focus(candidate, { select });
if (document.activeElement !== previouslyFocusedElement) return;
}
}
function getTabbableEdges(container) {
const candidates = getTabbableCandidates(container);
const first = findVisible(candidates, container);
const last = findVisible(candidates.reverse(), container);
return [first, last];
}
function getTabbableCandidates(container) {
const nodes = [];
const walker = document.createTreeWalker(container, NodeFilter.SHOW_ELEMENT, {
acceptNode: (node) => {
const isHiddenInput = node.tagName === "INPUT" && node.type === "hidden";
if (node.disabled || node.hidden || isHiddenInput) return NodeFilter.FILTER_SKIP;
return node.tabIndex >= 0 ? NodeFilter.FILTER_ACCEPT : NodeFilter.FILTER_SKIP;
}
});
while (walker.nextNode()) nodes.push(walker.currentNode);
return nodes;
}
function findVisible(elements, container) {
for (const element of elements) {
if (!isHidden(element, { upTo: container })) return element;
}
}
function isHidden(node, { upTo }) {
if (getComputedStyle(node).visibility === "hidden") return true;
while (node) {
if (upTo !== void 0 && node === upTo) return false;
if (getComputedStyle(node).display === "none") return true;
node = node.parentElement;
}
return false;
}
function isSelectableInput(element) {
return element instanceof HTMLInputElement && "select" in element;
}
function focus(element, { select = false } = {}) {
if (element && element.focus) {
const previouslyFocusedElement = document.activeElement;
element.focus({ preventScroll: true });
if (element !== previouslyFocusedElement && isSelectableInput(element) && select)
element.select();
}
}
var focusScopesStack = createFocusScopesStack();
function createFocusScopesStack() {
let stack = [];
return {
add(focusScope) {
const activeFocusScope = stack[0];
if (focusScope !== activeFocusScope) {
activeFocusScope == null ? void 0 : activeFocusScope.pause();
}
stack = arrayRemove(stack, focusScope);
stack.unshift(focusScope);
},
remove(focusScope) {
var _a;
stack = arrayRemove(stack, focusScope);
(_a = stack[0]) == null ? void 0 : _a.resume();
}
};
}
function arrayRemove(array, item) {
const updatedArray = [...array];
const index = updatedArray.indexOf(item);
if (index !== -1) {
updatedArray.splice(index, 1);
}
return updatedArray;
}
function removeLinks(items) {
return items.filter((item) => item.tagName !== "A");
}
// ../../node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-id/dist/index.mjs
var React18 = __toESM(require_react(), 1);
var useReactId = React18[" useId ".trim().toString()] || (() => void 0);
var count2 = 0;
function useId(deterministicId) {
const [id, setId] = React18.useState(useReactId());
useLayoutEffect2(() => {
if (!deterministicId) setId((reactId) => reactId ?? String(count2++));
}, [deterministicId]);
return deterministicId || (id ? `radix-${id}` : "");
}
// ../../node_modules/.pnpm/@radix-ui+react-popper@1.2.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@_4468d6b8a14aa8e01a5fa6b59b3b35ec/node_modules/@radix-ui/react-popper/dist/index.mjs
var React21 = __toESM(require_react(), 1);
// ../../node_modules/.pnpm/@radix-ui+react-arrow@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_2aa610ae3ce517c8615cebea9e24dc5b/node_modules/@radix-ui/react-arrow/dist/index.mjs
var React19 = __toESM(require_react(), 1);
var import_jsx_runtime12 = __toESM(require_jsx_runtime(), 1);
var NAME = "Arrow";
var Arrow = React19.forwardRef((props, forwardedRef) => {
const { children, width = 10, height = 5, ...arrowProps } = props;
return (0, import_jsx_runtime12.jsx)(
Primitive2.svg,
{
...arrowProps,
ref: forwardedRef,
width,
height,
viewBox: "0 0 30 10",
preserveAspectRatio: "none",
children: props.asChild ? children : (0, import_jsx_runtime12.jsx)("polygon", { points: "0,0 30,0 15,10" })
}
);
});
Arrow.displayName = NAME;
var Root2 = Arrow;
// ../../node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-size/dist/index.mjs
var React20 = __toESM(require_react(), 1);
function useSize(element) {
const [size2, setSize] = React20.useState(void 0);
useLayoutEffect2(() => {
if (element) {
setSize({ width: element.offsetWidth, height: element.offsetHeight });
const resizeObserver = new ResizeObserver((entries) => {
if (!Array.isArray(entries)) {
return;
}
if (!entries.length) {
return;
}
const entry = entries[0];
let width;
let height;
if ("borderBoxSize" in entry) {
const borderSizeEntry = entry["borderBoxSize"];
const borderSize = Array.isArray(borderSizeEntry) ? borderSizeEntry[0] : borderSizeEntry;
width = borderSize["inlineSize"];
height = borderSize["blockSize"];
} else {
width = element.offsetWidth;
height = element.offsetHeight;
}
setSize({ width, height });
});
resizeObserver.observe(element, { box: "border-box" });
return () => resizeObserver.unobserve(element);
} else {
setSize(void 0);
}
}, [element]);
return size2;
}
// ../../node_modules/.pnpm/@radix-ui+react-popper@1.2.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@_4468d6b8a14aa8e01a5fa6b59b3b35ec/node_modules/@radix-ui/react-popper/dist/index.mjs
var import_jsx_runtime13 = __toESM(require_jsx_runtime(), 1);
var POPPER_NAME = "Popper";
var [createPopperContext, createPopperScope] = createContextScope2(POPPER_NAME);
var [PopperProvider, usePopperContext] = createPopperContext(POPPER_NAME);
var Popper = (props) => {
const { __scopePopper, children } = props;
const [anchor, setAnchor] = React21.useState(null);
return (0, import_jsx_runtime13.jsx)(PopperProvider, { scope: __scopePopper, anchor, onAnchorChange: setAnchor, children });
};
Popper.displayName = POPPER_NAME;
var ANCHOR_NAME = "PopperAnchor";
var PopperAnchor = React21.forwardRef(
(props, forwardedRef) => {
const { __scopePopper, virtualRef, ...anchorProps } = props;
const context = usePopperContext(ANCHOR_NAME, __scopePopper);
const ref = React21.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref);
const anchorRef = React21.useRef(null);
React21.useEffect(() => {
const previousAnchor = anchorRef.current;
anchorRef.current = (virtualRef == null ? void 0 : virtualRef.current) || ref.current;
if (previousAnchor !== anchorRef.current) {
context.onAnchorChange(anchorRef.current);
}
});
return virtualRef ? null : (0, import_jsx_runtime13.jsx)(Primitive2.div, { ...anchorProps, ref: composedRefs });
}
);
PopperAnchor.displayName = ANCHOR_NAME;
var CONTENT_NAME = "PopperContent";
var [PopperContentProvider, useContentContext] = createPopperContext(CONTENT_NAME);
var PopperContent = React21.forwardRef(
(props, forwardedRef) => {
var _a, _b, _c, _d, _e2, _f;
const {
__scopePopper,
side = "bottom",
sideOffset = 0,
align = "center",
alignOffset = 0,
arrowPadding = 0,
avoidCollisions = true,
collisionBoundary = [],
collisionPadding: collisionPaddingProp = 0,
sticky = "partial",
hideWhenDetached = false,
updatePositionStrategy = "optimized",
onPlaced,
...contentProps
} = props;
const context = usePopperContext(CONTENT_NAME, __scopePopper);
const [content, setContent] = React21.useState(null);
const composedRefs = useComposedRefs(forwardedRef, (node) => setContent(node));
const [arrow2, setArrow] = React21.useState(null);
const arrowSize = useSize(arrow2);
const arrowWidth = (arrowSize == null ? void 0 : arrowSize.width) ?? 0;
const arrowHeight = (arrowSize == null ? void 0 : arrowSize.height) ?? 0;
const desiredPlacement = side + (align !== "center" ? "-" + align : "");
const collisionPadding = typeof collisionPaddingProp === "number" ? collisionPaddingProp : { top: 0, right: 0, bottom: 0, left: 0, ...collisionPaddingProp };
const boundary = Array.isArray(collisionBoundary) ? collisionBoundary : [collisionBoundary];
const hasExplicitBoundaries = boundary.length > 0;
const detectOverflowOptions = {
padding: collisionPadding,
boundary: boundary.filter(isNotNull),
// with `strategy: 'fixed'`, this is the only way to get it to respect boundaries
altBoundary: hasExplicitBoundaries
};
const { refs, floatingStyles, placement, isPositioned, middlewareData } = useFloating({
// default to `fixed` strategy so users don't have to pick and we also avoid focus scroll issues
strategy: "fixed",
placement: desiredPlacement,
whileElementsMounted: (...args) => {
const cleanup = autoUpdate(...args, {
animationFrame: updatePositionStrategy === "always"
});
return cleanup;
},
elements: {
reference: context.anchor
},
middleware: [
offset({ mainAxis: sideOffset + arrowHeight, alignmentAxis: alignOffset }),
avoidCollisions && shift({
mainAxis: true,
crossAxis: false,
limiter: sticky === "partial" ? limitShift() : void 0,
...detectOverflowOptions
}),
avoidCollisions && flip({ ...detectOverflowOptions }),
size({
...detectOverflowOptions,
apply: ({ elements, rects, availableWidth, availableHeight }) => {
const { width: anchorWidth, height: anchorHeight } = rects.reference;
const contentStyle = elements.floating.style;
contentStyle.setProperty("--radix-popper-available-width", `${availableWidth}px`);
contentStyle.setProperty("--radix-popper-available-height", `${availableHeight}px`);
contentStyle.setProperty("--radix-popper-anchor-width", `${anchorWidth}px`);
contentStyle.setProperty("--radix-popper-anchor-height", `${anchorHeight}px`);
}
}),
arrow2 && arrow({ element: arrow2, padding: arrowPadding }),
transformOrigin({ arrowWidth, arrowHeight }),
hideWhenDetached && hide({ strategy: "referenceHidden", ...detectOverflowOptions })
]
});
const [placedSide, placedAlign] = getSideAndAlignFromPlacement(placement);
const handlePlaced = useCallbackRef(onPlaced);
useLayoutEffect2(() => {
if (isPositioned) {
handlePlaced == null ? void 0 : handlePlaced();
}
}, [isPositioned, handlePlaced]);
const arrowX = (_a = middlewareData.arrow) == null ? void 0 : _a.x;
const arrowY = (_b = middlewareData.arrow) == null ? void 0 : _b.y;
const cannotCenterArrow = ((_c = middlewareData.arrow) == null ? void 0 : _c.centerOffset) !== 0;
const [contentZIndex, setContentZIndex] = React21.useState();
useLayoutEffect2(() => {
if (content) setContentZIndex(window.getComputedStyle(content).zIndex);
}, [content]);
return (0, import_jsx_runtime13.jsx)(
"div",
{
ref: refs.setFloating,
"data-radix-popper-content-wrapper": "",
style: {
...floatingStyles,
transform: isPositioned ? floatingStyles.transform : "translate(0, -200%)",
// keep off the page when measuring
minWidth: "max-content",
zIndex: contentZIndex,
["--radix-popper-transform-origin"]: [
(_d = middlewareData.transformOrigin) == null ? void 0 : _d.x,
(_e2 = middlewareData.transformOrigin) == null ? void 0 : _e2.y
].join(" "),
// hide the content if using the hide middleware and should be hidden
// set visibility to hidden and disable pointer events so the UI behaves
// as if the PopperContent isn't there at all
...((_f = middlewareData.hide) == null ? void 0 : _f.referenceHidden) && {
visibility: "hidden",
pointerEvents: "none"
}
},
dir: props.dir,
children: (0, import_jsx_runtime13.jsx)(
PopperContentProvider,
{
scope: __scopePopper,
placedSide,
onArrowChange: setArrow,
arrowX,
arrowY,
shouldHideArrow: cannotCenterArrow,
children: (0, import_jsx_runtime13.jsx)(
Primitive2.div,
{
"data-side": placedSide,
"data-align": placedAlign,
...contentProps,
ref: composedRefs,
style: {
...contentProps.style,
// if the PopperContent hasn't been placed yet (not all measurements done)
// we prevent animations so that users's animation don't kick in too early referring wrong sides
animation: !isPositioned ? "none" : void 0
}
}
)
}
)
}
);
}
);
PopperContent.displayName = CONTENT_NAME;
var ARROW_NAME = "PopperArrow";
var OPPOSITE_SIDE = {
top: "bottom",
right: "left",
bottom: "top",
left: "right"
};
var PopperArrow = React21.forwardRef(function PopperArrow2(props, forwardedRef) {
const { __scopePopper, ...arrowProps } = props;
const contentContext = useContentContext(ARROW_NAME, __scopePopper);
const baseSide = OPPOSITE_SIDE[contentContext.placedSide];
return (
// we have to use an extra wrapper because `ResizeObserver` (used by `useSize`)
// doesn't report size as we'd expect on SVG elements.
// it reports their bounding box which is effectively the largest path inside the SVG.
(0, import_jsx_runtime13.jsx)(
"span",
{
ref: contentContext.onArrowChange,
style: {
position: "absolute",
left: contentContext.arrowX,
top: contentContext.arrowY,
[baseSide]: 0,
transformOrigin: {
top: "",
right: "0 0",
bottom: "center 0",
left: "100% 0"
}[contentContext.placedSide],
transform: {
top: "translateY(100%)",
right: "translateY(50%) rotate(90deg) translateX(-50%)",
bottom: `rotate(180deg)`,
left: "translateY(50%) rotate(-90deg) translateX(50%)"
}[contentContext.placedSide],
visibility: contentContext.shouldHideArrow ? "hidden" : void 0
},
children: (0, import_jsx_runtime13.jsx)(
Root2,
{
...arrowProps,
ref: forwardedRef,
style: {
...arrowProps.style,
// ensures the element can be measured correctly (mostly for if SVG)
display: "block"
}
}
)
}
)
);
});
PopperArrow.displayName = ARROW_NAME;
function isNotNull(value) {
return value !== null;
}
var transformOrigin = (options) => ({
name: "transformOrigin",
options,
fn(data) {
var _a, _b, _c;
const { placement, rects, middlewareData } = data;
const cannotCenterArrow = ((_a = middlewareData.arrow) == null ? void 0 : _a.centerOffset) !== 0;
const isArrowHidden = cannotCenterArrow;
const arrowWidth = isArrowHidden ? 0 : options.arrowWidth;
const arrowHeight = isArrowHidden ? 0 : options.arrowHeight;
const [placedSide, placedAlign] = getSideAndAlignFromPlacement(placement);
const noArrowAlign = { start: "0%", center: "50%", end: "100%" }[placedAlign];
const arrowXCenter = (((_b = middlewareData.arrow) == null ? void 0 : _b.x) ?? 0) + arrowWidth / 2;
const arrowYCenter = (((_c = middlewareData.arrow) == null ? void 0 : _c.y) ?? 0) + arrowHeight / 2;
let x = "";
let y = "";
if (placedSide === "bottom") {
x = isArrowHidden ? noArrowAlign : `${arrowXCenter}px`;
y = `${-arrowHeight}px`;
} else if (placedSide === "top") {
x = isArrowHidden ? noArrowAlign : `${arrowXCenter}px`;
y = `${rects.floating.height + arrowHeight}px`;
} else if (placedSide === "right") {
x = `${-arrowHeight}px`;
y = isArrowHidden ? noArrowAlign : `${arrowYCenter}px`;
} else if (placedSide === "left") {
x = `${rects.floating.width + arrowHeight}px`;
y = isArrowHidden ? noArrowAlign : `${arrowYCenter}px`;
}
return { data: { x, y } };
}
});
function getSideAndAlignFromPlacement(placement) {
const [side, align = "center"] = placement.split("-");
return [side, align];
}
var Root22 = Popper;
var Anchor = PopperAnchor;
var Content = PopperContent;
var Arrow2 = PopperArrow;
// ../../node_modules/.pnpm/@radix-ui+react-portal@1.1.9_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@_7645cc20debbdc3166db2ed8e9fd2af5/node_modules/@radix-ui/react-portal/dist/index.mjs
var React24 = __toESM(require_react(), 1);
var import_react_dom2 = __toESM(require_react_dom(), 1);
var import_jsx_runtime14 = __toESM(require_jsx_runtime(), 1);
var PORTAL_NAME = "Portal";
var Portal = React24.forwardRef((props, forwardedRef) => {
var _a;
const { container: containerProp, ...portalProps } = props;
const [mounted, setMounted] = React24.useState(false);
useLayoutEffect2(() => setMounted(true), []);
const container = containerProp || mounted && ((_a = globalThis == null ? void 0 : globalThis.document) == null ? void 0 : _a.body);
return container ? import_react_dom2.default.createPortal((0, import_jsx_runtime14.jsx)(Primitive2.div, { ...portalProps, ref: forwardedRef }), container) : null;
});
Portal.displayName = PORTAL_NAME;
// ../../node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.7__@types+reac_90b29b5754215655309320557426a63a/node_modules/@radix-ui/react-presence/dist/index.mjs
var React25 = __toESM(require_react(), 1);
var React26 = __toESM(require_react(), 1);
function useStateMachine(initialState, machine) {
return React26.useReducer((state, event) => {
const nextState = machine[state][event];
return nextState ?? state;
}, initialState);
}
var Presence = (props) => {
const { present, children } = props;
const presence = usePresence(present);
const child = typeof children === "function" ? children({ present: presence.isPresent }) : React25.Children.only(children);
const ref = useComposedRefs(presence.ref, getElementRef2(child));
const forceMount = typeof children === "function";
return forceMount || presence.isPresent ? React25.cloneElement(child, { ref }) : null;
};
Presence.displayName = "Presence";
function usePresence(present) {
const [node, setNode] = React25.useState();
const stylesRef = React25.useRef(null);
const prevPresentRef = React25.useRef(present);
const prevAnimationNameRef = React25.useRef("none");
const initialState = present ? "mounted" : "unmounted";
const [state, send] = useStateMachine(initialState, {
mounted: {
UNMOUNT: "unmounted",
ANIMATION_OUT: "unmountSuspended"
},
unmountSuspended: {
MOUNT: "mounted",
ANIMATION_END: "unmounted"
},
unmounted: {
MOUNT: "mounted"
}
});
React25.useEffect(() => {
const currentAnimationName = getAnimationName(stylesRef.current);
prevAnimationNameRef.current = state === "mounted" ? currentAnimationName : "none";
}, [state]);
useLayoutEffect2(() => {
const styles = stylesRef.current;
const wasPresent = prevPresentRef.current;
const hasPresentChanged = wasPresent !== present;
if (hasPresentChanged) {
const prevAnimationName = prevAnimationNameRef.current;
const currentAnimationName = getAnimationName(styles);
if (present) {
send("MOUNT");
} else if (currentAnimationName === "none" || (styles == null ? void 0 : styles.display) === "none") {
send("UNMOUNT");
} else {
const isAnimating = prevAnimationName !== currentAnimationName;
if (wasPresent && isAnimating) {
send("ANIMATION_OUT");
} else {
send("UNMOUNT");
}
}
prevPresentRef.current = present;
}
}, [present, send]);
useLayoutEffect2(() => {
if (node) {
let timeoutId;
const ownerWindow = node.ownerDocument.defaultView ?? window;
const handleAnimationEnd = (event) => {
const currentAnimationName = getAnimationName(stylesRef.current);
const isCurrentAnimation = currentAnimationName.includes(CSS.escape(event.animationName));
if (event.target === node && isCurrentAnimation) {
send("ANIMATION_END");
if (!prevPresentRef.current) {
const currentFillMode = node.style.animationFillMode;
node.style.animationFillMode = "forwards";
timeoutId = ownerWindow.setTimeout(() => {
if (node.style.animationFillMode === "forwards") {
node.style.animationFillMode = currentFillMode;
}
});
}
}
};
const handleAnimationStart = (event) => {
if (event.target === node) {
prevAnimationNameRef.current = getAnimationName(stylesRef.current);
}
};
node.addEventListener("animationstart", handleAnimationStart);
node.addEventListener("animationcancel", handleAnimationEnd);
node.addEventListener("animationend", handleAnimationEnd);
return () => {
ownerWindow.clearTimeout(timeoutId);
node.removeEventListener("animationstart", handleAnimationStart);
node.removeEventListener("animationcancel", handleAnimationEnd);
node.removeEventListener("animationend", handleAnimationEnd);
};
} else {
send("ANIMATION_END");
}
}, [node, send]);
return {
isPresent: ["mounted", "unmountSuspended"].includes(state),
ref: React25.useCallback((node2) => {
stylesRef.current = node2 ? getComputedStyle(node2) : null;
setNode(node2);
}, [])
};
}
function getAnimationName(styles) {
return (styles == null ? void 0 : styles.animationName) || "none";
}
function getElementRef2(element) {
var _a, _b;
let getter = (_a = Object.getOwnPropertyDescriptor(element.props, "ref")) == null ? void 0 : _a.get;
let mayWarn = getter && "isReactWarning" in getter && getter.isReactWarning;
if (mayWarn) {
return element.ref;
}
getter = (_b = Object.getOwnPropertyDescriptor(element, "ref")) == null ? void 0 : _b.get;
mayWarn = getter && "isReactWarning" in getter && getter.isReactWarning;
if (mayWarn) {
return element.props.ref;
}
return element.props.ref || element.ref;
}
// ../../node_modules/.pnpm/@radix-ui+react-roving-focus@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types_15baa560c953bc49315682e94c801f68/node_modules/@radix-ui/react-roving-focus/dist/index.mjs
var React27 = __toESM(require_react(), 1);
var import_jsx_runtime15 = __toESM(require_jsx_runtime(), 1);
var ENTRY_FOCUS = "rovingFocusGroup.onEntryFocus";
var EVENT_OPTIONS2 = { bubbles: false, cancelable: true };
var GROUP_NAME = "RovingFocusGroup";
var [Collection, useCollection, createCollectionScope] = createCollection(GROUP_NAME);
var [createRovingFocusGroupContext, createRovingFocusGroupScope] = createContextScope2(
GROUP_NAME,
[createCollectionScope]
);
var [RovingFocusProvider, useRovingFocusContext] = createRovingFocusGroupContext(GROUP_NAME);
var RovingFocusGroup = React27.forwardRef(
(props, forwardedRef) => {
return (0, import_jsx_runtime15.jsx)(Collection.Provider, { scope: props.__scopeRovingFocusGroup, children: (0, import_jsx_runtime15.jsx)(Collection.Slot, { scope: props.__scopeRovingFocusGroup, children: (0, import_jsx_runtime15.jsx)(RovingFocusGroupImpl, { ...props, ref: forwardedRef }) }) });
}
);
RovingFocusGroup.displayName = GROUP_NAME;
var RovingFocusGroupImpl = React27.forwardRef((props, forwardedRef) => {
const {
__scopeRovingFocusGroup,
orientation,
loop = false,
dir,
currentTabStopId: currentTabStopIdProp,
defaultCurrentTabStopId,
onCurrentTabStopIdChange,
onEntryFocus,
preventScrollOnEntryFocus = false,
...groupProps
} = props;
const ref = React27.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref);
const direction = useDirection(dir);
const [currentTabStopId, setCurrentTabStopId] = useControllableState({
prop: currentTabStopIdProp,
defaultProp: defaultCurrentTabStopId ?? null,
onChange: onCurrentTabStopIdChange,
caller: GROUP_NAME
});
const [isTabbingBackOut, setIsTabbingBackOut] = React27.useState(false);
const handleEntryFocus = useCallbackRef(onEntryFocus);
const getItems = useCollection(__scopeRovingFocusGroup);
const isClickFocusRef = React27.useRef(false);
const [focusableItemsCount, setFocusableItemsCount] = React27.useState(0);
React27.useEffect(() => {
const node = ref.current;
if (node) {
node.addEventListener(ENTRY_FOCUS, handleEntryFocus);
return () => node.removeEventListener(ENTRY_FOCUS, handleEntryFocus);
}
}, [handleEntryFocus]);
return (0, import_jsx_runtime15.jsx)(
RovingFocusProvider,
{
scope: __scopeRovingFocusGroup,
orientation,
dir: direction,
loop,
currentTabStopId,
onItemFocus: React27.useCallback(
(tabStopId) => setCurrentTabStopId(tabStopId),
[setCurrentTabStopId]
),
onItemShiftTab: React27.useCallback(() => setIsTabbingBackOut(true), []),
onFocusableItemAdd: React27.useCallback(
() => setFocusableItemsCount((prevCount) => prevCount + 1),
[]
),
onFocusableItemRemove: React27.useCallback(
() => setFocusableItemsCount((prevCount) => prevCount - 1),
[]
),
children: (0, import_jsx_runtime15.jsx)(
Primitive2.div,
{
tabIndex: isTabbingBackOut || focusableItemsCount === 0 ? -1 : 0,
"data-orientation": orientation,
...groupProps,
ref: composedRefs,
style: { outline: "none", ...props.style },
onMouseDown: composeEventHandlers(props.onMouseDown, () => {
isClickFocusRef.current = true;
}),
onFocus: composeEventHandlers(props.onFocus, (event) => {
const isKeyboardFocus = !isClickFocusRef.current;
if (event.target === event.currentTarget && isKeyboardFocus && !isTabbingBackOut) {
const entryFocusEvent = new CustomEvent(ENTRY_FOCUS, EVENT_OPTIONS2);
event.currentTarget.dispatchEvent(entryFocusEvent);
if (!entryFocusEvent.defaultPrevented) {
const items = getItems().filter((item) => item.focusable);
const activeItem = items.find((item) => item.active);
const currentItem = items.find((item) => item.id === currentTabStopId);
const candidateItems = [activeItem, currentItem, ...items].filter(
Boolean
);
const candidateNodes = candidateItems.map((item) => item.ref.current);
focusFirst2(candidateNodes, preventScrollOnEntryFocus);
}
}
isClickFocusRef.current = false;
}),
onBlur: composeEventHandlers(props.onBlur, () => setIsTabbingBackOut(false))
}
)
}
);
});
var ITEM_NAME = "RovingFocusGroupItem";
var RovingFocusGroupItem = React27.forwardRef(
(props, forwardedRef) => {
const {
__scopeRovingFocusGroup,
focusable = true,
active = false,
tabStopId,
children,
...itemProps
} = props;
const autoId = useId();
const id = tabStopId || autoId;
const context = useRovingFocusContext(ITEM_NAME, __scopeRovingFocusGroup);
const isCurrentTabStop = context.currentTabStopId === id;
const getItems = useCollection(__scopeRovingFocusGroup);
const { onFocusableItemAdd, onFocusableItemRemove, currentTabStopId } = context;
React27.useEffect(() => {
if (focusable) {
onFocusableItemAdd();
return () => onFocusableItemRemove();
}
}, [focusable, onFocusableItemAdd, onFocusableItemRemove]);
return (0, import_jsx_runtime15.jsx)(
Collection.ItemSlot,
{
scope: __scopeRovingFocusGroup,
id,
focusable,
active,
children: (0, import_jsx_runtime15.jsx)(
Primitive2.span,
{
tabIndex: isCurrentTabStop ? 0 : -1,
"data-orientation": context.orientation,
...itemProps,
ref: forwardedRef,
onMouseDown: composeEventHandlers(props.onMouseDown, (event) => {
if (!focusable) event.preventDefault();
else context.onItemFocus(id);
}),
onFocus: composeEventHandlers(props.onFocus, () => context.onItemFocus(id)),
onKeyDown: composeEventHandlers(props.onKeyDown, (event) => {
if (event.key === "Tab" && event.shiftKey) {
context.onItemShiftTab();
return;
}
if (event.target !== event.currentTarget) return;
const focusIntent = getFocusIntent(event, context.orientation, context.dir);
if (focusIntent !== void 0) {
if (event.metaKey || event.ctrlKey || event.altKey || event.shiftKey) return;
event.preventDefault();
const items = getItems().filter((item) => item.focusable);
let candidateNodes = items.map((item) => item.ref.current);
if (focusIntent === "last") candidateNodes.reverse();
else if (focusIntent === "prev" || focusIntent === "next") {
if (focusIntent === "prev") candidateNodes.reverse();
const currentIndex = candidateNodes.indexOf(event.currentTarget);
candidateNodes = context.loop ? wrapArray(candidateNodes, currentIndex + 1) : candidateNodes.slice(currentIndex + 1);
}
setTimeout(() => focusFirst2(candidateNodes));
}
}),
children: typeof children === "function" ? children({ isCurrentTabStop, hasTabStop: currentTabStopId != null }) : children
}
)
}
);
}
);
RovingFocusGroupItem.displayName = ITEM_NAME;
var MAP_KEY_TO_FOCUS_INTENT = {
ArrowLeft: "prev",
ArrowUp: "prev",
ArrowRight: "next",
ArrowDown: "next",
PageUp: "first",
Home: "first",
PageDown: "last",
End: "last"
};
function getDirectionAwareKey(key, dir) {
if (dir !== "rtl") return key;
return key === "ArrowLeft" ? "ArrowRight" : key === "ArrowRight" ? "ArrowLeft" : key;
}
function getFocusIntent(event, orientation, dir) {
const key = getDirectionAwareKey(event.key, dir);
if (orientation === "vertical" && ["ArrowLeft", "ArrowRight"].includes(key)) return void 0;
if (orientation === "horizontal" && ["ArrowUp", "ArrowDown"].includes(key)) return void 0;
return MAP_KEY_TO_FOCUS_INTENT[key];
}
function focusFirst2(candidates, preventScroll = false) {
const PREVIOUSLY_FOCUSED_ELEMENT = document.activeElement;
for (const candidate of candidates) {
if (candidate === PREVIOUSLY_FOCUSED_ELEMENT) return;
candidate.focus({ preventScroll });
if (document.activeElement !== PREVIOUSLY_FOCUSED_ELEMENT) return;
}
}
function wrapArray(array, startIndex) {
return array.map((_, index) => array[(startIndex + index) % array.length]);
}
var Root3 = RovingFocusGroup;
var Item = RovingFocusGroupItem;
// ../../node_modules/.pnpm/aria-hidden@1.2.6/node_modules/aria-hidden/dist/es2015/index.js
var getDefaultParent = function(originalTarget) {
if (typeof document === "undefined") {
return null;
}
var sampleTarget = Array.isArray(originalTarget) ? originalTarget[0] : originalTarget;
return sampleTarget.ownerDocument.body;
};
var counterMap = /* @__PURE__ */ new WeakMap();
var uncontrolledNodes = /* @__PURE__ */ new WeakMap();
var markerMap = {};
var lockCount = 0;
var unwrapHost = function(node) {
return node && (node.host || unwrapHost(node.parentNode));
};
var correctTargets = function(parent, targets) {
return targets.map(function(target) {
if (parent.contains(target)) {
return target;
}
var correctedTarget = unwrapHost(target);
if (correctedTarget && parent.contains(correctedTarget)) {
return correctedTarget;
}
console.error("aria-hidden", target, "in not contained inside", parent, ". Doing nothing");
return null;
}).filter(function(x) {
return Boolean(x);
});
};
var applyAttributeToOthers = function(originalTarget, parentNode, markerName, controlAttribute) {
var targets = correctTargets(parentNode, Array.isArray(originalTarget) ? originalTarget : [originalTarget]);
if (!markerMap[markerName]) {
markerMap[markerName] = /* @__PURE__ */ new WeakMap();
}
var markerCounter = markerMap[markerName];
var hiddenNodes = [];
var elementsToKeep = /* @__PURE__ */ new Set();
var elementsToStop = new Set(targets);
var keep = function(el) {
if (!el || elementsToKeep.has(el)) {
return;
}
elementsToKeep.add(el);
keep(el.parentNode);
};
targets.forEach(keep);
var deep = function(parent) {
if (!parent || elementsToStop.has(parent)) {
return;
}
Array.prototype.forEach.call(parent.children, function(node) {
if (elementsToKeep.has(node)) {
deep(node);
} else {
try {
var attr = node.getAttribute(controlAttribute);
var alreadyHidden = attr !== null && attr !== "false";
var counterValue = (counterMap.get(node) || 0) + 1;
var markerValue = (markerCounter.get(node) || 0) + 1;
counterMap.set(node, counterValue);
markerCounter.set(node, markerValue);
hiddenNodes.push(node);
if (counterValue === 1 && alreadyHidden) {
uncontrolledNodes.set(node, true);
}
if (markerValue === 1) {
node.setAttribute(markerName, "true");
}
if (!alreadyHidden) {
node.setAttribute(controlAttribute, "true");
}
} catch (e) {
console.error("aria-hidden: cannot operate on ", node, e);
}
}
});
};
deep(parentNode);
elementsToKeep.clear();
lockCount++;
return function() {
hiddenNodes.forEach(function(node) {
var counterValue = counterMap.get(node) - 1;
var markerValue = markerCounter.get(node) - 1;
counterMap.set(node, counterValue);
markerCounter.set(node, markerValue);
if (!counterValue) {
if (!uncontrolledNodes.has(node)) {
node.removeAttribute(controlAttribute);
}
uncontrolledNodes.delete(node);
}
if (!markerValue) {
node.removeAttribute(markerName);
}
});
lockCount--;
if (!lockCount) {
counterMap = /* @__PURE__ */ new WeakMap();
counterMap = /* @__PURE__ */ new WeakMap();
uncontrolledNodes = /* @__PURE__ */ new WeakMap();
markerMap = {};
}
};
};
var hideOthers = function(originalTarget, parentNode, markerName) {
if (markerName === void 0) {
markerName = "data-aria-hidden";
}
var targets = Array.from(Array.isArray(originalTarget) ? originalTarget : [originalTarget]);
var activeParentNode = parentNode || getDefaultParent(originalTarget);
if (!activeParentNode) {
return function() {
return null;
};
}
targets.push.apply(targets, Array.from(activeParentNode.querySelectorAll("[aria-live], script")));
return applyAttributeToOthers(targets, activeParentNode, markerName, "aria-hidden");
};
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/Combination.js
init_tslib_es6();
var React36 = __toESM(require_react());
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/UI.js
init_tslib_es6();
var React32 = __toESM(require_react());
// ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll-bar/dist/es2015/constants.js
var zeroRightClassName = "right-scroll-bar-position";
var fullWidthClassName = "width-before-scroll-bar";
var noScrollbarsClassName = "with-scroll-bars-hidden";
var removedBarSizeVariable = "--removed-body-scroll-bar-size";
// ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@19.2.7_react@19.2.3/node_modules/use-callback-ref/dist/es2015/assignRef.js
function assignRef(ref, value) {
if (typeof ref === "function") {
ref(value);
} else if (ref) {
ref.current = value;
}
return ref;
}
// ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@19.2.7_react@19.2.3/node_modules/use-callback-ref/dist/es2015/useRef.js
var import_react4 = __toESM(require_react());
function useCallbackRef2(initialValue, callback) {
var ref = (0, import_react4.useState)(function() {
return {
// value
value: initialValue,
// last callback
callback,
// "memoized" public interface
facade: {
get current() {
return ref.value;
},
set current(value) {
var last = ref.value;
if (last !== value) {
ref.value = value;
ref.callback(value, last);
}
}
}
};
})[0];
ref.callback = callback;
return ref.facade;
}
// ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@19.2.7_react@19.2.3/node_modules/use-callback-ref/dist/es2015/useMergeRef.js
var React28 = __toESM(require_react());
var useIsomorphicLayoutEffect2 = typeof window !== "undefined" ? React28.useLayoutEffect : React28.useEffect;
var currentValues = /* @__PURE__ */ new WeakMap();
function useMergeRefs(refs, defaultValue) {
var callbackRef = useCallbackRef2(defaultValue || null, function(newValue) {
return refs.forEach(function(ref) {
return assignRef(ref, newValue);
});
});
useIsomorphicLayoutEffect2(function() {
var oldValue = currentValues.get(callbackRef);
if (oldValue) {
var prevRefs_1 = new Set(oldValue);
var nextRefs_1 = new Set(refs);
var current_1 = callbackRef.current;
prevRefs_1.forEach(function(ref) {
if (!nextRefs_1.has(ref)) {
assignRef(ref, null);
}
});
nextRefs_1.forEach(function(ref) {
if (!prevRefs_1.has(ref)) {
assignRef(ref, current_1);
}
});
}
currentValues.set(callbackRef, refs);
}, [refs]);
return callbackRef;
}
// ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@19.2.7_react@19.2.3/node_modules/use-sidecar/dist/es2015/hoc.js
init_tslib_es6();
var React29 = __toESM(require_react());
// ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@19.2.7_react@19.2.3/node_modules/use-sidecar/dist/es2015/hook.js
var import_react5 = __toESM(require_react());
// ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@19.2.7_react@19.2.3/node_modules/use-sidecar/dist/es2015/medium.js
init_tslib_es6();
function ItoI(a) {
return a;
}
function innerCreateMedium(defaults, middleware) {
if (middleware === void 0) {
middleware = ItoI;
}
var buffer = [];
var assigned = false;
var medium = {
read: function() {
if (assigned) {
throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");
}
if (buffer.length) {
return buffer[buffer.length - 1];
}
return defaults;
},
useMedium: function(data) {
var item = middleware(data, assigned);
buffer.push(item);
return function() {
buffer = buffer.filter(function(x) {
return x !== item;
});
};
},
assignSyncMedium: function(cb) {
assigned = true;
while (buffer.length) {
var cbs = buffer;
buffer = [];
cbs.forEach(cb);
}
buffer = {
push: function(x) {
return cb(x);
},
filter: function() {
return buffer;
}
};
},
assignMedium: function(cb) {
assigned = true;
var pendingQueue = [];
if (buffer.length) {
var cbs = buffer;
buffer = [];
cbs.forEach(cb);
pendingQueue = buffer;
}
var executeQueue = function() {
var cbs2 = pendingQueue;
pendingQueue = [];
cbs2.forEach(cb);
};
var cycle = function() {
return Promise.resolve().then(executeQueue);
};
cycle();
buffer = {
push: function(x) {
pendingQueue.push(x);
cycle();
},
filter: function(filter) {
pendingQueue = pendingQueue.filter(filter);
return buffer;
}
};
}
};
return medium;
}
function createSidecarMedium(options) {
if (options === void 0) {
options = {};
}
var medium = innerCreateMedium(null);
medium.options = __assign({ async: true, ssr: false }, options);
return medium;
}
// ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@19.2.7_react@19.2.3/node_modules/use-sidecar/dist/es2015/renderProp.js
init_tslib_es6();
var React30 = __toESM(require_react());
var import_react6 = __toESM(require_react());
// ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@19.2.7_react@19.2.3/node_modules/use-sidecar/dist/es2015/exports.js
init_tslib_es6();
var React31 = __toESM(require_react());
var SideCar = function(_a) {
var sideCar = _a.sideCar, rest = __rest(_a, ["sideCar"]);
if (!sideCar) {
throw new Error("Sidecar: please provide `sideCar` property to import the right car");
}
var Target2 = sideCar.read();
if (!Target2) {
throw new Error("Sidecar medium not found");
}
return React31.createElement(Target2, __assign({}, rest));
};
SideCar.isSideCarExport = true;
function exportSidecar(medium, exported) {
medium.useMedium(exported);
return SideCar;
}
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/medium.js
var effectCar = createSidecarMedium();
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/UI.js
var nothing = function() {
return;
};
var RemoveScroll = React32.forwardRef(function(props, parentRef) {
var ref = React32.useRef(null);
var _a = React32.useState({
onScrollCapture: nothing,
onWheelCapture: nothing,
onTouchMoveCapture: nothing
}), callbacks = _a[0], setCallbacks = _a[1];
var forwardProps = props.forwardProps, children = props.children, className = props.className, removeScrollBar = props.removeScrollBar, enabled = props.enabled, shards = props.shards, sideCar = props.sideCar, noRelative = props.noRelative, noIsolation = props.noIsolation, inert = props.inert, allowPinchZoom = props.allowPinchZoom, _b = props.as, Container2 = _b === void 0 ? "div" : _b, gapMode = props.gapMode, rest = __rest(props, ["forwardProps", "children", "className", "removeScrollBar", "enabled", "shards", "sideCar", "noRelative", "noIsolation", "inert", "allowPinchZoom", "as", "gapMode"]);
var SideCar2 = sideCar;
var containerRef = useMergeRefs([ref, parentRef]);
var containerProps = __assign(__assign({}, rest), callbacks);
return React32.createElement(
React32.Fragment,
null,
enabled && React32.createElement(SideCar2, { sideCar: effectCar, removeScrollBar, shards, noRelative, noIsolation, inert, setCallbacks, allowPinchZoom: !!allowPinchZoom, lockRef: ref, gapMode }),
forwardProps ? React32.cloneElement(React32.Children.only(children), __assign(__assign({}, containerProps), { ref: containerRef })) : React32.createElement(Container2, __assign({}, containerProps, { className, ref: containerRef }), children)
);
});
RemoveScroll.defaultProps = {
enabled: true,
removeScrollBar: true,
inert: false
};
RemoveScroll.classNames = {
fullWidth: fullWidthClassName,
zeroRight: zeroRightClassName
};
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/SideEffect.js
init_tslib_es6();
var React35 = __toESM(require_react());
// ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll-bar/dist/es2015/component.js
var React34 = __toESM(require_react());
// ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.2.7_react@19.2.3/node_modules/react-style-singleton/dist/es2015/hook.js
var React33 = __toESM(require_react());
// ../../node_modules/.pnpm/get-nonce@1.0.1/node_modules/get-nonce/dist/es2015/index.js
var currentNonce;
var getNonce = function() {
if (currentNonce) {
return currentNonce;
}
if (typeof __webpack_nonce__ !== "undefined") {
return __webpack_nonce__;
}
return void 0;
};
// ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.2.7_react@19.2.3/node_modules/react-style-singleton/dist/es2015/singleton.js
function makeStyleTag() {
if (!document)
return null;
var tag = document.createElement("style");
tag.type = "text/css";
var nonce = getNonce();
if (nonce) {
tag.setAttribute("nonce", nonce);
}
return tag;
}
function injectStyles(tag, css) {
if (tag.styleSheet) {
tag.styleSheet.cssText = css;
} else {
tag.appendChild(document.createTextNode(css));
}
}
function insertStyleTag(tag) {
var head = document.head || document.getElementsByTagName("head")[0];
head.appendChild(tag);
}
var stylesheetSingleton = function() {
var counter = 0;
var stylesheet = null;
return {
add: function(style) {
if (counter == 0) {
if (stylesheet = makeStyleTag()) {
injectStyles(stylesheet, style);
insertStyleTag(stylesheet);
}
}
counter++;
},
remove: function() {
counter--;
if (!counter && stylesheet) {
stylesheet.parentNode && stylesheet.parentNode.removeChild(stylesheet);
stylesheet = null;
}
}
};
};
// ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.2.7_react@19.2.3/node_modules/react-style-singleton/dist/es2015/hook.js
var styleHookSingleton = function() {
var sheet = stylesheetSingleton();
return function(styles, isDynamic) {
React33.useEffect(function() {
sheet.add(styles);
return function() {
sheet.remove();
};
}, [styles && isDynamic]);
};
};
// ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.2.7_react@19.2.3/node_modules/react-style-singleton/dist/es2015/component.js
var styleSingleton = function() {
var useStyle = styleHookSingleton();
var Sheet2 = function(_a) {
var styles = _a.styles, dynamic = _a.dynamic;
useStyle(styles, dynamic);
return null;
};
return Sheet2;
};
// ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll-bar/dist/es2015/utils.js
var zeroGap = {
left: 0,
top: 0,
right: 0,
gap: 0
};
var parse = function(x) {
return parseInt(x || "", 10) || 0;
};
var getOffset = function(gapMode) {
var cs = window.getComputedStyle(document.body);
var left = cs[gapMode === "padding" ? "paddingLeft" : "marginLeft"];
var top = cs[gapMode === "padding" ? "paddingTop" : "marginTop"];
var right = cs[gapMode === "padding" ? "paddingRight" : "marginRight"];
return [parse(left), parse(top), parse(right)];
};
var getGapWidth = function(gapMode) {
if (gapMode === void 0) {
gapMode = "margin";
}
if (typeof window === "undefined") {
return zeroGap;
}
var offsets = getOffset(gapMode);
var documentWidth = document.documentElement.clientWidth;
var windowWidth = window.innerWidth;
return {
left: offsets[0],
top: offsets[1],
right: offsets[2],
gap: Math.max(0, windowWidth - documentWidth + offsets[2] - offsets[0])
};
};
// ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll-bar/dist/es2015/component.js
var Style = styleSingleton();
var lockAttribute = "data-scroll-locked";
var getStyles = function(_a, allowRelative, gapMode, important) {
var left = _a.left, top = _a.top, right = _a.right, gap = _a.gap;
if (gapMode === void 0) {
gapMode = "margin";
}
return "\n .".concat(noScrollbarsClassName, " {\n overflow: hidden ").concat(important, ";\n padding-right: ").concat(gap, "px ").concat(important, ";\n }\n body[").concat(lockAttribute, "] {\n overflow: hidden ").concat(important, ";\n overscroll-behavior: contain;\n ").concat([
allowRelative && "position: relative ".concat(important, ";"),
gapMode === "margin" && "\n padding-left: ".concat(left, "px;\n padding-top: ").concat(top, "px;\n padding-right: ").concat(right, "px;\n margin-left:0;\n margin-top:0;\n margin-right: ").concat(gap, "px ").concat(important, ";\n "),
gapMode === "padding" && "padding-right: ".concat(gap, "px ").concat(important, ";")
].filter(Boolean).join(""), "\n }\n \n .").concat(zeroRightClassName, " {\n right: ").concat(gap, "px ").concat(important, ";\n }\n \n .").concat(fullWidthClassName, " {\n margin-right: ").concat(gap, "px ").concat(important, ";\n }\n \n .").concat(zeroRightClassName, " .").concat(zeroRightClassName, " {\n right: 0 ").concat(important, ";\n }\n \n .").concat(fullWidthClassName, " .").concat(fullWidthClassName, " {\n margin-right: 0 ").concat(important, ";\n }\n \n body[").concat(lockAttribute, "] {\n ").concat(removedBarSizeVariable, ": ").concat(gap, "px;\n }\n");
};
var getCurrentUseCounter = function() {
var counter = parseInt(document.body.getAttribute(lockAttribute) || "0", 10);
return isFinite(counter) ? counter : 0;
};
var useLockAttribute = function() {
React34.useEffect(function() {
document.body.setAttribute(lockAttribute, (getCurrentUseCounter() + 1).toString());
return function() {
var newCounter = getCurrentUseCounter() - 1;
if (newCounter <= 0) {
document.body.removeAttribute(lockAttribute);
} else {
document.body.setAttribute(lockAttribute, newCounter.toString());
}
};
}, []);
};
var RemoveScrollBar = function(_a) {
var noRelative = _a.noRelative, noImportant = _a.noImportant, _b = _a.gapMode, gapMode = _b === void 0 ? "margin" : _b;
useLockAttribute();
var gap = React34.useMemo(function() {
return getGapWidth(gapMode);
}, [gapMode]);
return React34.createElement(Style, { styles: getStyles(gap, !noRelative, gapMode, !noImportant ? "!important" : "") });
};
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js
var passiveSupported = false;
if (typeof window !== "undefined") {
try {
options = Object.defineProperty({}, "passive", {
get: function() {
passiveSupported = true;
return true;
}
});
window.addEventListener("test", options, options);
window.removeEventListener("test", options, options);
} catch (err) {
passiveSupported = false;
}
}
var options;
var nonPassive = passiveSupported ? { passive: false } : false;
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/handleScroll.js
var alwaysContainsScroll = function(node) {
return node.tagName === "TEXTAREA";
};
var elementCanBeScrolled = function(node, overflow) {
if (!(node instanceof Element)) {
return false;
}
var styles = window.getComputedStyle(node);
return (
// not-not-scrollable
styles[overflow] !== "hidden" && // contains scroll inside self
!(styles.overflowY === styles.overflowX && !alwaysContainsScroll(node) && styles[overflow] === "visible")
);
};
var elementCouldBeVScrolled = function(node) {
return elementCanBeScrolled(node, "overflowY");
};
var elementCouldBeHScrolled = function(node) {
return elementCanBeScrolled(node, "overflowX");
};
var locationCouldBeScrolled = function(axis, node) {
var ownerDocument = node.ownerDocument;
var current = node;
do {
if (typeof ShadowRoot !== "undefined" && current instanceof ShadowRoot) {
current = current.host;
}
var isScrollable = elementCouldBeScrolled(axis, current);
if (isScrollable) {
var _a = getScrollVariables(axis, current), scrollHeight = _a[1], clientHeight = _a[2];
if (scrollHeight > clientHeight) {
return true;
}
}
current = current.parentNode;
} while (current && current !== ownerDocument.body);
return false;
};
var getVScrollVariables = function(_a) {
var scrollTop = _a.scrollTop, scrollHeight = _a.scrollHeight, clientHeight = _a.clientHeight;
return [
scrollTop,
scrollHeight,
clientHeight
];
};
var getHScrollVariables = function(_a) {
var scrollLeft = _a.scrollLeft, scrollWidth = _a.scrollWidth, clientWidth = _a.clientWidth;
return [
scrollLeft,
scrollWidth,
clientWidth
];
};
var elementCouldBeScrolled = function(axis, node) {
return axis === "v" ? elementCouldBeVScrolled(node) : elementCouldBeHScrolled(node);
};
var getScrollVariables = function(axis, node) {
return axis === "v" ? getVScrollVariables(node) : getHScrollVariables(node);
};
var getDirectionFactor = function(axis, direction) {
return axis === "h" && direction === "rtl" ? -1 : 1;
};
var handleScroll = function(axis, endTarget, event, sourceDelta, noOverscroll) {
var directionFactor = getDirectionFactor(axis, window.getComputedStyle(endTarget).direction);
var delta = directionFactor * sourceDelta;
var target = event.target;
var targetInLock = endTarget.contains(target);
var shouldCancelScroll = false;
var isDeltaPositive = delta > 0;
var availableScroll = 0;
var availableScrollTop = 0;
do {
if (!target) {
break;
}
var _a = getScrollVariables(axis, target), position = _a[0], scroll_1 = _a[1], capacity = _a[2];
var elementScroll = scroll_1 - capacity - directionFactor * position;
if (position || elementScroll) {
if (elementCouldBeScrolled(axis, target)) {
availableScroll += elementScroll;
availableScrollTop += position;
}
}
var parent_1 = target.parentNode;
target = parent_1 && parent_1.nodeType === Node.DOCUMENT_FRAGMENT_NODE ? parent_1.host : parent_1;
} while (
// portaled content
!targetInLock && target !== document.body || // self content
targetInLock && (endTarget.contains(target) || endTarget === target)
);
if (isDeltaPositive && (noOverscroll && Math.abs(availableScroll) < 1 || !noOverscroll && delta > availableScroll)) {
shouldCancelScroll = true;
} else if (!isDeltaPositive && (noOverscroll && Math.abs(availableScrollTop) < 1 || !noOverscroll && -delta > availableScrollTop)) {
shouldCancelScroll = true;
}
return shouldCancelScroll;
};
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/SideEffect.js
var getTouchXY = function(event) {
return "changedTouches" in event ? [event.changedTouches[0].clientX, event.changedTouches[0].clientY] : [0, 0];
};
var getDeltaXY = function(event) {
return [event.deltaX, event.deltaY];
};
var extractRef = function(ref) {
return ref && "current" in ref ? ref.current : ref;
};
var deltaCompare = function(x, y) {
return x[0] === y[0] && x[1] === y[1];
};
var generateStyle = function(id) {
return "\n .block-interactivity-".concat(id, " {pointer-events: none;}\n .allow-interactivity-").concat(id, " {pointer-events: all;}\n");
};
var idCounter = 0;
var lockStack = [];
function RemoveScrollSideCar(props) {
var shouldPreventQueue = React35.useRef([]);
var touchStartRef = React35.useRef([0, 0]);
var activeAxis = React35.useRef();
var id = React35.useState(idCounter++)[0];
var Style2 = React35.useState(styleSingleton)[0];
var lastProps = React35.useRef(props);
React35.useEffect(function() {
lastProps.current = props;
}, [props]);
React35.useEffect(function() {
if (props.inert) {
document.body.classList.add("block-interactivity-".concat(id));
var allow_1 = __spreadArray([props.lockRef.current], (props.shards || []).map(extractRef), true).filter(Boolean);
allow_1.forEach(function(el) {
return el.classList.add("allow-interactivity-".concat(id));
});
return function() {
document.body.classList.remove("block-interactivity-".concat(id));
allow_1.forEach(function(el) {
return el.classList.remove("allow-interactivity-".concat(id));
});
};
}
return;
}, [props.inert, props.lockRef.current, props.shards]);
var shouldCancelEvent = React35.useCallback(function(event, parent) {
if ("touches" in event && event.touches.length === 2 || event.type === "wheel" && event.ctrlKey) {
return !lastProps.current.allowPinchZoom;
}
var touch = getTouchXY(event);
var touchStart = touchStartRef.current;
var deltaX = "deltaX" in event ? event.deltaX : touchStart[0] - touch[0];
var deltaY = "deltaY" in event ? event.deltaY : touchStart[1] - touch[1];
var currentAxis;
var target = event.target;
var moveDirection = Math.abs(deltaX) > Math.abs(deltaY) ? "h" : "v";
if ("touches" in event && moveDirection === "h" && target.type === "range") {
return false;
}
var selection = window.getSelection();
var anchorNode = selection && selection.anchorNode;
var isTouchingSelection = anchorNode ? anchorNode === target || anchorNode.contains(target) : false;
if (isTouchingSelection) {
return false;
}
var canBeScrolledInMainDirection = locationCouldBeScrolled(moveDirection, target);
if (!canBeScrolledInMainDirection) {
return true;
}
if (canBeScrolledInMainDirection) {
currentAxis = moveDirection;
} else {
currentAxis = moveDirection === "v" ? "h" : "v";
canBeScrolledInMainDirection = locationCouldBeScrolled(moveDirection, target);
}
if (!canBeScrolledInMainDirection) {
return false;
}
if (!activeAxis.current && "changedTouches" in event && (deltaX || deltaY)) {
activeAxis.current = currentAxis;
}
if (!currentAxis) {
return true;
}
var cancelingAxis = activeAxis.current || currentAxis;
return handleScroll(cancelingAxis, parent, event, cancelingAxis === "h" ? deltaX : deltaY, true);
}, []);
var shouldPrevent = React35.useCallback(function(_event) {
var event = _event;
if (!lockStack.length || lockStack[lockStack.length - 1] !== Style2) {
return;
}
var delta = "deltaY" in event ? getDeltaXY(event) : getTouchXY(event);
var sourceEvent = shouldPreventQueue.current.filter(function(e) {
return e.name === event.type && (e.target === event.target || event.target === e.shadowParent) && deltaCompare(e.delta, delta);
})[0];
if (sourceEvent && sourceEvent.should) {
if (event.cancelable) {
event.preventDefault();
}
return;
}
if (!sourceEvent) {
var shardNodes = (lastProps.current.shards || []).map(extractRef).filter(Boolean).filter(function(node) {
return node.contains(event.target);
});
var shouldStop = shardNodes.length > 0 ? shouldCancelEvent(event, shardNodes[0]) : !lastProps.current.noIsolation;
if (shouldStop) {
if (event.cancelable) {
event.preventDefault();
}
}
}
}, []);
var shouldCancel = React35.useCallback(function(name, delta, target, should) {
var event = { name, delta, target, should, shadowParent: getOutermostShadowParent(target) };
shouldPreventQueue.current.push(event);
setTimeout(function() {
shouldPreventQueue.current = shouldPreventQueue.current.filter(function(e) {
return e !== event;
});
}, 1);
}, []);
var scrollTouchStart = React35.useCallback(function(event) {
touchStartRef.current = getTouchXY(event);
activeAxis.current = void 0;
}, []);
var scrollWheel = React35.useCallback(function(event) {
shouldCancel(event.type, getDeltaXY(event), event.target, shouldCancelEvent(event, props.lockRef.current));
}, []);
var scrollTouchMove = React35.useCallback(function(event) {
shouldCancel(event.type, getTouchXY(event), event.target, shouldCancelEvent(event, props.lockRef.current));
}, []);
React35.useEffect(function() {
lockStack.push(Style2);
props.setCallbacks({
onScrollCapture: scrollWheel,
onWheelCapture: scrollWheel,
onTouchMoveCapture: scrollTouchMove
});
document.addEventListener("wheel", shouldPrevent, nonPassive);
document.addEventListener("touchmove", shouldPrevent, nonPassive);
document.addEventListener("touchstart", scrollTouchStart, nonPassive);
return function() {
lockStack = lockStack.filter(function(inst) {
return inst !== Style2;
});
document.removeEventListener("wheel", shouldPrevent, nonPassive);
document.removeEventListener("touchmove", shouldPrevent, nonPassive);
document.removeEventListener("touchstart", scrollTouchStart, nonPassive);
};
}, []);
var removeScrollBar = props.removeScrollBar, inert = props.inert;
return React35.createElement(
React35.Fragment,
null,
inert ? React35.createElement(Style2, { styles: generateStyle(id) }) : null,
removeScrollBar ? React35.createElement(RemoveScrollBar, { noRelative: props.noRelative, gapMode: props.gapMode }) : null
);
}
function getOutermostShadowParent(node) {
var shadowParent = null;
while (node !== null) {
if (node instanceof ShadowRoot) {
shadowParent = node.host;
node = node.host;
}
node = node.parentNode;
}
return shadowParent;
}
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/sidecar.js
var sidecar_default = exportSidecar(effectCar, RemoveScrollSideCar);
// ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.7_react@19.2.3/node_modules/react-remove-scroll/dist/es2015/Combination.js
var ReactRemoveScroll = React36.forwardRef(function(props, ref) {
return React36.createElement(RemoveScroll, __assign({}, props, { ref, sideCar: sidecar_default }));
});
ReactRemoveScroll.classNames = RemoveScroll.classNames;
var Combination_default = ReactRemoveScroll;
// ../../node_modules/.pnpm/@radix-ui+react-menu@2.1.16_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_29de2434e7d88997dbc2ca0d34462146/node_modules/@radix-ui/react-menu/dist/index.mjs
var import_jsx_runtime16 = __toESM(require_jsx_runtime(), 1);
var SELECTION_KEYS = ["Enter", " "];
var FIRST_KEYS = ["ArrowDown", "PageUp", "Home"];
var LAST_KEYS = ["ArrowUp", "PageDown", "End"];
var FIRST_LAST_KEYS = [...FIRST_KEYS, ...LAST_KEYS];
var SUB_OPEN_KEYS = {
ltr: [...SELECTION_KEYS, "ArrowRight"],
rtl: [...SELECTION_KEYS, "ArrowLeft"]
};
var SUB_CLOSE_KEYS = {
ltr: ["ArrowLeft"],
rtl: ["ArrowRight"]
};
var MENU_NAME = "Menu";
var [Collection2, useCollection2, createCollectionScope2] = createCollection(MENU_NAME);
var [createMenuContext, createMenuScope] = createContextScope2(MENU_NAME, [
createCollectionScope2,
createPopperScope,
createRovingFocusGroupScope
]);
var usePopperScope = createPopperScope();
var useRovingFocusGroupScope = createRovingFocusGroupScope();
var [MenuProvider, useMenuContext] = createMenuContext(MENU_NAME);
var [MenuRootProvider, useMenuRootContext] = createMenuContext(MENU_NAME);
var Menu = (props) => {
const { __scopeMenu, open = false, children, dir, onOpenChange, modal = true } = props;
const popperScope = usePopperScope(__scopeMenu);
const [content, setContent] = React37.useState(null);
const isUsingKeyboardRef = React37.useRef(false);
const handleOpenChange = useCallbackRef(onOpenChange);
const direction = useDirection(dir);
React37.useEffect(() => {
const handleKeyDown = () => {
isUsingKeyboardRef.current = true;
document.addEventListener("pointerdown", handlePointer, { capture: true, once: true });
document.addEventListener("pointermove", handlePointer, { capture: true, once: true });
};
const handlePointer = () => isUsingKeyboardRef.current = false;
document.addEventListener("keydown", handleKeyDown, { capture: true });
return () => {
document.removeEventListener("keydown", handleKeyDown, { capture: true });
document.removeEventListener("pointerdown", handlePointer, { capture: true });
document.removeEventListener("pointermove", handlePointer, { capture: true });
};
}, []);
return (0, import_jsx_runtime16.jsx)(Root22, { ...popperScope, children: (0, import_jsx_runtime16.jsx)(
MenuProvider,
{
scope: __scopeMenu,
open,
onOpenChange: handleOpenChange,
content,
onContentChange: setContent,
children: (0, import_jsx_runtime16.jsx)(
MenuRootProvider,
{
scope: __scopeMenu,
onClose: React37.useCallback(() => handleOpenChange(false), [handleOpenChange]),
isUsingKeyboardRef,
dir: direction,
modal,
children
}
)
}
) });
};
Menu.displayName = MENU_NAME;
var ANCHOR_NAME2 = "MenuAnchor";
var MenuAnchor = React37.forwardRef(
(props, forwardedRef) => {
const { __scopeMenu, ...anchorProps } = props;
const popperScope = usePopperScope(__scopeMenu);
return (0, import_jsx_runtime16.jsx)(Anchor, { ...popperScope, ...anchorProps, ref: forwardedRef });
}
);
MenuAnchor.displayName = ANCHOR_NAME2;
var PORTAL_NAME2 = "MenuPortal";
var [PortalProvider, usePortalContext] = createMenuContext(PORTAL_NAME2, {
forceMount: void 0
});
var MenuPortal = (props) => {
const { __scopeMenu, forceMount, children, container } = props;
const context = useMenuContext(PORTAL_NAME2, __scopeMenu);
return (0, import_jsx_runtime16.jsx)(PortalProvider, { scope: __scopeMenu, forceMount, children: (0, import_jsx_runtime16.jsx)(Presence, { present: forceMount || context.open, children: (0, import_jsx_runtime16.jsx)(Portal, { asChild: true, container, children }) }) });
};
MenuPortal.displayName = PORTAL_NAME2;
var CONTENT_NAME2 = "MenuContent";
var [MenuContentProvider, useMenuContentContext] = createMenuContext(CONTENT_NAME2);
var MenuContent = React37.forwardRef(
(props, forwardedRef) => {
const portalContext = usePortalContext(CONTENT_NAME2, props.__scopeMenu);
const { forceMount = portalContext.forceMount, ...contentProps } = props;
const context = useMenuContext(CONTENT_NAME2, props.__scopeMenu);
const rootContext = useMenuRootContext(CONTENT_NAME2, props.__scopeMenu);
return (0, import_jsx_runtime16.jsx)(Collection2.Provider, { scope: props.__scopeMenu, children: (0, import_jsx_runtime16.jsx)(Presence, { present: forceMount || context.open, children: (0, import_jsx_runtime16.jsx)(Collection2.Slot, { scope: props.__scopeMenu, children: rootContext.modal ? (0, import_jsx_runtime16.jsx)(MenuRootContentModal, { ...contentProps, ref: forwardedRef }) : (0, import_jsx_runtime16.jsx)(MenuRootContentNonModal, { ...contentProps, ref: forwardedRef }) }) }) });
}
);
var MenuRootContentModal = React37.forwardRef(
(props, forwardedRef) => {
const context = useMenuContext(CONTENT_NAME2, props.__scopeMenu);
const ref = React37.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref);
React37.useEffect(() => {
const content = ref.current;
if (content) return hideOthers(content);
}, []);
return (0, import_jsx_runtime16.jsx)(
MenuContentImpl,
{
...props,
ref: composedRefs,
trapFocus: context.open,
disableOutsidePointerEvents: context.open,
disableOutsideScroll: true,
onFocusOutside: composeEventHandlers(
props.onFocusOutside,
(event) => event.preventDefault(),
{ checkForDefaultPrevented: false }
),
onDismiss: () => context.onOpenChange(false)
}
);
}
);
var MenuRootContentNonModal = React37.forwardRef((props, forwardedRef) => {
const context = useMenuContext(CONTENT_NAME2, props.__scopeMenu);
return (0, import_jsx_runtime16.jsx)(
MenuContentImpl,
{
...props,
ref: forwardedRef,
trapFocus: false,
disableOutsidePointerEvents: false,
disableOutsideScroll: false,
onDismiss: () => context.onOpenChange(false)
}
);
});
var Slot3 = createSlot2("MenuContent.ScrollLock");
var MenuContentImpl = React37.forwardRef(
(props, forwardedRef) => {
const {
__scopeMenu,
loop = false,
trapFocus,
onOpenAutoFocus,
onCloseAutoFocus,
disableOutsidePointerEvents,
onEntryFocus,
onEscapeKeyDown,
onPointerDownOutside,
onFocusOutside,
onInteractOutside,
onDismiss,
disableOutsideScroll,
...contentProps
} = props;
const context = useMenuContext(CONTENT_NAME2, __scopeMenu);
const rootContext = useMenuRootContext(CONTENT_NAME2, __scopeMenu);
const popperScope = usePopperScope(__scopeMenu);
const rovingFocusGroupScope = useRovingFocusGroupScope(__scopeMenu);
const getItems = useCollection2(__scopeMenu);
const [currentItemId, setCurrentItemId] = React37.useState(null);
const contentRef = React37.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, contentRef, context.onContentChange);
const timerRef = React37.useRef(0);
const searchRef = React37.useRef("");
const pointerGraceTimerRef = React37.useRef(0);
const pointerGraceIntentRef = React37.useRef(null);
const pointerDirRef = React37.useRef("right");
const lastPointerXRef = React37.useRef(0);
const ScrollLockWrapper = disableOutsideScroll ? Combination_default : React37.Fragment;
const scrollLockWrapperProps = disableOutsideScroll ? { as: Slot3, allowPinchZoom: true } : void 0;
const handleTypeaheadSearch = (key) => {
var _a, _b;
const search = searchRef.current + key;
const items = getItems().filter((item) => !item.disabled);
const currentItem = document.activeElement;
const currentMatch = (_a = items.find((item) => item.ref.current === currentItem)) == null ? void 0 : _a.textValue;
const values = items.map((item) => item.textValue);
const nextMatch = getNextMatch(values, search, currentMatch);
const newItem = (_b = items.find((item) => item.textValue === nextMatch)) == null ? void 0 : _b.ref.current;
(function updateSearch(value) {
searchRef.current = value;
window.clearTimeout(timerRef.current);
if (value !== "") timerRef.current = window.setTimeout(() => updateSearch(""), 1e3);
})(search);
if (newItem) {
setTimeout(() => newItem.focus());
}
};
React37.useEffect(() => {
return () => window.clearTimeout(timerRef.current);
}, []);
useFocusGuards();
const isPointerMovingToSubmenu = React37.useCallback((event) => {
var _a, _b;
const isMovingTowards = pointerDirRef.current === ((_a = pointerGraceIntentRef.current) == null ? void 0 : _a.side);
return isMovingTowards && isPointerInGraceArea(event, (_b = pointerGraceIntentRef.current) == null ? void 0 : _b.area);
}, []);
return (0, import_jsx_runtime16.jsx)(
MenuContentProvider,
{
scope: __scopeMenu,
searchRef,
onItemEnter: React37.useCallback(
(event) => {
if (isPointerMovingToSubmenu(event)) event.preventDefault();
},
[isPointerMovingToSubmenu]
),
onItemLeave: React37.useCallback(
(event) => {
var _a;
if (isPointerMovingToSubmenu(event)) return;
(_a = contentRef.current) == null ? void 0 : _a.focus();
setCurrentItemId(null);
},
[isPointerMovingToSubmenu]
),
onTriggerLeave: React37.useCallback(
(event) => {
if (isPointerMovingToSubmenu(event)) event.preventDefault();
},
[isPointerMovingToSubmenu]
),
pointerGraceTimerRef,
onPointerGraceIntentChange: React37.useCallback((intent) => {
pointerGraceIntentRef.current = intent;
}, []),
children: (0, import_jsx_runtime16.jsx)(ScrollLockWrapper, { ...scrollLockWrapperProps, children: (0, import_jsx_runtime16.jsx)(
FocusScope,
{
asChild: true,
trapped: trapFocus,
onMountAutoFocus: composeEventHandlers(onOpenAutoFocus, (event) => {
var _a;
event.preventDefault();
(_a = contentRef.current) == null ? void 0 : _a.focus({ preventScroll: true });
}),
onUnmountAutoFocus: onCloseAutoFocus,
children: (0, import_jsx_runtime16.jsx)(
DismissableLayer,
{
asChild: true,
disableOutsidePointerEvents,
onEscapeKeyDown,
onPointerDownOutside,
onFocusOutside,
onInteractOutside,
onDismiss,
children: (0, import_jsx_runtime16.jsx)(
Root3,
{
asChild: true,
...rovingFocusGroupScope,
dir: rootContext.dir,
orientation: "vertical",
loop,
currentTabStopId: currentItemId,
onCurrentTabStopIdChange: setCurrentItemId,
onEntryFocus: composeEventHandlers(onEntryFocus, (event) => {
if (!rootContext.isUsingKeyboardRef.current) event.preventDefault();
}),
preventScrollOnEntryFocus: true,
children: (0, import_jsx_runtime16.jsx)(
Content,
{
role: "menu",
"aria-orientation": "vertical",
"data-state": getOpenState(context.open),
"data-radix-menu-content": "",
dir: rootContext.dir,
...popperScope,
...contentProps,
ref: composedRefs,
style: { outline: "none", ...contentProps.style },
onKeyDown: composeEventHandlers(contentProps.onKeyDown, (event) => {
const target = event.target;
const isKeyDownInside = target.closest("[data-radix-menu-content]") === event.currentTarget;
const isModifierKey = event.ctrlKey || event.altKey || event.metaKey;
const isCharacterKey = event.key.length === 1;
if (isKeyDownInside) {
if (event.key === "Tab") event.preventDefault();
if (!isModifierKey && isCharacterKey) handleTypeaheadSearch(event.key);
}
const content = contentRef.current;
if (event.target !== content) return;
if (!FIRST_LAST_KEYS.includes(event.key)) return;
event.preventDefault();
const items = getItems().filter((item) => !item.disabled);
const candidateNodes = items.map((item) => item.ref.current);
if (LAST_KEYS.includes(event.key)) candidateNodes.reverse();
focusFirst3(candidateNodes);
}),
onBlur: composeEventHandlers(props.onBlur, (event) => {
if (!event.currentTarget.contains(event.target)) {
window.clearTimeout(timerRef.current);
searchRef.current = "";
}
}),
onPointerMove: composeEventHandlers(
props.onPointerMove,
whenMouse((event) => {
const target = event.target;
const pointerXHasChanged = lastPointerXRef.current !== event.clientX;
if (event.currentTarget.contains(target) && pointerXHasChanged) {
const newDir = event.clientX > lastPointerXRef.current ? "right" : "left";
pointerDirRef.current = newDir;
lastPointerXRef.current = event.clientX;
}
})
)
}
)
}
)
}
)
}
) })
}
);
}
);
MenuContent.displayName = CONTENT_NAME2;
var GROUP_NAME2 = "MenuGroup";
var MenuGroup = React37.forwardRef(
(props, forwardedRef) => {
const { __scopeMenu, ...groupProps } = props;
return (0, import_jsx_runtime16.jsx)(Primitive2.div, { role: "group", ...groupProps, ref: forwardedRef });
}
);
MenuGroup.displayName = GROUP_NAME2;
var LABEL_NAME = "MenuLabel";
var MenuLabel = React37.forwardRef(
(props, forwardedRef) => {
const { __scopeMenu, ...labelProps } = props;
return (0, import_jsx_runtime16.jsx)(Primitive2.div, { ...labelProps, ref: forwardedRef });
}
);
MenuLabel.displayName = LABEL_NAME;
var ITEM_NAME2 = "MenuItem";
var ITEM_SELECT = "menu.itemSelect";
var MenuItem = React37.forwardRef(
(props, forwardedRef) => {
const { disabled = false, onSelect, ...itemProps } = props;
const ref = React37.useRef(null);
const rootContext = useMenuRootContext(ITEM_NAME2, props.__scopeMenu);
const contentContext = useMenuContentContext(ITEM_NAME2, props.__scopeMenu);
const composedRefs = useComposedRefs(forwardedRef, ref);
const isPointerDownRef = React37.useRef(false);
const handleSelect = () => {
const menuItem = ref.current;
if (!disabled && menuItem) {
const itemSelectEvent = new CustomEvent(ITEM_SELECT, { bubbles: true, cancelable: true });
menuItem.addEventListener(ITEM_SELECT, (event) => onSelect == null ? void 0 : onSelect(event), { once: true });
dispatchDiscreteCustomEvent(menuItem, itemSelectEvent);
if (itemSelectEvent.defaultPrevented) {
isPointerDownRef.current = false;
} else {
rootContext.onClose();
}
}
};
return (0, import_jsx_runtime16.jsx)(
MenuItemImpl,
{
...itemProps,
ref: composedRefs,
disabled,
onClick: composeEventHandlers(props.onClick, handleSelect),
onPointerDown: (event) => {
var _a;
(_a = props.onPointerDown) == null ? void 0 : _a.call(props, event);
isPointerDownRef.current = true;
},
onPointerUp: composeEventHandlers(props.onPointerUp, (event) => {
var _a;
if (!isPointerDownRef.current) (_a = event.currentTarget) == null ? void 0 : _a.click();
}),
onKeyDown: composeEventHandlers(props.onKeyDown, (event) => {
const isTypingAhead = contentContext.searchRef.current !== "";
if (disabled || isTypingAhead && event.key === " ") return;
if (SELECTION_KEYS.includes(event.key)) {
event.currentTarget.click();
event.preventDefault();
}
})
}
);
}
);
MenuItem.displayName = ITEM_NAME2;
var MenuItemImpl = React37.forwardRef(
(props, forwardedRef) => {
const { __scopeMenu, disabled = false, textValue, ...itemProps } = props;
const contentContext = useMenuContentContext(ITEM_NAME2, __scopeMenu);
const rovingFocusGroupScope = useRovingFocusGroupScope(__scopeMenu);
const ref = React37.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref);
const [isFocused, setIsFocused] = React37.useState(false);
const [textContent, setTextContent] = React37.useState("");
React37.useEffect(() => {
const menuItem = ref.current;
if (menuItem) {
setTextContent((menuItem.textContent ?? "").trim());
}
}, [itemProps.children]);
return (0, import_jsx_runtime16.jsx)(
Collection2.ItemSlot,
{
scope: __scopeMenu,
disabled,
textValue: textValue ?? textContent,
children: (0, import_jsx_runtime16.jsx)(Item, { asChild: true, ...rovingFocusGroupScope, focusable: !disabled, children: (0, import_jsx_runtime16.jsx)(
Primitive2.div,
{
role: "menuitem",
"data-highlighted": isFocused ? "" : void 0,
"aria-disabled": disabled || void 0,
"data-disabled": disabled ? "" : void 0,
...itemProps,
ref: composedRefs,
onPointerMove: composeEventHandlers(
props.onPointerMove,
whenMouse((event) => {
if (disabled) {
contentContext.onItemLeave(event);
} else {
contentContext.onItemEnter(event);
if (!event.defaultPrevented) {
const item = event.currentTarget;
item.focus({ preventScroll: true });
}
}
})
),
onPointerLeave: composeEventHandlers(
props.onPointerLeave,
whenMouse((event) => contentContext.onItemLeave(event))
),
onFocus: composeEventHandlers(props.onFocus, () => setIsFocused(true)),
onBlur: composeEventHandlers(props.onBlur, () => setIsFocused(false))
}
) })
}
);
}
);
var CHECKBOX_ITEM_NAME = "MenuCheckboxItem";
var MenuCheckboxItem = React37.forwardRef(
(props, forwardedRef) => {
const { checked = false, onCheckedChange, ...checkboxItemProps } = props;
return (0, import_jsx_runtime16.jsx)(ItemIndicatorProvider, { scope: props.__scopeMenu, checked, children: (0, import_jsx_runtime16.jsx)(
MenuItem,
{
role: "menuitemcheckbox",
"aria-checked": isIndeterminate(checked) ? "mixed" : checked,
...checkboxItemProps,
ref: forwardedRef,
"data-state": getCheckedState(checked),
onSelect: composeEventHandlers(
checkboxItemProps.onSelect,
() => onCheckedChange == null ? void 0 : onCheckedChange(isIndeterminate(checked) ? true : !checked),
{ checkForDefaultPrevented: false }
)
}
) });
}
);
MenuCheckboxItem.displayName = CHECKBOX_ITEM_NAME;
var RADIO_GROUP_NAME = "MenuRadioGroup";
var [RadioGroupProvider, useRadioGroupContext] = createMenuContext(
RADIO_GROUP_NAME,
{ value: void 0, onValueChange: () => {
} }
);
var MenuRadioGroup = React37.forwardRef(
(props, forwardedRef) => {
const { value, onValueChange, ...groupProps } = props;
const handleValueChange = useCallbackRef(onValueChange);
return (0, import_jsx_runtime16.jsx)(RadioGroupProvider, { scope: props.__scopeMenu, value, onValueChange: handleValueChange, children: (0, import_jsx_runtime16.jsx)(MenuGroup, { ...groupProps, ref: forwardedRef }) });
}
);
MenuRadioGroup.displayName = RADIO_GROUP_NAME;
var RADIO_ITEM_NAME = "MenuRadioItem";
var MenuRadioItem = React37.forwardRef(
(props, forwardedRef) => {
const { value, ...radioItemProps } = props;
const context = useRadioGroupContext(RADIO_ITEM_NAME, props.__scopeMenu);
const checked = value === context.value;
return (0, import_jsx_runtime16.jsx)(ItemIndicatorProvider, { scope: props.__scopeMenu, checked, children: (0, import_jsx_runtime16.jsx)(
MenuItem,
{
role: "menuitemradio",
"aria-checked": checked,
...radioItemProps,
ref: forwardedRef,
"data-state": getCheckedState(checked),
onSelect: composeEventHandlers(
radioItemProps.onSelect,
() => {
var _a;
return (_a = context.onValueChange) == null ? void 0 : _a.call(context, value);
},
{ checkForDefaultPrevented: false }
)
}
) });
}
);
MenuRadioItem.displayName = RADIO_ITEM_NAME;
var ITEM_INDICATOR_NAME = "MenuItemIndicator";
var [ItemIndicatorProvider, useItemIndicatorContext] = createMenuContext(
ITEM_INDICATOR_NAME,
{ checked: false }
);
var MenuItemIndicator = React37.forwardRef(
(props, forwardedRef) => {
const { __scopeMenu, forceMount, ...itemIndicatorProps } = props;
const indicatorContext = useItemIndicatorContext(ITEM_INDICATOR_NAME, __scopeMenu);
return (0, import_jsx_runtime16.jsx)(
Presence,
{
present: forceMount || isIndeterminate(indicatorContext.checked) || indicatorContext.checked === true,
children: (0, import_jsx_runtime16.jsx)(
Primitive2.span,
{
...itemIndicatorProps,
ref: forwardedRef,
"data-state": getCheckedState(indicatorContext.checked)
}
)
}
);
}
);
MenuItemIndicator.displayName = ITEM_INDICATOR_NAME;
var SEPARATOR_NAME = "MenuSeparator";
var MenuSeparator = React37.forwardRef(
(props, forwardedRef) => {
const { __scopeMenu, ...separatorProps } = props;
return (0, import_jsx_runtime16.jsx)(
Primitive2.div,
{
role: "separator",
"aria-orientation": "horizontal",
...separatorProps,
ref: forwardedRef
}
);
}
);
MenuSeparator.displayName = SEPARATOR_NAME;
var ARROW_NAME2 = "MenuArrow";
var MenuArrow = React37.forwardRef(
(props, forwardedRef) => {
const { __scopeMenu, ...arrowProps } = props;
const popperScope = usePopperScope(__scopeMenu);
return (0, import_jsx_runtime16.jsx)(Arrow2, { ...popperScope, ...arrowProps, ref: forwardedRef });
}
);
MenuArrow.displayName = ARROW_NAME2;
var SUB_NAME = "MenuSub";
var [MenuSubProvider, useMenuSubContext] = createMenuContext(SUB_NAME);
var MenuSub = (props) => {
const { __scopeMenu, children, open = false, onOpenChange } = props;
const parentMenuContext = useMenuContext(SUB_NAME, __scopeMenu);
const popperScope = usePopperScope(__scopeMenu);
const [trigger, setTrigger] = React37.useState(null);
const [content, setContent] = React37.useState(null);
const handleOpenChange = useCallbackRef(onOpenChange);
React37.useEffect(() => {
if (parentMenuContext.open === false) handleOpenChange(false);
return () => handleOpenChange(false);
}, [parentMenuContext.open, handleOpenChange]);
return (0, import_jsx_runtime16.jsx)(Root22, { ...popperScope, children: (0, import_jsx_runtime16.jsx)(
MenuProvider,
{
scope: __scopeMenu,
open,
onOpenChange: handleOpenChange,
content,
onContentChange: setContent,
children: (0, import_jsx_runtime16.jsx)(
MenuSubProvider,
{
scope: __scopeMenu,
contentId: useId(),
triggerId: useId(),
trigger,
onTriggerChange: setTrigger,
children
}
)
}
) });
};
MenuSub.displayName = SUB_NAME;
var SUB_TRIGGER_NAME = "MenuSubTrigger";
var MenuSubTrigger = React37.forwardRef(
(props, forwardedRef) => {
const context = useMenuContext(SUB_TRIGGER_NAME, props.__scopeMenu);
const rootContext = useMenuRootContext(SUB_TRIGGER_NAME, props.__scopeMenu);
const subContext = useMenuSubContext(SUB_TRIGGER_NAME, props.__scopeMenu);
const contentContext = useMenuContentContext(SUB_TRIGGER_NAME, props.__scopeMenu);
const openTimerRef = React37.useRef(null);
const { pointerGraceTimerRef, onPointerGraceIntentChange } = contentContext;
const scope = { __scopeMenu: props.__scopeMenu };
const clearOpenTimer = React37.useCallback(() => {
if (openTimerRef.current) window.clearTimeout(openTimerRef.current);
openTimerRef.current = null;
}, []);
React37.useEffect(() => clearOpenTimer, [clearOpenTimer]);
React37.useEffect(() => {
const pointerGraceTimer = pointerGraceTimerRef.current;
return () => {
window.clearTimeout(pointerGraceTimer);
onPointerGraceIntentChange(null);
};
}, [pointerGraceTimerRef, onPointerGraceIntentChange]);
return (0, import_jsx_runtime16.jsx)(MenuAnchor, { asChild: true, ...scope, children: (0, import_jsx_runtime16.jsx)(
MenuItemImpl,
{
id: subContext.triggerId,
"aria-haspopup": "menu",
"aria-expanded": context.open,
"aria-controls": subContext.contentId,
"data-state": getOpenState(context.open),
...props,
ref: composeRefs(forwardedRef, subContext.onTriggerChange),
onClick: (event) => {
var _a;
(_a = props.onClick) == null ? void 0 : _a.call(props, event);
if (props.disabled || event.defaultPrevented) return;
event.currentTarget.focus();
if (!context.open) context.onOpenChange(true);
},
onPointerMove: composeEventHandlers(
props.onPointerMove,
whenMouse((event) => {
contentContext.onItemEnter(event);
if (event.defaultPrevented) return;
if (!props.disabled && !context.open && !openTimerRef.current) {
contentContext.onPointerGraceIntentChange(null);
openTimerRef.current = window.setTimeout(() => {
context.onOpenChange(true);
clearOpenTimer();
}, 100);
}
})
),
onPointerLeave: composeEventHandlers(
props.onPointerLeave,
whenMouse((event) => {
var _a, _b;
clearOpenTimer();
const contentRect = (_a = context.content) == null ? void 0 : _a.getBoundingClientRect();
if (contentRect) {
const side = (_b = context.content) == null ? void 0 : _b.dataset.side;
const rightSide = side === "right";
const bleed = rightSide ? -5 : 5;
const contentNearEdge = contentRect[rightSide ? "left" : "right"];
const contentFarEdge = contentRect[rightSide ? "right" : "left"];
contentContext.onPointerGraceIntentChange({
area: [
// Apply a bleed on clientX to ensure that our exit point is
// consistently within polygon bounds
{ x: event.clientX + bleed, y: event.clientY },
{ x: contentNearEdge, y: contentRect.top },
{ x: contentFarEdge, y: contentRect.top },
{ x: contentFarEdge, y: contentRect.bottom },
{ x: contentNearEdge, y: contentRect.bottom }
],
side
});
window.clearTimeout(pointerGraceTimerRef.current);
pointerGraceTimerRef.current = window.setTimeout(
() => contentContext.onPointerGraceIntentChange(null),
300
);
} else {
contentContext.onTriggerLeave(event);
if (event.defaultPrevented) return;
contentContext.onPointerGraceIntentChange(null);
}
})
),
onKeyDown: composeEventHandlers(props.onKeyDown, (event) => {
var _a;
const isTypingAhead = contentContext.searchRef.current !== "";
if (props.disabled || isTypingAhead && event.key === " ") return;
if (SUB_OPEN_KEYS[rootContext.dir].includes(event.key)) {
context.onOpenChange(true);
(_a = context.content) == null ? void 0 : _a.focus();
event.preventDefault();
}
})
}
) });
}
);
MenuSubTrigger.displayName = SUB_TRIGGER_NAME;
var SUB_CONTENT_NAME = "MenuSubContent";
var MenuSubContent = React37.forwardRef(
(props, forwardedRef) => {
const portalContext = usePortalContext(CONTENT_NAME2, props.__scopeMenu);
const { forceMount = portalContext.forceMount, ...subContentProps } = props;
const context = useMenuContext(CONTENT_NAME2, props.__scopeMenu);
const rootContext = useMenuRootContext(CONTENT_NAME2, props.__scopeMenu);
const subContext = useMenuSubContext(SUB_CONTENT_NAME, props.__scopeMenu);
const ref = React37.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref);
return (0, import_jsx_runtime16.jsx)(Collection2.Provider, { scope: props.__scopeMenu, children: (0, import_jsx_runtime16.jsx)(Presence, { present: forceMount || context.open, children: (0, import_jsx_runtime16.jsx)(Collection2.Slot, { scope: props.__scopeMenu, children: (0, import_jsx_runtime16.jsx)(
MenuContentImpl,
{
id: subContext.contentId,
"aria-labelledby": subContext.triggerId,
...subContentProps,
ref: composedRefs,
align: "start",
side: rootContext.dir === "rtl" ? "left" : "right",
disableOutsidePointerEvents: false,
disableOutsideScroll: false,
trapFocus: false,
onOpenAutoFocus: (event) => {
var _a;
if (rootContext.isUsingKeyboardRef.current) (_a = ref.current) == null ? void 0 : _a.focus();
event.preventDefault();
},
onCloseAutoFocus: (event) => event.preventDefault(),
onFocusOutside: composeEventHandlers(props.onFocusOutside, (event) => {
if (event.target !== subContext.trigger) context.onOpenChange(false);
}),
onEscapeKeyDown: composeEventHandlers(props.onEscapeKeyDown, (event) => {
rootContext.onClose();
event.preventDefault();
}),
onKeyDown: composeEventHandlers(props.onKeyDown, (event) => {
var _a;
const isKeyDownInside = event.currentTarget.contains(event.target);
const isCloseKey = SUB_CLOSE_KEYS[rootContext.dir].includes(event.key);
if (isKeyDownInside && isCloseKey) {
context.onOpenChange(false);
(_a = subContext.trigger) == null ? void 0 : _a.focus();
event.preventDefault();
}
})
}
) }) }) });
}
);
MenuSubContent.displayName = SUB_CONTENT_NAME;
function getOpenState(open) {
return open ? "open" : "closed";
}
function isIndeterminate(checked) {
return checked === "indeterminate";
}
function getCheckedState(checked) {
return isIndeterminate(checked) ? "indeterminate" : checked ? "checked" : "unchecked";
}
function focusFirst3(candidates) {
const PREVIOUSLY_FOCUSED_ELEMENT = document.activeElement;
for (const candidate of candidates) {
if (candidate === PREVIOUSLY_FOCUSED_ELEMENT) return;
candidate.focus();
if (document.activeElement !== PREVIOUSLY_FOCUSED_ELEMENT) return;
}
}
function wrapArray2(array, startIndex) {
return array.map((_, index) => array[(startIndex + index) % array.length]);
}
function getNextMatch(values, search, currentMatch) {
const isRepeated = search.length > 1 && Array.from(search).every((char) => char === search[0]);
const normalizedSearch = isRepeated ? search[0] : search;
const currentMatchIndex = currentMatch ? values.indexOf(currentMatch) : -1;
let wrappedValues = wrapArray2(values, Math.max(currentMatchIndex, 0));
const excludeCurrentMatch = normalizedSearch.length === 1;
if (excludeCurrentMatch) wrappedValues = wrappedValues.filter((v2) => v2 !== currentMatch);
const nextMatch = wrappedValues.find(
(value) => value.toLowerCase().startsWith(normalizedSearch.toLowerCase())
);
return nextMatch !== currentMatch ? nextMatch : void 0;
}
function isPointInPolygon(point, polygon) {
const { x, y } = point;
let inside = false;
for (let i = 0, j = polygon.length - 1; i < polygon.length; j = i++) {
const ii = polygon[i];
const jj = polygon[j];
const xi = ii.x;
const yi = ii.y;
const xj = jj.x;
const yj = jj.y;
const intersect = yi > y !== yj > y && x < (xj - xi) * (y - yi) / (yj - yi) + xi;
if (intersect) inside = !inside;
}
return inside;
}
function isPointerInGraceArea(event, area) {
if (!area) return false;
const cursorPos = { x: event.clientX, y: event.clientY };
return isPointInPolygon(cursorPos, area);
}
function whenMouse(handler) {
return (event) => event.pointerType === "mouse" ? handler(event) : void 0;
}
var Root32 = Menu;
var Anchor2 = MenuAnchor;
var Portal2 = MenuPortal;
var Content2 = MenuContent;
var Group = MenuGroup;
var Label = MenuLabel;
var Item2 = MenuItem;
var CheckboxItem = MenuCheckboxItem;
var RadioGroup = MenuRadioGroup;
var RadioItem = MenuRadioItem;
var ItemIndicator = MenuItemIndicator;
var Separator = MenuSeparator;
var Arrow22 = MenuArrow;
var Sub = MenuSub;
var SubTrigger = MenuSubTrigger;
var SubContent = MenuSubContent;
// ../../node_modules/.pnpm/@radix-ui+react-dropdown-menu@2.1.16_@types+react-dom@19.2.3_@types+react@19.2.7__@type_9ae99dbb567afdb87068bf276cfbb7a7/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs
var import_jsx_runtime17 = __toESM(require_jsx_runtime(), 1);
var DROPDOWN_MENU_NAME = "DropdownMenu";
var [createDropdownMenuContext, createDropdownMenuScope] = createContextScope2(
DROPDOWN_MENU_NAME,
[createMenuScope]
);
var useMenuScope = createMenuScope();
var [DropdownMenuProvider, useDropdownMenuContext] = createDropdownMenuContext(DROPDOWN_MENU_NAME);
var DropdownMenu = (props) => {
const {
__scopeDropdownMenu,
children,
dir,
open: openProp,
defaultOpen,
onOpenChange,
modal = true
} = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
const triggerRef = React38.useRef(null);
const [open, setOpen] = useControllableState({
prop: openProp,
defaultProp: defaultOpen ?? false,
onChange: onOpenChange,
caller: DROPDOWN_MENU_NAME
});
return (0, import_jsx_runtime17.jsx)(
DropdownMenuProvider,
{
scope: __scopeDropdownMenu,
triggerId: useId(),
triggerRef,
contentId: useId(),
open,
onOpenChange: setOpen,
onOpenToggle: React38.useCallback(() => setOpen((prevOpen) => !prevOpen), [setOpen]),
modal,
children: (0, import_jsx_runtime17.jsx)(Root32, { ...menuScope, open, onOpenChange: setOpen, dir, modal, children })
}
);
};
DropdownMenu.displayName = DROPDOWN_MENU_NAME;
var TRIGGER_NAME = "DropdownMenuTrigger";
var DropdownMenuTrigger = React38.forwardRef(
(props, forwardedRef) => {
const { __scopeDropdownMenu, disabled = false, ...triggerProps } = props;
const context = useDropdownMenuContext(TRIGGER_NAME, __scopeDropdownMenu);
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(Anchor2, { asChild: true, ...menuScope, children: (0, import_jsx_runtime17.jsx)(
Primitive2.button,
{
type: "button",
id: context.triggerId,
"aria-haspopup": "menu",
"aria-expanded": context.open,
"aria-controls": context.open ? context.contentId : void 0,
"data-state": context.open ? "open" : "closed",
"data-disabled": disabled ? "" : void 0,
disabled,
...triggerProps,
ref: composeRefs(forwardedRef, context.triggerRef),
onPointerDown: composeEventHandlers(props.onPointerDown, (event) => {
if (!disabled && event.button === 0 && event.ctrlKey === false) {
context.onOpenToggle();
if (!context.open) event.preventDefault();
}
}),
onKeyDown: composeEventHandlers(props.onKeyDown, (event) => {
if (disabled) return;
if (["Enter", " "].includes(event.key)) context.onOpenToggle();
if (event.key === "ArrowDown") context.onOpenChange(true);
if (["Enter", " ", "ArrowDown"].includes(event.key)) event.preventDefault();
})
}
) });
}
);
DropdownMenuTrigger.displayName = TRIGGER_NAME;
var PORTAL_NAME3 = "DropdownMenuPortal";
var DropdownMenuPortal = (props) => {
const { __scopeDropdownMenu, ...portalProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(Portal2, { ...menuScope, ...portalProps });
};
DropdownMenuPortal.displayName = PORTAL_NAME3;
var CONTENT_NAME3 = "DropdownMenuContent";
var DropdownMenuContent = React38.forwardRef(
(props, forwardedRef) => {
const { __scopeDropdownMenu, ...contentProps } = props;
const context = useDropdownMenuContext(CONTENT_NAME3, __scopeDropdownMenu);
const menuScope = useMenuScope(__scopeDropdownMenu);
const hasInteractedOutsideRef = React38.useRef(false);
return (0, import_jsx_runtime17.jsx)(
Content2,
{
id: context.contentId,
"aria-labelledby": context.triggerId,
...menuScope,
...contentProps,
ref: forwardedRef,
onCloseAutoFocus: composeEventHandlers(props.onCloseAutoFocus, (event) => {
var _a;
if (!hasInteractedOutsideRef.current) (_a = context.triggerRef.current) == null ? void 0 : _a.focus();
hasInteractedOutsideRef.current = false;
event.preventDefault();
}),
onInteractOutside: composeEventHandlers(props.onInteractOutside, (event) => {
const originalEvent = event.detail.originalEvent;
const ctrlLeftClick = originalEvent.button === 0 && originalEvent.ctrlKey === true;
const isRightClick = originalEvent.button === 2 || ctrlLeftClick;
if (!context.modal || isRightClick) hasInteractedOutsideRef.current = true;
}),
style: {
...props.style,
// re-namespace exposed content custom properties
...{
"--radix-dropdown-menu-content-transform-origin": "var(--radix-popper-transform-origin)",
"--radix-dropdown-menu-content-available-width": "var(--radix-popper-available-width)",
"--radix-dropdown-menu-content-available-height": "var(--radix-popper-available-height)",
"--radix-dropdown-menu-trigger-width": "var(--radix-popper-anchor-width)",
"--radix-dropdown-menu-trigger-height": "var(--radix-popper-anchor-height)"
}
}
}
);
}
);
DropdownMenuContent.displayName = CONTENT_NAME3;
var GROUP_NAME3 = "DropdownMenuGroup";
var DropdownMenuGroup = React38.forwardRef(
(props, forwardedRef) => {
const { __scopeDropdownMenu, ...groupProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(Group, { ...menuScope, ...groupProps, ref: forwardedRef });
}
);
DropdownMenuGroup.displayName = GROUP_NAME3;
var LABEL_NAME2 = "DropdownMenuLabel";
var DropdownMenuLabel = React38.forwardRef(
(props, forwardedRef) => {
const { __scopeDropdownMenu, ...labelProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(Label, { ...menuScope, ...labelProps, ref: forwardedRef });
}
);
DropdownMenuLabel.displayName = LABEL_NAME2;
var ITEM_NAME3 = "DropdownMenuItem";
var DropdownMenuItem = React38.forwardRef(
(props, forwardedRef) => {
const { __scopeDropdownMenu, ...itemProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(Item2, { ...menuScope, ...itemProps, ref: forwardedRef });
}
);
DropdownMenuItem.displayName = ITEM_NAME3;
var CHECKBOX_ITEM_NAME2 = "DropdownMenuCheckboxItem";
var DropdownMenuCheckboxItem = React38.forwardRef((props, forwardedRef) => {
const { __scopeDropdownMenu, ...checkboxItemProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(CheckboxItem, { ...menuScope, ...checkboxItemProps, ref: forwardedRef });
});
DropdownMenuCheckboxItem.displayName = CHECKBOX_ITEM_NAME2;
var RADIO_GROUP_NAME2 = "DropdownMenuRadioGroup";
var DropdownMenuRadioGroup = React38.forwardRef((props, forwardedRef) => {
const { __scopeDropdownMenu, ...radioGroupProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(RadioGroup, { ...menuScope, ...radioGroupProps, ref: forwardedRef });
});
DropdownMenuRadioGroup.displayName = RADIO_GROUP_NAME2;
var RADIO_ITEM_NAME2 = "DropdownMenuRadioItem";
var DropdownMenuRadioItem = React38.forwardRef((props, forwardedRef) => {
const { __scopeDropdownMenu, ...radioItemProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(RadioItem, { ...menuScope, ...radioItemProps, ref: forwardedRef });
});
DropdownMenuRadioItem.displayName = RADIO_ITEM_NAME2;
var INDICATOR_NAME = "DropdownMenuItemIndicator";
var DropdownMenuItemIndicator = React38.forwardRef((props, forwardedRef) => {
const { __scopeDropdownMenu, ...itemIndicatorProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(ItemIndicator, { ...menuScope, ...itemIndicatorProps, ref: forwardedRef });
});
DropdownMenuItemIndicator.displayName = INDICATOR_NAME;
var SEPARATOR_NAME2 = "DropdownMenuSeparator";
var DropdownMenuSeparator = React38.forwardRef((props, forwardedRef) => {
const { __scopeDropdownMenu, ...separatorProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(Separator, { ...menuScope, ...separatorProps, ref: forwardedRef });
});
DropdownMenuSeparator.displayName = SEPARATOR_NAME2;
var ARROW_NAME3 = "DropdownMenuArrow";
var DropdownMenuArrow = React38.forwardRef(
(props, forwardedRef) => {
const { __scopeDropdownMenu, ...arrowProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(Arrow22, { ...menuScope, ...arrowProps, ref: forwardedRef });
}
);
DropdownMenuArrow.displayName = ARROW_NAME3;
var DropdownMenuSub = (props) => {
const { __scopeDropdownMenu, children, open: openProp, onOpenChange, defaultOpen } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
const [open, setOpen] = useControllableState({
prop: openProp,
defaultProp: defaultOpen ?? false,
onChange: onOpenChange,
caller: "DropdownMenuSub"
});
return (0, import_jsx_runtime17.jsx)(Sub, { ...menuScope, open, onOpenChange: setOpen, children });
};
var SUB_TRIGGER_NAME2 = "DropdownMenuSubTrigger";
var DropdownMenuSubTrigger = React38.forwardRef((props, forwardedRef) => {
const { __scopeDropdownMenu, ...subTriggerProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(SubTrigger, { ...menuScope, ...subTriggerProps, ref: forwardedRef });
});
DropdownMenuSubTrigger.displayName = SUB_TRIGGER_NAME2;
var SUB_CONTENT_NAME2 = "DropdownMenuSubContent";
var DropdownMenuSubContent = React38.forwardRef((props, forwardedRef) => {
const { __scopeDropdownMenu, ...subContentProps } = props;
const menuScope = useMenuScope(__scopeDropdownMenu);
return (0, import_jsx_runtime17.jsx)(
SubContent,
{
...menuScope,
...subContentProps,
ref: forwardedRef,
style: {
...props.style,
// re-namespace exposed content custom properties
...{
"--radix-dropdown-menu-content-transform-origin": "var(--radix-popper-transform-origin)",
"--radix-dropdown-menu-content-available-width": "var(--radix-popper-available-width)",
"--radix-dropdown-menu-content-available-height": "var(--radix-popper-available-height)",
"--radix-dropdown-menu-trigger-width": "var(--radix-popper-anchor-width)",
"--radix-dropdown-menu-trigger-height": "var(--radix-popper-anchor-height)"
}
}
}
);
});
DropdownMenuSubContent.displayName = SUB_CONTENT_NAME2;
var Root23 = DropdownMenu;
var Trigger = DropdownMenuTrigger;
var Content22 = DropdownMenuContent;
var Label2 = DropdownMenuLabel;
var Item22 = DropdownMenuItem;
var CheckboxItem2 = DropdownMenuCheckboxItem;
var ItemIndicator2 = DropdownMenuItemIndicator;
var Separator2 = DropdownMenuSeparator;
var Sub2 = DropdownMenuSub;
var SubTrigger2 = DropdownMenuSubTrigger;
var SubContent2 = DropdownMenuSubContent;
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js
var import_react8 = __toESM(require_react());
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/shared/src/utils.js
var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
var toCamelCase = (string) => string.replace(
/^([A-Z])|[\s-_]+(\w)/g,
(match, p1, p2) => p2 ? p2.toUpperCase() : p1.toLowerCase()
);
var toPascalCase = (string) => {
const camelCase = toCamelCase(string);
return camelCase.charAt(0).toUpperCase() + camelCase.slice(1);
};
var mergeClasses = (...classes) => classes.filter((className, index, array) => {
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
}).join(" ").trim();
var hasA11yProp = (props) => {
for (const prop in props) {
if (prop.startsWith("aria-") || prop === "role" || prop === "title") {
return true;
}
}
};
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js
var import_react7 = __toESM(require_react());
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/defaultAttributes.js
var defaultAttributes = {
xmlns: "http://www.w3.org/2000/svg",
width: 24,
height: 24,
viewBox: "0 0 24 24",
fill: "none",
stroke: "currentColor",
strokeWidth: 2,
strokeLinecap: "round",
strokeLinejoin: "round"
};
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js
var Icon = (0, import_react7.forwardRef)(
({
color = "currentColor",
size: size2 = 24,
strokeWidth = 2,
absoluteStrokeWidth,
className = "",
children,
iconNode,
...rest
}, ref) => (0, import_react7.createElement)(
"svg",
{
ref,
...defaultAttributes,
width: size2,
height: size2,
stroke: color,
strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size2) : strokeWidth,
className: mergeClasses("lucide", className),
...!children && !hasA11yProp(rest) && { "aria-hidden": "true" },
...rest
},
[
...iconNode.map(([tag, attrs]) => (0, import_react7.createElement)(tag, attrs)),
...Array.isArray(children) ? children : [children]
]
)
);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js
var createLucideIcon = (iconName, iconNode) => {
const Component2 = (0, import_react8.forwardRef)(
({ className, ...props }, ref) => (0, import_react8.createElement)(Icon, {
ref,
iconNode,
className: mergeClasses(
`lucide-${toKebabCase(toPascalCase(iconName))}`,
`lucide-${iconName}`,
className
),
...props
})
);
Component2.displayName = toPascalCase(iconName);
return Component2;
};
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/a-arrow-down.js
var __iconNode = [
["path", { d: "M3.5 13h6", key: "p1my2r" }],
["path", { d: "m2 16 4.5-9 4.5 9", key: "ndf0b3" }],
["path", { d: "M18 7v9", key: "pknjwm" }],
["path", { d: "m14 12 4 4 4-4", key: "buelq4" }]
];
var AArrowDown = createLucideIcon("a-arrow-down", __iconNode);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/a-large-small.js
var __iconNode2 = [
["path", { d: "M21 14h-5", key: "1vh23k" }],
["path", { d: "M16 16v-3.5a2.5 2.5 0 0 1 5 0V16", key: "1wh10o" }],
["path", { d: "M4.5 13h6", key: "dfilno" }],
["path", { d: "m3 16 4.5-9 4.5 9", key: "2dxa0e" }]
];
var ALargeSmall = createLucideIcon("a-large-small", __iconNode2);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/a-arrow-up.js
var __iconNode3 = [
["path", { d: "M3.5 13h6", key: "p1my2r" }],
["path", { d: "m2 16 4.5-9 4.5 9", key: "ndf0b3" }],
["path", { d: "M18 16V7", key: "ty0viw" }],
["path", { d: "m14 11 4-4 4 4", key: "1pu57t" }]
];
var AArrowUp = createLucideIcon("a-arrow-up", __iconNode3);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/accessibility.js
var __iconNode4 = [
["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" }]
];
var Accessibility = createLucideIcon("accessibility", __iconNode4);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/activity.js
var __iconNode5 = [
[
"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"
}
]
];
var Activity = createLucideIcon("activity", __iconNode5);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/air-vent.js
var __iconNode6 = [
["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" }]
];
var AirVent = createLucideIcon("air-vent", __iconNode6);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/airplay.js
var __iconNode7 = [
[
"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" }]
];
var Airplay = createLucideIcon("airplay", __iconNode7);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/alarm-clock-check.js
var __iconNode8 = [
["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" }]
];
var AlarmClockCheck = createLucideIcon("alarm-clock-check", __iconNode8);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/alarm-clock-minus.js
var __iconNode9 = [
["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" }]
];
var AlarmClockMinus = createLucideIcon("alarm-clock-minus", __iconNode9);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/alarm-clock-off.js
var __iconNode10 = [
["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" }]
];
var AlarmClockOff = createLucideIcon("alarm-clock-off", __iconNode10);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/alarm-clock-plus.js
var __iconNode11 = [
["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" }]
];
var AlarmClockPlus = createLucideIcon("alarm-clock-plus", __iconNode11);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/alarm-clock.js
var __iconNode12 = [
["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" }]
];
var AlarmClock = createLucideIcon("alarm-clock", __iconNode12);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/alarm-smoke.js
var __iconNode13 = [
["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" }]
];
var AlarmSmoke = createLucideIcon("alarm-smoke", __iconNode13);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/album.js
var __iconNode14 = [
["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" }]
];
var Album = createLucideIcon("album", __iconNode14);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-center-horizontal.js
var __iconNode15 = [
["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" }]
];
var AlignCenterHorizontal = createLucideIcon("align-center-horizontal", __iconNode15);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-center-vertical.js
var __iconNode16 = [
["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" }]
];
var AlignCenterVertical = createLucideIcon("align-center-vertical", __iconNode16);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-center.js
var __iconNode17 = [
["path", { d: "M17 12H7", key: "16if0g" }],
["path", { d: "M19 18H5", key: "18s9l3" }],
["path", { d: "M21 6H3", key: "1jwq7v" }]
];
var AlignCenter = createLucideIcon("align-center", __iconNode17);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-end-horizontal.js
var __iconNode18 = [
["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" }]
];
var AlignEndHorizontal = createLucideIcon("align-end-horizontal", __iconNode18);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-end-vertical.js
var __iconNode19 = [
["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" }]
];
var AlignEndVertical = createLucideIcon("align-end-vertical", __iconNode19);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-center.js
var __iconNode20 = [
["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" }]
];
var AlignHorizontalDistributeCenter = createLucideIcon(
"align-horizontal-distribute-center",
__iconNode20
);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-end.js
var __iconNode21 = [
["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" }]
];
var AlignHorizontalDistributeEnd = createLucideIcon(
"align-horizontal-distribute-end",
__iconNode21
);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-start.js
var __iconNode22 = [
["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" }]
];
var AlignHorizontalDistributeStart = createLucideIcon(
"align-horizontal-distribute-start",
__iconNode22
);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-center.js
var __iconNode23 = [
["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" }]
];
var AlignHorizontalJustifyCenter = createLucideIcon(
"align-horizontal-justify-center",
__iconNode23
);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-end.js
var __iconNode24 = [
["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" }]
];
var AlignHorizontalJustifyEnd = createLucideIcon("align-horizontal-justify-end", __iconNode24);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-start.js
var __iconNode25 = [
["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" }]
];
var AlignHorizontalJustifyStart = createLucideIcon("align-horizontal-justify-start", __iconNode25);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-horizontal-space-around.js
var __iconNode26 = [
["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" }]
];
var AlignHorizontalSpaceAround = createLucideIcon("align-horizontal-space-around", __iconNode26);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-horizontal-space-between.js
var __iconNode27 = [
["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" }]
];
var AlignHorizontalSpaceBetween = createLucideIcon("align-horizontal-space-between", __iconNode27);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-justify.js
var __iconNode28 = [
["path", { d: "M3 12h18", key: "1i2n21" }],
["path", { d: "M3 18h18", key: "1h113x" }],
["path", { d: "M3 6h18", key: "d0wm0j" }]
];
var AlignJustify = createLucideIcon("align-justify", __iconNode28);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-left.js
var __iconNode29 = [
["path", { d: "M15 12H3", key: "6jk70r" }],
["path", { d: "M17 18H3", key: "1amg6g" }],
["path", { d: "M21 6H3", key: "1jwq7v" }]
];
var AlignLeft = createLucideIcon("align-left", __iconNode29);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-right.js
var __iconNode30 = [
["path", { d: "M21 12H9", key: "dn1m92" }],
["path", { d: "M21 18H7", key: "1ygte8" }],
["path", { d: "M21 6H3", key: "1jwq7v" }]
];
var AlignRight = createLucideIcon("align-right", __iconNode30);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-start-horizontal.js
var __iconNode31 = [
["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" }]
];
var AlignStartHorizontal = createLucideIcon("align-start-horizontal", __iconNode31);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-start-vertical.js
var __iconNode32 = [
["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" }]
];
var AlignStartVertical = createLucideIcon("align-start-vertical", __iconNode32);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-center.js
var __iconNode33 = [
["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" }]
];
var AlignVerticalDistributeCenter = createLucideIcon(
"align-vertical-distribute-center",
__iconNode33
);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-end.js
var __iconNode34 = [
["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" }]
];
var AlignVerticalDistributeEnd = createLucideIcon("align-vertical-distribute-end", __iconNode34);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-start.js
var __iconNode35 = [
["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" }]
];
var AlignVerticalDistributeStart = createLucideIcon(
"align-vertical-distribute-start",
__iconNode35
);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-center.js
var __iconNode36 = [
["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" }]
];
var AlignVerticalJustifyCenter = createLucideIcon("align-vertical-justify-center", __iconNode36);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-end.js
var __iconNode37 = [
["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" }]
];
var AlignVerticalJustifyEnd = createLucideIcon("align-vertical-justify-end", __iconNode37);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-start.js
var __iconNode38 = [
["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" }]
];
var AlignVerticalJustifyStart = createLucideIcon("align-vertical-justify-start", __iconNode38);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-vertical-space-around.js
var __iconNode39 = [
["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" }]
];
var AlignVerticalSpaceAround = createLucideIcon("align-vertical-space-around", __iconNode39);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/align-vertical-space-between.js
var __iconNode40 = [
["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" }]
];
var AlignVerticalSpaceBetween = createLucideIcon("align-vertical-space-between", __iconNode40);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ambulance.js
var __iconNode41 = [
["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" }]
];
var Ambulance = createLucideIcon("ambulance", __iconNode41);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ampersand.js
var __iconNode42 = [
[
"path",
{
d: "M17.5 12c0 4.4-3.6 8-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: "1o9ehi"
}
],
["path", { d: "M16 12h3", key: "4uvgyw" }]
];
var Ampersand = createLucideIcon("ampersand", __iconNode42);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ampersands.js
var __iconNode43 = [
[
"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"
}
]
];
var Ampersands = createLucideIcon("ampersands", __iconNode43);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/amphora.js
var __iconNode44 = [
[
"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" }]
];
var Amphora = createLucideIcon("amphora", __iconNode44);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/anchor.js
var __iconNode45 = [
["path", { d: "M12 22V8", key: "qkxhtm" }],
["path", { d: "M5 12H2a10 10 0 0 0 20 0h-3", key: "1hv3nh" }],
["circle", { cx: "12", cy: "5", r: "3", key: "rqqgnr" }]
];
var Anchor3 = createLucideIcon("anchor", __iconNode45);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/angry.js
var __iconNode46 = [
["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" }]
];
var Angry = createLucideIcon("angry", __iconNode46);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/annoyed.js
var __iconNode47 = [
["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" }]
];
var Annoyed = createLucideIcon("annoyed", __iconNode47);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/antenna.js
var __iconNode48 = [
["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" }]
];
var Antenna = createLucideIcon("antenna", __iconNode48);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/anvil.js
var __iconNode49 = [
["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" }
]
];
var Anvil = createLucideIcon("anvil", __iconNode49);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/aperture.js
var __iconNode50 = [
["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" }]
];
var Aperture = createLucideIcon("aperture", __iconNode50);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/app-window-mac.js
var __iconNode51 = [
["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" }]
];
var AppWindowMac = createLucideIcon("app-window-mac", __iconNode51);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/app-window.js
var __iconNode52 = [
["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" }]
];
var AppWindow = createLucideIcon("app-window", __iconNode52);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/apple.js
var __iconNode53 = [
[
"path",
{
d: "M12 20.94c1.5 0 2.75 1.06 4 1.06 3 0 6-8 6-12.22A4.91 4.91 0 0 0 17 5c-2.22 0-4 1.44-5 2-1-.56-2.78-2-5-2a4.9 4.9 0 0 0-5 4.78C2 14 5 22 8 22c1.25 0 2.5-1.06 4-1.06Z",
key: "3s7exb"
}
],
["path", { d: "M10 2c1 .5 2 2 2 5", key: "fcco2y" }]
];
var Apple = createLucideIcon("apple", __iconNode53);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/archive-restore.js
var __iconNode54 = [
["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" }]
];
var ArchiveRestore = createLucideIcon("archive-restore", __iconNode54);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/archive-x.js
var __iconNode55 = [
["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" }]
];
var ArchiveX = createLucideIcon("archive-x", __iconNode55);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/archive.js
var __iconNode56 = [
["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" }]
];
var Archive = createLucideIcon("archive", __iconNode56);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/armchair.js
var __iconNode57 = [
["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" }]
];
var Armchair = createLucideIcon("armchair", __iconNode57);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-big-down-dash.js
var __iconNode58 = [
["path", { d: "M15 5H9", key: "1tp3ed" }],
["path", { d: "M15 9v3h4l-7 7-7-7h4V9z", key: "ncdc4b" }]
];
var ArrowBigDownDash = createLucideIcon("arrow-big-down-dash", __iconNode58);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-big-down.js
var __iconNode59 = [["path", { d: "M15 6v6h4l-7 7-7-7h4V6h6z", key: "1thax2" }]];
var ArrowBigDown = createLucideIcon("arrow-big-down", __iconNode59);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-big-left-dash.js
var __iconNode60 = [
["path", { d: "M19 15V9", key: "1hci5f" }],
["path", { d: "M15 15h-3v4l-7-7 7-7v4h3v6z", key: "16tjna" }]
];
var ArrowBigLeftDash = createLucideIcon("arrow-big-left-dash", __iconNode60);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-big-left.js
var __iconNode61 = [["path", { d: "M18 15h-6v4l-7-7 7-7v4h6v6z", key: "lbrdak" }]];
var ArrowBigLeft = createLucideIcon("arrow-big-left", __iconNode61);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-big-right-dash.js
var __iconNode62 = [
["path", { d: "M5 9v6", key: "158jrl" }],
["path", { d: "M9 9h3V5l7 7-7 7v-4H9V9z", key: "1sg2xn" }]
];
var ArrowBigRightDash = createLucideIcon("arrow-big-right-dash", __iconNode62);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-big-right.js
var __iconNode63 = [["path", { d: "M6 9h6V5l7 7-7 7v-4H6V9z", key: "7fvt9c" }]];
var ArrowBigRight = createLucideIcon("arrow-big-right", __iconNode63);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-big-up-dash.js
var __iconNode64 = [
["path", { d: "M9 19h6", key: "456am0" }],
["path", { d: "M9 15v-3H5l7-7 7 7h-4v3H9z", key: "1r2uve" }]
];
var ArrowBigUpDash = createLucideIcon("arrow-big-up-dash", __iconNode64);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-big-up.js
var __iconNode65 = [["path", { d: "M9 18v-6H5l7-7 7 7h-4v6H9z", key: "1x06kx" }]];
var ArrowBigUp = createLucideIcon("arrow-big-up", __iconNode65);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-0-1.js
var __iconNode66 = [
["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" }]
];
var ArrowDown01 = createLucideIcon("arrow-down-0-1", __iconNode66);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-1-0.js
var __iconNode67 = [
["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" }]
];
var ArrowDown10 = createLucideIcon("arrow-down-1-0", __iconNode67);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-a-z.js
var __iconNode68 = [
["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" }]
];
var ArrowDownAZ = createLucideIcon("arrow-down-a-z", __iconNode68);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-from-line.js
var __iconNode69 = [
["path", { d: "M19 3H5", key: "1236rx" }],
["path", { d: "M12 21V7", key: "gj6g52" }],
["path", { d: "m6 15 6 6 6-6", key: "h15q88" }]
];
var ArrowDownFromLine = createLucideIcon("arrow-down-from-line", __iconNode69);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-left.js
var __iconNode70 = [
["path", { d: "M17 7 7 17", key: "15tmo1" }],
["path", { d: "M17 17H7V7", key: "1org7z" }]
];
var ArrowDownLeft = createLucideIcon("arrow-down-left", __iconNode70);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-narrow-wide.js
var __iconNode71 = [
["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" }]
];
var ArrowDownNarrowWide = createLucideIcon("arrow-down-narrow-wide", __iconNode71);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-right.js
var __iconNode72 = [
["path", { d: "m7 7 10 10", key: "1fmybs" }],
["path", { d: "M17 7v10H7", key: "6fjiku" }]
];
var ArrowDownRight = createLucideIcon("arrow-down-right", __iconNode72);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-to-dot.js
var __iconNode73 = [
["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" }]
];
var ArrowDownToDot = createLucideIcon("arrow-down-to-dot", __iconNode73);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-to-line.js
var __iconNode74 = [
["path", { d: "M12 17V3", key: "1cwfxf" }],
["path", { d: "m6 11 6 6 6-6", key: "12ii2o" }],
["path", { d: "M19 21H5", key: "150jfl" }]
];
var ArrowDownToLine = createLucideIcon("arrow-down-to-line", __iconNode74);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-up.js
var __iconNode75 = [
["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" }]
];
var ArrowDownUp = createLucideIcon("arrow-down-up", __iconNode75);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-wide-narrow.js
var __iconNode76 = [
["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" }]
];
var ArrowDownWideNarrow = createLucideIcon("arrow-down-wide-narrow", __iconNode76);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down-z-a.js
var __iconNode77 = [
["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" }]
];
var ArrowDownZA = createLucideIcon("arrow-down-z-a", __iconNode77);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-down.js
var __iconNode78 = [
["path", { d: "M12 5v14", key: "s699le" }],
["path", { d: "m19 12-7 7-7-7", key: "1idqje" }]
];
var ArrowDown = createLucideIcon("arrow-down", __iconNode78);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left-from-line.js
var __iconNode79 = [
["path", { d: "m9 6-6 6 6 6", key: "7v63n9" }],
["path", { d: "M3 12h14", key: "13k4hi" }],
["path", { d: "M21 19V5", key: "b4bplr" }]
];
var ArrowLeftFromLine = createLucideIcon("arrow-left-from-line", __iconNode79);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left-right.js
var __iconNode80 = [
["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" }]
];
var ArrowLeftRight = createLucideIcon("arrow-left-right", __iconNode80);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left-to-line.js
var __iconNode81 = [
["path", { d: "M3 19V5", key: "rwsyhb" }],
["path", { d: "m13 6-6 6 6 6", key: "1yhaz7" }],
["path", { d: "M7 12h14", key: "uoisry" }]
];
var ArrowLeftToLine = createLucideIcon("arrow-left-to-line", __iconNode81);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left.js
var __iconNode82 = [
["path", { d: "m12 19-7-7 7-7", key: "1l729n" }],
["path", { d: "M19 12H5", key: "x3x0zl" }]
];
var ArrowLeft = createLucideIcon("arrow-left", __iconNode82);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-right-left.js
var __iconNode83 = [
["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" }]
];
var ArrowRightLeft = createLucideIcon("arrow-right-left", __iconNode83);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-right-to-line.js
var __iconNode84 = [
["path", { d: "M17 12H3", key: "8awo09" }],
["path", { d: "m11 18 6-6-6-6", key: "8c2y43" }],
["path", { d: "M21 5v14", key: "nzette" }]
];
var ArrowRightToLine = createLucideIcon("arrow-right-to-line", __iconNode84);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-right-from-line.js
var __iconNode85 = [
["path", { d: "M3 5v14", key: "1nt18q" }],
["path", { d: "M21 12H7", key: "13ipq5" }],
["path", { d: "m15 18 6-6-6-6", key: "6tx3qv" }]
];
var ArrowRightFromLine = createLucideIcon("arrow-right-from-line", __iconNode85);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-right.js
var __iconNode86 = [
["path", { d: "M5 12h14", key: "1ays0h" }],
["path", { d: "m12 5 7 7-7 7", key: "xquz4c" }]
];
var ArrowRight = createLucideIcon("arrow-right", __iconNode86);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-0-1.js
var __iconNode87 = [
["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" }]
];
var ArrowUp01 = createLucideIcon("arrow-up-0-1", __iconNode87);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-1-0.js
var __iconNode88 = [
["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" }]
];
var ArrowUp10 = createLucideIcon("arrow-up-1-0", __iconNode88);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-a-z.js
var __iconNode89 = [
["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" }]
];
var ArrowUpAZ = createLucideIcon("arrow-up-a-z", __iconNode89);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-down.js
var __iconNode90 = [
["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" }]
];
var ArrowUpDown = createLucideIcon("arrow-up-down", __iconNode90);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-from-dot.js
var __iconNode91 = [
["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" }]
];
var ArrowUpFromDot = createLucideIcon("arrow-up-from-dot", __iconNode91);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-from-line.js
var __iconNode92 = [
["path", { d: "m18 9-6-6-6 6", key: "kcunyi" }],
["path", { d: "M12 3v14", key: "7cf3v8" }],
["path", { d: "M5 21h14", key: "11awu3" }]
];
var ArrowUpFromLine = createLucideIcon("arrow-up-from-line", __iconNode92);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-left.js
var __iconNode93 = [
["path", { d: "M7 17V7h10", key: "11bw93" }],
["path", { d: "M17 17 7 7", key: "2786uv" }]
];
var ArrowUpLeft = createLucideIcon("arrow-up-left", __iconNode93);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-narrow-wide.js
var __iconNode94 = [
["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" }]
];
var ArrowUpNarrowWide = createLucideIcon("arrow-up-narrow-wide", __iconNode94);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-right.js
var __iconNode95 = [
["path", { d: "M7 7h10v10", key: "1tivn9" }],
["path", { d: "M7 17 17 7", key: "1vkiza" }]
];
var ArrowUpRight = createLucideIcon("arrow-up-right", __iconNode95);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-to-line.js
var __iconNode96 = [
["path", { d: "M5 3h14", key: "7usisc" }],
["path", { d: "m18 13-6-6-6 6", key: "1kf1n9" }],
["path", { d: "M12 7v14", key: "1akyts" }]
];
var ArrowUpToLine = createLucideIcon("arrow-up-to-line", __iconNode96);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-wide-narrow.js
var __iconNode97 = [
["path", { d: "m3 8 4-4 4 4", key: "11wl7u" }],
["path", { d: "M7 4v16", key: "1glfcx" }],
["path", { d: "M11 12h10", key: "1438ji" }],
["path", { d: "M11 16h7", key: "uosisv" }],
["path", { d: "M11 20h4", key: "1krc32" }]
];
var ArrowUpWideNarrow = createLucideIcon("arrow-up-wide-narrow", __iconNode97);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up-z-a.js
var __iconNode98 = [
["path", { d: "m3 8 4-4 4 4", key: "11wl7u" }],
["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" }]
];
var ArrowUpZA = createLucideIcon("arrow-up-z-a", __iconNode98);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-up.js
var __iconNode99 = [
["path", { d: "m5 12 7-7 7 7", key: "hav0vg" }],
["path", { d: "M12 19V5", key: "x0mq9r" }]
];
var ArrowUp = createLucideIcon("arrow-up", __iconNode99);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrows-up-from-line.js
var __iconNode100 = [
["path", { d: "m4 6 3-3 3 3", key: "9aidw8" }],
["path", { d: "M7 17V3", key: "19qxw1" }],
["path", { d: "m14 6 3-3 3 3", key: "6iy689" }],
["path", { d: "M17 17V3", key: "o0fmgi" }],
["path", { d: "M4 21h16", key: "1h09gz" }]
];
var ArrowsUpFromLine = createLucideIcon("arrows-up-from-line", __iconNode100);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/asterisk.js
var __iconNode101 = [
["path", { d: "M12 6v12", key: "1vza4d" }],
["path", { d: "M17.196 9 6.804 15", key: "1ah31z" }],
["path", { d: "m6.804 9 10.392 6", key: "1b6pxd" }]
];
var Asterisk = createLucideIcon("asterisk", __iconNode101);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/at-sign.js
var __iconNode102 = [
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
["path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8", key: "7n84p3" }]
];
var AtSign = createLucideIcon("at-sign", __iconNode102);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/atom.js
var __iconNode103 = [
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
[
"path",
{
d: "M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z",
key: "1l2ple"
}
],
[
"path",
{
d: "M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z",
key: "1wam0m"
}
]
];
var Atom = createLucideIcon("atom", __iconNode103);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/audio-lines.js
var __iconNode104 = [
["path", { d: "M2 10v3", key: "1fnikh" }],
["path", { d: "M6 6v11", key: "11sgs0" }],
["path", { d: "M10 3v18", key: "yhl04a" }],
["path", { d: "M14 8v7", key: "3a1oy3" }],
["path", { d: "M18 5v13", key: "123xd1" }],
["path", { d: "M22 10v3", key: "154ddg" }]
];
var AudioLines = createLucideIcon("audio-lines", __iconNode104);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/audio-waveform.js
var __iconNode105 = [
[
"path",
{
d: "M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2",
key: "57tc96"
}
]
];
var AudioWaveform = createLucideIcon("audio-waveform", __iconNode105);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/award.js
var __iconNode106 = [
[
"path",
{
d: "m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526",
key: "1yiouv"
}
],
["circle", { cx: "12", cy: "8", r: "6", key: "1vp47v" }]
];
var Award = createLucideIcon("award", __iconNode106);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/axe.js
var __iconNode107 = [
["path", { d: "m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9", key: "5z9253" }],
[
"path",
{
d: "M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z",
key: "19zklq"
}
]
];
var Axe = createLucideIcon("axe", __iconNode107);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/axis-3d.js
var __iconNode108 = [
["path", { d: "M13.5 10.5 15 9", key: "1nsxvm" }],
["path", { d: "M4 4v15a1 1 0 0 0 1 1h15", key: "1w6lkd" }],
["path", { d: "M4.293 19.707 6 18", key: "3g1p8c" }],
["path", { d: "m9 15 1.5-1.5", key: "1xfbes" }]
];
var Axis3d = createLucideIcon("axis-3d", __iconNode108);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/baby.js
var __iconNode109 = [
["path", { d: "M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5", key: "1u7htd" }],
["path", { d: "M15 12h.01", key: "1k8ypt" }],
[
"path",
{
d: "M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1",
key: "11xh7x"
}
],
["path", { d: "M9 12h.01", key: "157uk2" }]
];
var Baby = createLucideIcon("baby", __iconNode109);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/backpack.js
var __iconNode110 = [
[
"path",
{ d: "M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z", key: "1ol0lm" }
],
["path", { d: "M8 10h8", key: "c7uz4u" }],
["path", { d: "M8 18h8", key: "1no2b1" }],
["path", { d: "M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6", key: "1fr6do" }],
["path", { d: "M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2", key: "donm21" }]
];
var Backpack = createLucideIcon("backpack", __iconNode110);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-alert.js
var __iconNode111 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
];
var BadgeAlert = createLucideIcon("badge-alert", __iconNode111);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-cent.js
var __iconNode112 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "M12 7v10", key: "jspqdw" }],
["path", { d: "M15.4 10a4 4 0 1 0 0 4", key: "2eqtx8" }]
];
var BadgeCent = createLucideIcon("badge-cent", __iconNode112);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-check.js
var __iconNode113 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
];
var BadgeCheck = createLucideIcon("badge-check", __iconNode113);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-dollar-sign.js
var __iconNode114 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8", key: "1h4pet" }],
["path", { d: "M12 18V6", key: "zqpxq5" }]
];
var BadgeDollarSign = createLucideIcon("badge-dollar-sign", __iconNode114);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-euro.js
var __iconNode115 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "M7 12h5", key: "gblrwe" }],
["path", { d: "M15 9.4a4 4 0 1 0 0 5.2", key: "1makmb" }]
];
var BadgeEuro = createLucideIcon("badge-euro", __iconNode115);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-indian-rupee.js
var __iconNode116 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "M8 8h8", key: "1bis0t" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
["path", { d: "m13 17-5-1h1a4 4 0 0 0 0-8", key: "nu2bwa" }]
];
var BadgeIndianRupee = createLucideIcon("badge-indian-rupee", __iconNode116);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-info.js
var __iconNode117 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["line", { x1: "12", x2: "12", y1: "16", y2: "12", key: "1y1yb1" }],
["line", { x1: "12", x2: "12.01", y1: "8", y2: "8", key: "110wyk" }]
];
var BadgeInfo = createLucideIcon("badge-info", __iconNode117);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-japanese-yen.js
var __iconNode118 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "m9 8 3 3v7", key: "17yadx" }],
["path", { d: "m12 11 3-3", key: "p4cfq1" }],
["path", { d: "M9 12h6", key: "1c52cq" }],
["path", { d: "M9 16h6", key: "8wimt3" }]
];
var BadgeJapaneseYen = createLucideIcon("badge-japanese-yen", __iconNode118);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-minus.js
var __iconNode119 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["line", { x1: "8", x2: "16", y1: "12", y2: "12", key: "1jonct" }]
];
var BadgeMinus = createLucideIcon("badge-minus", __iconNode119);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-percent.js
var __iconNode120 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
["path", { d: "M9 9h.01", key: "1q5me6" }],
["path", { d: "M15 15h.01", key: "lqbp3k" }]
];
var BadgePercent = createLucideIcon("badge-percent", __iconNode120);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-plus.js
var __iconNode121 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["line", { x1: "12", x2: "12", y1: "8", y2: "16", key: "10p56q" }],
["line", { x1: "8", x2: "16", y1: "12", y2: "12", key: "1jonct" }]
];
var BadgePlus = createLucideIcon("badge-plus", __iconNode121);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-pound-sterling.js
var __iconNode122 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "M8 12h4", key: "qz6y1c" }],
["path", { d: "M10 16V9.5a2.5 2.5 0 0 1 5 0", key: "3mlbjk" }],
["path", { d: "M8 16h7", key: "sbedsn" }]
];
var BadgePoundSterling = createLucideIcon("badge-pound-sterling", __iconNode122);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-question-mark.js
var __iconNode123 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3", key: "1u773s" }],
["line", { x1: "12", x2: "12.01", y1: "17", y2: "17", key: "io3f8k" }]
];
var BadgeQuestionMark = createLucideIcon("badge-question-mark", __iconNode123);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-russian-ruble.js
var __iconNode124 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "M9 16h5", key: "1syiyw" }],
["path", { d: "M9 12h5a2 2 0 1 0 0-4h-3v9", key: "1ge9c1" }]
];
var BadgeRussianRuble = createLucideIcon("badge-russian-ruble", __iconNode124);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-swiss-franc.js
var __iconNode125 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["path", { d: "M11 17V8h4", key: "1bfq6y" }],
["path", { d: "M11 12h3", key: "2eqnfz" }],
["path", { d: "M9 16h4", key: "1skf3a" }]
];
var BadgeSwissFranc = createLucideIcon("badge-swiss-franc", __iconNode125);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge-x.js
var __iconNode126 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
],
["line", { x1: "15", x2: "9", y1: "9", y2: "15", key: "f7djnv" }],
["line", { x1: "9", x2: "15", y1: "9", y2: "15", key: "1shsy8" }]
];
var BadgeX = createLucideIcon("badge-x", __iconNode126);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/badge.js
var __iconNode127 = [
[
"path",
{
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
key: "3c2336"
}
]
];
var Badge = createLucideIcon("badge", __iconNode127);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/baggage-claim.js
var __iconNode128 = [
["path", { d: "M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2", key: "4irg2o" }],
["path", { d: "M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10", key: "14fcyx" }],
["rect", { width: "13", height: "8", x: "8", y: "6", rx: "1", key: "o6oiis" }],
["circle", { cx: "18", cy: "20", r: "2", key: "t9985n" }],
["circle", { cx: "9", cy: "20", r: "2", key: "e5v82j" }]
];
var BaggageClaim = createLucideIcon("baggage-claim", __iconNode128);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ban.js
var __iconNode129 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m4.9 4.9 14.2 14.2", key: "1m5liu" }]
];
var Ban = createLucideIcon("ban", __iconNode129);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/banana.js
var __iconNode130 = [
["path", { d: "M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5", key: "1cscit" }],
[
"path",
{
d: "M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z",
key: "1y1nbv"
}
]
];
var Banana = createLucideIcon("banana", __iconNode130);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bandage.js
var __iconNode131 = [
["path", { d: "M10 10.01h.01", key: "1e9xi7" }],
["path", { d: "M10 14.01h.01", key: "ac23bv" }],
["path", { d: "M14 10.01h.01", key: "2wfrvf" }],
["path", { d: "M14 14.01h.01", key: "8tw8yn" }],
["path", { d: "M18 6v11.5", key: "dkbidh" }],
["path", { d: "M6 6v12", key: "vkc79e" }],
["rect", { x: "2", y: "6", width: "20", height: "12", rx: "2", key: "1wpnh2" }]
];
var Bandage = createLucideIcon("bandage", __iconNode131);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/banknote-arrow-down.js
var __iconNode132 = [
["path", { d: "M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5", key: "x6cv4u" }],
["path", { d: "m16 19 3 3 3-3", key: "1ibux0" }],
["path", { d: "M18 12h.01", key: "yjnet6" }],
["path", { d: "M19 16v6", key: "tddt3s" }],
["path", { d: "M6 12h.01", key: "c2rlol" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
];
var BanknoteArrowDown = createLucideIcon("banknote-arrow-down", __iconNode132);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/banknote-arrow-up.js
var __iconNode133 = [
["path", { d: "M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5", key: "x6cv4u" }],
["path", { d: "M18 12h.01", key: "yjnet6" }],
["path", { d: "M19 22v-6", key: "qhmiwi" }],
["path", { d: "m22 19-3-3-3 3", key: "rn6bg2" }],
["path", { d: "M6 12h.01", key: "c2rlol" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
];
var BanknoteArrowUp = createLucideIcon("banknote-arrow-up", __iconNode133);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/banknote-x.js
var __iconNode134 = [
["path", { d: "M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5", key: "16nib6" }],
["path", { d: "m17 17 5 5", key: "p7ous7" }],
["path", { d: "M18 12h.01", key: "yjnet6" }],
["path", { d: "m22 17-5 5", key: "gqnmv0" }],
["path", { d: "M6 12h.01", key: "c2rlol" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
];
var BanknoteX = createLucideIcon("banknote-x", __iconNode134);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/barcode.js
var __iconNode135 = [
["path", { d: "M3 5v14", key: "1nt18q" }],
["path", { d: "M8 5v14", key: "1ybrkv" }],
["path", { d: "M12 5v14", key: "s699le" }],
["path", { d: "M17 5v14", key: "ycjyhj" }],
["path", { d: "M21 5v14", key: "nzette" }]
];
var Barcode = createLucideIcon("barcode", __iconNode135);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/banknote.js
var __iconNode136 = [
["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2", key: "9lu3g6" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }],
["path", { d: "M6 12h.01M18 12h.01", key: "113zkx" }]
];
var Banknote = createLucideIcon("banknote", __iconNode136);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/barrel.js
var __iconNode137 = [
["path", { d: "M10 3a41 41 0 0 0 0 18", key: "1qcnzb" }],
["path", { d: "M14 3a41 41 0 0 1 0 18", key: "547vd4" }],
[
"path",
{
d: "M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z",
key: "1wepyy"
}
],
["path", { d: "M3.84 17h16.32", key: "1wh981" }],
["path", { d: "M3.84 7h16.32", key: "19jf4x" }]
];
var Barrel = createLucideIcon("barrel", __iconNode137);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/baseline.js
var __iconNode138 = [
["path", { d: "M4 20h16", key: "14thso" }],
["path", { d: "m6 16 6-12 6 12", key: "1b4byz" }],
["path", { d: "M8 12h8", key: "1wcyev" }]
];
var Baseline = createLucideIcon("baseline", __iconNode138);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bath.js
var __iconNode139 = [
["path", { d: "M10 4 8 6", key: "1rru8s" }],
["path", { d: "M17 19v2", key: "ts1sot" }],
["path", { d: "M2 12h20", key: "9i4pu4" }],
["path", { d: "M7 19v2", key: "12npes" }],
[
"path",
{
d: "M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5",
key: "14ym8i"
}
]
];
var Bath = createLucideIcon("bath", __iconNode139);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/battery-charging.js
var __iconNode140 = [
["path", { d: "m11 7-3 5h4l-3 5", key: "b4a64w" }],
["path", { d: "M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935", key: "lre1cr" }],
["path", { d: "M22 14v-4", key: "14q9d5" }],
["path", { d: "M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936", key: "13q5k0" }]
];
var BatteryCharging = createLucideIcon("battery-charging", __iconNode140);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/battery-full.js
var __iconNode141 = [
["path", { d: "M10 10v4", key: "1mb2ec" }],
["path", { d: "M14 10v4", key: "1nt88p" }],
["path", { d: "M22 14v-4", key: "14q9d5" }],
["path", { d: "M6 10v4", key: "1n77qd" }],
["rect", { x: "2", y: "6", width: "16", height: "12", rx: "2", key: "13zb55" }]
];
var BatteryFull = createLucideIcon("battery-full", __iconNode141);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/battery-low.js
var __iconNode142 = [
["path", { d: "M22 14v-4", key: "14q9d5" }],
["path", { d: "M6 14v-4", key: "14a6bd" }],
["rect", { x: "2", y: "6", width: "16", height: "12", rx: "2", key: "13zb55" }]
];
var BatteryLow = createLucideIcon("battery-low", __iconNode142);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/battery-medium.js
var __iconNode143 = [
["path", { d: "M10 14v-4", key: "suye4c" }],
["path", { d: "M22 14v-4", key: "14q9d5" }],
["path", { d: "M6 14v-4", key: "14a6bd" }],
["rect", { x: "2", y: "6", width: "16", height: "12", rx: "2", key: "13zb55" }]
];
var BatteryMedium = createLucideIcon("battery-medium", __iconNode143);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/battery-plus.js
var __iconNode144 = [
["path", { d: "M10 9v6", key: "17i7lo" }],
["path", { d: "M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605", key: "o09yah" }],
["path", { d: "M22 14v-4", key: "14q9d5" }],
["path", { d: "M7 12h6", key: "iekk3h" }],
["path", { d: "M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606", key: "xyqvf1" }]
];
var BatteryPlus = createLucideIcon("battery-plus", __iconNode144);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/battery-warning.js
var __iconNode145 = [
["path", { d: "M10 17h.01", key: "nbq80n" }],
["path", { d: "M10 7v6", key: "nne03l" }],
["path", { d: "M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2", key: "1m83kb" }],
["path", { d: "M22 14v-4", key: "14q9d5" }],
["path", { d: "M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2", key: "h8lgfh" }]
];
var BatteryWarning = createLucideIcon("battery-warning", __iconNode145);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/battery.js
var __iconNode146 = [
["path", { d: "M 22 14 L 22 10", key: "nqc4tb" }],
["rect", { x: "2", y: "6", width: "16", height: "12", rx: "2", key: "13zb55" }]
];
var Battery = createLucideIcon("battery", __iconNode146);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/beaker.js
var __iconNode147 = [
["path", { d: "M4.5 3h15", key: "c7n0jr" }],
["path", { d: "M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3", key: "m1uhx7" }],
["path", { d: "M6 14h12", key: "4cwo0f" }]
];
var Beaker = createLucideIcon("beaker", __iconNode147);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bean-off.js
var __iconNode148 = [
[
"path",
{
d: "M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1",
key: "bq3udt"
}
],
["path", { d: "M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66", key: "17ccse" }],
[
"path",
{
d: "M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04",
key: "18zqgq"
}
],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var BeanOff = createLucideIcon("bean-off", __iconNode148);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bed-double.js
var __iconNode149 = [
["path", { d: "M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8", key: "1k78r4" }],
["path", { d: "M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4", key: "fb3tl2" }],
["path", { d: "M12 4v6", key: "1dcgq2" }],
["path", { d: "M2 18h20", key: "ajqnye" }]
];
var BedDouble = createLucideIcon("bed-double", __iconNode149);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bean.js
var __iconNode150 = [
[
"path",
{
d: "M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z",
key: "1tvzk7"
}
],
["path", { d: "M5.341 10.62a4 4 0 1 0 5.279-5.28", key: "2cyri2" }]
];
var Bean = createLucideIcon("bean", __iconNode150);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bed-single.js
var __iconNode151 = [
["path", { d: "M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8", key: "1wm6mi" }],
["path", { d: "M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4", key: "4k93s5" }],
["path", { d: "M3 18h18", key: "1h113x" }]
];
var BedSingle = createLucideIcon("bed-single", __iconNode151);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bed.js
var __iconNode152 = [
["path", { d: "M2 4v16", key: "vw9hq8" }],
["path", { d: "M2 8h18a2 2 0 0 1 2 2v10", key: "1dgv2r" }],
["path", { d: "M2 17h20", key: "18nfp3" }],
["path", { d: "M6 8v9", key: "1yriud" }]
];
var Bed = createLucideIcon("bed", __iconNode152);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/beer-off.js
var __iconNode153 = [
["path", { d: "M13 13v5", key: "igwfh0" }],
["path", { d: "M17 11.47V8", key: "16yw0g" }],
["path", { d: "M17 11h1a3 3 0 0 1 2.745 4.211", key: "1xbt65" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3", key: "c55o3e" }],
[
"path",
{ d: "M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268", key: "1ydug7" }
],
[
"path",
{
d: "M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12",
key: "q81o7q"
}
],
["path", { d: "M9 14.6V18", key: "20ek98" }]
];
var BeerOff = createLucideIcon("beer-off", __iconNode153);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/beef.js
var __iconNode154 = [
[
"path",
{
d: "M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3",
key: "cisjcv"
}
],
[
"path",
{
d: "m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5",
key: "5byaag"
}
],
["circle", { cx: "12.5", cy: "8.5", r: "2.5", key: "9738u8" }]
];
var Beef = createLucideIcon("beef", __iconNode154);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/beer.js
var __iconNode155 = [
["path", { d: "M17 11h1a3 3 0 0 1 0 6h-1", key: "1yp76v" }],
["path", { d: "M9 12v6", key: "1u1cab" }],
["path", { d: "M13 12v6", key: "1sugkk" }],
[
"path",
{
d: "M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z",
key: "1510fo"
}
],
["path", { d: "M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8", key: "19jb7n" }]
];
var Beer = createLucideIcon("beer", __iconNode155);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bell-dot.js
var __iconNode156 = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0", key: "vwvbt9" }],
[
"path",
{
d: "M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665",
key: "1tip0g"
}
],
["circle", { cx: "18", cy: "8", r: "3", key: "1g0gzu" }]
];
var BellDot = createLucideIcon("bell-dot", __iconNode156);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bell-electric.js
var __iconNode157 = [
["path", { d: "M18.518 17.347A7 7 0 0 1 14 19", key: "1emhpo" }],
["path", { d: "M18.8 4A11 11 0 0 1 20 9", key: "127b67" }],
["path", { d: "M9 9h.01", key: "1q5me6" }],
["circle", { cx: "20", cy: "16", r: "2", key: "1v9bxh" }],
["circle", { cx: "9", cy: "9", r: "7", key: "p2h5vp" }],
["rect", { x: "4", y: "16", width: "10", height: "6", rx: "2", key: "bfnviv" }]
];
var BellElectric = createLucideIcon("bell-electric", __iconNode157);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bell-minus.js
var __iconNode158 = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0", key: "vwvbt9" }],
["path", { d: "M15 8h6", key: "8ybuxh" }],
[
"path",
{
d: "M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12",
key: "bdwj86"
}
]
];
var BellMinus = createLucideIcon("bell-minus", __iconNode158);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bell-off.js
var __iconNode159 = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0", key: "vwvbt9" }],
[
"path",
{
d: "M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742",
key: "178tsu"
}
],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05", key: "1hqiys" }]
];
var BellOff = createLucideIcon("bell-off", __iconNode159);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bell-plus.js
var __iconNode160 = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0", key: "vwvbt9" }],
["path", { d: "M15 8h6", key: "8ybuxh" }],
["path", { d: "M18 5v6", key: "g5ayrv" }],
[
"path",
{
d: "M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332",
key: "1abcvy"
}
]
];
var BellPlus = createLucideIcon("bell-plus", __iconNode160);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bell-ring.js
var __iconNode161 = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0", key: "vwvbt9" }],
["path", { d: "M22 8c0-2.3-.8-4.3-2-6", key: "5bb3ad" }],
[
"path",
{
d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",
key: "11g9vi"
}
],
["path", { d: "M4 2C2.8 3.7 2 5.7 2 8", key: "tap9e0" }]
];
var BellRing = createLucideIcon("bell-ring", __iconNode161);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bell.js
var __iconNode162 = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0", key: "vwvbt9" }],
[
"path",
{
d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",
key: "11g9vi"
}
]
];
var Bell = createLucideIcon("bell", __iconNode162);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/between-horizontal-end.js
var __iconNode163 = [
["rect", { width: "13", height: "7", x: "3", y: "3", rx: "1", key: "11xb64" }],
["path", { d: "m22 15-3-3 3-3", key: "26chmm" }],
["rect", { width: "13", height: "7", x: "3", y: "14", rx: "1", key: "k6ky7n" }]
];
var BetweenHorizontalEnd = createLucideIcon("between-horizontal-end", __iconNode163);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/between-horizontal-start.js
var __iconNode164 = [
["rect", { width: "13", height: "7", x: "8", y: "3", rx: "1", key: "pkso9a" }],
["path", { d: "m2 9 3 3-3 3", key: "1agib5" }],
["rect", { width: "13", height: "7", x: "8", y: "14", rx: "1", key: "1q5fc1" }]
];
var BetweenHorizontalStart = createLucideIcon("between-horizontal-start", __iconNode164);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/between-vertical-end.js
var __iconNode165 = [
["rect", { width: "7", height: "13", x: "3", y: "3", rx: "1", key: "1fdu0f" }],
["path", { d: "m9 22 3-3 3 3", key: "17z65a" }],
["rect", { width: "7", height: "13", x: "14", y: "3", rx: "1", key: "1squn4" }]
];
var BetweenVerticalEnd = createLucideIcon("between-vertical-end", __iconNode165);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/between-vertical-start.js
var __iconNode166 = [
["rect", { width: "7", height: "13", x: "3", y: "8", rx: "1", key: "1fjrkv" }],
["path", { d: "m15 2-3 3-3-3", key: "1uh6eb" }],
["rect", { width: "7", height: "13", x: "14", y: "8", rx: "1", key: "w3fjg8" }]
];
var BetweenVerticalStart = createLucideIcon("between-vertical-start", __iconNode166);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/biceps-flexed.js
var __iconNode167 = [
[
"path",
{
d: "M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1",
key: "1pmlyh"
}
],
["path", { d: "M15 14a5 5 0 0 0-7.584 2", key: "5rb254" }],
["path", { d: "M9.964 6.825C8.019 7.977 9.5 13 8 15", key: "kbvsx9" }]
];
var BicepsFlexed = createLucideIcon("biceps-flexed", __iconNode167);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bike.js
var __iconNode168 = [
["circle", { cx: "18.5", cy: "17.5", r: "3.5", key: "15x4ox" }],
["circle", { cx: "5.5", cy: "17.5", r: "3.5", key: "1noe27" }],
["circle", { cx: "15", cy: "5", r: "1", key: "19l28e" }],
["path", { d: "M12 17.5V14l-3-3 4-3 2 3h2", key: "1npguv" }]
];
var Bike = createLucideIcon("bike", __iconNode168);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/binary.js
var __iconNode169 = [
["rect", { x: "14", y: "14", width: "4", height: "6", rx: "2", key: "p02svl" }],
["rect", { x: "6", y: "4", width: "4", height: "6", rx: "2", key: "xm4xkj" }],
["path", { d: "M6 20h4", key: "1i6q5t" }],
["path", { d: "M14 10h4", key: "ru81e7" }],
["path", { d: "M6 14h2v6", key: "16z9wg" }],
["path", { d: "M14 4h2v6", key: "1idq9u" }]
];
var Binary = createLucideIcon("binary", __iconNode169);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/binoculars.js
var __iconNode170 = [
["path", { d: "M10 10h4", key: "tcdvrf" }],
["path", { d: "M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3", key: "3apit1" }],
[
"path",
{
d: "M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z",
key: "rhpgnw"
}
],
["path", { d: "M 22 16 L 2 16", key: "14lkq7" }],
[
"path",
{
d: "M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z",
key: "104b3k"
}
],
["path", { d: "M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3", key: "14fczp" }]
];
var Binoculars = createLucideIcon("binoculars", __iconNode170);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/biohazard.js
var __iconNode171 = [
["circle", { cx: "12", cy: "11.9", r: "2", key: "e8h31w" }],
["path", { d: "M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6", key: "17bolr" }],
["path", { d: "m8.9 10.1 1.4.8", key: "15ezny" }],
["path", { d: "M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5", key: "wtwa5u" }],
["path", { d: "m15.1 10.1-1.4.8", key: "1r0b28" }],
["path", { d: "M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2", key: "m7qszh" }],
["path", { d: "M12 13.9v1.6", key: "zfyyim" }],
["path", { d: "M13.5 5.4c-1-.2-2-.2-3 0", key: "1bi9q0" }],
["path", { d: "M17 16.4c.7-.7 1.2-1.6 1.5-2.5", key: "1rhjqw" }],
["path", { d: "M5.5 13.9c.3.9.8 1.8 1.5 2.5", key: "8gsud3" }]
];
var Biohazard = createLucideIcon("biohazard", __iconNode171);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bird.js
var __iconNode172 = [
["path", { d: "M16 7h.01", key: "1kdx03" }],
["path", { d: "M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20", key: "oj1oa8" }],
["path", { d: "m20 7 2 .5-2 .5", key: "12nv4d" }],
["path", { d: "M10 18v3", key: "1yea0a" }],
["path", { d: "M14 17.75V21", key: "1pymcb" }],
["path", { d: "M7 18a6 6 0 0 0 3.84-10.61", key: "1npnn0" }]
];
var Bird = createLucideIcon("bird", __iconNode172);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bitcoin.js
var __iconNode173 = [
[
"path",
{
d: "M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727",
key: "yr8idg"
}
]
];
var Bitcoin = createLucideIcon("bitcoin", __iconNode173);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/blend.js
var __iconNode174 = [
["circle", { cx: "9", cy: "9", r: "7", key: "p2h5vp" }],
["circle", { cx: "15", cy: "15", r: "7", key: "19ennj" }]
];
var Blend = createLucideIcon("blend", __iconNode174);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/blinds.js
var __iconNode175 = [
["path", { d: "M3 3h18", key: "o7r712" }],
["path", { d: "M20 7H8", key: "gd2fo2" }],
["path", { d: "M20 11H8", key: "1ynp89" }],
["path", { d: "M10 19h10", key: "19hjk5" }],
["path", { d: "M8 15h12", key: "1yqzne" }],
["path", { d: "M4 3v14", key: "fggqzn" }],
["circle", { cx: "4", cy: "19", r: "2", key: "p3m9r0" }]
];
var Blinds = createLucideIcon("blinds", __iconNode175);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/blocks.js
var __iconNode176 = [
[
"path",
{
d: "M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2",
key: "1ah6g2"
}
],
["rect", { x: "14", y: "2", width: "8", height: "8", rx: "1", key: "88lufb" }]
];
var Blocks = createLucideIcon("blocks", __iconNode176);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bluetooth-connected.js
var __iconNode177 = [
["path", { d: "m7 7 10 10-5 5V2l5 5L7 17", key: "1q5490" }],
["line", { x1: "18", x2: "21", y1: "12", y2: "12", key: "1rsjjs" }],
["line", { x1: "3", x2: "6", y1: "12", y2: "12", key: "11yl8c" }]
];
var BluetoothConnected = createLucideIcon("bluetooth-connected", __iconNode177);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bluetooth-off.js
var __iconNode178 = [
["path", { d: "m17 17-5 5V12l-5 5", key: "v5aci6" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M14.5 9.5 17 7l-5-5v4.5", key: "1kddfz" }]
];
var BluetoothOff = createLucideIcon("bluetooth-off", __iconNode178);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bluetooth-searching.js
var __iconNode179 = [
["path", { d: "m7 7 10 10-5 5V2l5 5L7 17", key: "1q5490" }],
["path", { d: "M20.83 14.83a4 4 0 0 0 0-5.66", key: "k8tn1j" }],
["path", { d: "M18 12h.01", key: "yjnet6" }]
];
var BluetoothSearching = createLucideIcon("bluetooth-searching", __iconNode179);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bluetooth.js
var __iconNode180 = [["path", { d: "m7 7 10 10-5 5V2l5 5L7 17", key: "1q5490" }]];
var Bluetooth = createLucideIcon("bluetooth", __iconNode180);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bold.js
var __iconNode181 = [
[
"path",
{ 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", key: "mg9rjx" }
]
];
var Bold = createLucideIcon("bold", __iconNode181);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bolt.js
var __iconNode182 = [
[
"path",
{
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",
key: "yt0hxn"
}
],
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }]
];
var Bolt = createLucideIcon("bolt", __iconNode182);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bomb.js
var __iconNode183 = [
["circle", { cx: "11", cy: "13", r: "9", key: "hd149" }],
[
"path",
{
d: "M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95",
key: "jp4j1b"
}
],
["path", { d: "m22 2-1.5 1.5", key: "ay92ug" }]
];
var Bomb = createLucideIcon("bomb", __iconNode183);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bone.js
var __iconNode184 = [
[
"path",
{
d: "M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z",
key: "w610uw"
}
]
];
var Bone = createLucideIcon("bone", __iconNode184);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-a.js
var __iconNode185 = [
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "m8 13 4-7 4 7", key: "4rari8" }],
["path", { d: "M9.1 11h5.7", key: "1gkovt" }]
];
var BookA = createLucideIcon("book-a", __iconNode185);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-audio.js
var __iconNode186 = [
["path", { d: "M12 6v7", key: "1f6ttz" }],
["path", { d: "M16 8v3", key: "gejaml" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "M8 8v3", key: "1qzp49" }]
];
var BookAudio = createLucideIcon("book-audio", __iconNode186);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-alert.js
var __iconNode187 = [
["path", { d: "M12 13h.01", key: "y0uutt" }],
["path", { d: "M12 6v3", key: "1m4b9j" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
]
];
var BookAlert = createLucideIcon("book-alert", __iconNode187);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-check.js
var __iconNode188 = [
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "m9 9.5 2 2 4-4", key: "1dth82" }]
];
var BookCheck = createLucideIcon("book-check", __iconNode188);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-copy.js
var __iconNode189 = [
["path", { d: "M2 16V4a2 2 0 0 1 2-2h11", key: "spzkk5" }],
[
"path",
{
d: "M22 18H11a2 2 0 1 0 0 4h10.5a.5.5 0 0 0 .5-.5v-15a.5.5 0 0 0-.5-.5H11a2 2 0 0 0-2 2v12",
key: "1wz07i"
}
],
["path", { d: "M5 14H4a2 2 0 1 0 0 4h1", key: "16gqf9" }]
];
var BookCopy = createLucideIcon("book-copy", __iconNode189);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-dashed.js
var __iconNode190 = [
["path", { d: "M12 17h1.5", key: "1gkc67" }],
["path", { d: "M12 22h1.5", key: "1my7sn" }],
["path", { d: "M12 2h1.5", key: "19tvb7" }],
["path", { d: "M17.5 22H19a1 1 0 0 0 1-1", key: "10akbh" }],
["path", { d: "M17.5 2H19a1 1 0 0 1 1 1v1.5", key: "1vrfjs" }],
["path", { d: "M20 14v3h-2.5", key: "1naeju" }],
["path", { d: "M20 8.5V10", key: "1ctpfu" }],
["path", { d: "M4 10V8.5", key: "1o3zg5" }],
["path", { d: "M4 19.5V14", key: "ob81pf" }],
["path", { d: "M4 4.5A2.5 2.5 0 0 1 6.5 2H8", key: "s8vcyb" }],
["path", { d: "M8 22H6.5a1 1 0 0 1 0-5H8", key: "1cu73q" }]
];
var BookDashed = createLucideIcon("book-dashed", __iconNode190);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-down.js
var __iconNode191 = [
["path", { d: "M12 13V7", key: "h0r20n" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "m9 10 3 3 3-3", key: "zt5b4y" }]
];
var BookDown = createLucideIcon("book-down", __iconNode191);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-headphones.js
var __iconNode192 = [
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "M8 12v-2a4 4 0 0 1 8 0v2", key: "1vsqkj" }],
["circle", { cx: "15", cy: "12", r: "1", key: "1tmaij" }],
["circle", { cx: "9", cy: "12", r: "1", key: "1vctgf" }]
];
var BookHeadphones = createLucideIcon("book-headphones", __iconNode192);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-heart.js
var __iconNode193 = [
[
"path",
{
d: "M16 8.2A2.22 2.22 0 0 0 13.8 6c-.8 0-1.4.3-1.8.9-.4-.6-1-.9-1.8-.9A2.22 2.22 0 0 0 8 8.2c0 .6.3 1.2.7 1.6A226.652 226.652 0 0 0 12 13a404 404 0 0 0 3.3-3.1 2.413 2.413 0 0 0 .7-1.7",
key: "1t75a8"
}
],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
]
];
var BookHeart = createLucideIcon("book-heart", __iconNode193);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-image.js
var __iconNode194 = [
["path", { d: "m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17", key: "q6ojf0" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["circle", { cx: "10", cy: "8", r: "2", key: "2qkj4p" }]
];
var BookImage = createLucideIcon("book-image", __iconNode194);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-key.js
var __iconNode195 = [
["path", { d: "m19 3 1 1", key: "ze14oc" }],
["path", { d: "m20 2-4.5 4.5", key: "1sppr8" }],
["path", { d: "M20 7.898V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20", key: "1xzogz" }],
["path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2h7.844", key: "vtdg6h" }],
["circle", { cx: "14", cy: "8", r: "2", key: "u49eql" }]
];
var BookKey = createLucideIcon("book-key", __iconNode195);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-lock.js
var __iconNode196 = [
["path", { d: "M18 6V4a2 2 0 1 0-4 0v2", key: "1aquzs" }],
["path", { d: "M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20", key: "1rkj32" }],
["path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10", key: "18wgow" }],
["rect", { x: "12", y: "6", width: "8", height: "5", rx: "1", key: "73l30o" }]
];
var BookLock = createLucideIcon("book-lock", __iconNode196);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-marked.js
var __iconNode197 = [
["path", { d: "M10 2v8l3-3 3 3V2", key: "sqw3rj" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
]
];
var BookMarked = createLucideIcon("book-marked", __iconNode197);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-minus.js
var __iconNode198 = [
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "M9 10h6", key: "9gxzsh" }]
];
var BookMinus = createLucideIcon("book-minus", __iconNode198);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-open-check.js
var __iconNode199 = [
["path", { d: "M12 21V7", key: "gj6g52" }],
["path", { d: "m16 12 2 2 4-4", key: "mdajum" }],
[
"path",
{
d: "M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3",
key: "8arnkb"
}
]
];
var BookOpenCheck = createLucideIcon("book-open-check", __iconNode199);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-open-text.js
var __iconNode200 = [
["path", { d: "M12 7v14", key: "1akyts" }],
["path", { d: "M16 12h2", key: "7q9ll5" }],
["path", { d: "M16 8h2", key: "msurwy" }],
[
"path",
{
d: "M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",
key: "ruj8y"
}
],
["path", { d: "M6 12h2", key: "32wvfc" }],
["path", { d: "M6 8h2", key: "30oboj" }]
];
var BookOpenText = createLucideIcon("book-open-text", __iconNode200);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-open.js
var __iconNode201 = [
["path", { d: "M12 7v14", key: "1akyts" }],
[
"path",
{
d: "M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",
key: "ruj8y"
}
]
];
var BookOpen = createLucideIcon("book-open", __iconNode201);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-plus.js
var __iconNode202 = [
["path", { d: "M12 7v6", key: "lw1j43" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "M9 10h6", key: "9gxzsh" }]
];
var BookPlus = createLucideIcon("book-plus", __iconNode202);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-text.js
var __iconNode203 = [
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "M8 11h8", key: "vwpz6n" }],
["path", { d: "M8 7h6", key: "1f0q6e" }]
];
var BookText = createLucideIcon("book-text", __iconNode203);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-type.js
var __iconNode204 = [
["path", { d: "M10 13h4", key: "ytezjc" }],
["path", { d: "M12 6v7", key: "1f6ttz" }],
["path", { d: "M16 8V6H8v2", key: "x8j6u4" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
]
];
var BookType = createLucideIcon("book-type", __iconNode204);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-up-2.js
var __iconNode205 = [
["path", { d: "M12 13V7", key: "h0r20n" }],
["path", { d: "M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20", key: "161d7n" }],
["path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2", key: "1lorq7" }],
["path", { d: "m9 10 3-3 3 3", key: "11gsxs" }],
["path", { d: "m9 5 3-3 3 3", key: "l8vdw6" }]
];
var BookUp2 = createLucideIcon("book-up-2", __iconNode205);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-up.js
var __iconNode206 = [
["path", { d: "M12 13V7", key: "h0r20n" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "m9 10 3-3 3 3", key: "11gsxs" }]
];
var BookUp = createLucideIcon("book-up", __iconNode206);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-x.js
var __iconNode207 = [
["path", { d: "m14.5 7-5 5", key: "dy991v" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["path", { d: "m9.5 7 5 5", key: "s45iea" }]
];
var BookX = createLucideIcon("book-x", __iconNode207);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book-user.js
var __iconNode208 = [
["path", { d: "M15 13a3 3 0 1 0-6 0", key: "10j68g" }],
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
],
["circle", { cx: "12", cy: "8", r: "2", key: "1822b1" }]
];
var BookUser = createLucideIcon("book-user", __iconNode208);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/book.js
var __iconNode209 = [
[
"path",
{
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
key: "k3hazp"
}
]
];
var Book = createLucideIcon("book", __iconNode209);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bookmark-check.js
var __iconNode210 = [
["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z", key: "169p4p" }],
["path", { d: "m9 10 2 2 4-4", key: "1gnqz4" }]
];
var BookmarkCheck = createLucideIcon("bookmark-check", __iconNode210);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bookmark-minus.js
var __iconNode211 = [
["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z", key: "1fy3hk" }],
["line", { x1: "15", x2: "9", y1: "10", y2: "10", key: "1gty7f" }]
];
var BookmarkMinus = createLucideIcon("bookmark-minus", __iconNode211);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bookmark-plus.js
var __iconNode212 = [
["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z", key: "1fy3hk" }],
["line", { x1: "12", x2: "12", y1: "7", y2: "13", key: "1cppfj" }],
["line", { x1: "15", x2: "9", y1: "10", y2: "10", key: "1gty7f" }]
];
var BookmarkPlus = createLucideIcon("bookmark-plus", __iconNode212);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bookmark-x.js
var __iconNode213 = [
["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z", key: "169p4p" }],
["path", { d: "m14.5 7.5-5 5", key: "3lb6iw" }],
["path", { d: "m9.5 7.5 5 5", key: "ko136h" }]
];
var BookmarkX = createLucideIcon("bookmark-x", __iconNode213);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bookmark.js
var __iconNode214 = [
["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z", key: "1fy3hk" }]
];
var Bookmark = createLucideIcon("bookmark", __iconNode214);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/boom-box.js
var __iconNode215 = [
["path", { d: "M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4", key: "vvzvr1" }],
["path", { d: "M8 8v1", key: "xcqmfk" }],
["path", { d: "M12 8v1", key: "1rj8u4" }],
["path", { d: "M16 8v1", key: "1q12zr" }],
["rect", { width: "20", height: "12", x: "2", y: "9", rx: "2", key: "igpb89" }],
["circle", { cx: "8", cy: "15", r: "2", key: "fa4a8s" }],
["circle", { cx: "16", cy: "15", r: "2", key: "14c3ya" }]
];
var BoomBox = createLucideIcon("boom-box", __iconNode215);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot-message-square.js
var __iconNode216 = [
["path", { d: "M12 6V2H8", key: "1155em" }],
["path", { d: "m8 18-4 4V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2Z", key: "w2lp3e" }],
["path", { d: "M2 12h2", key: "1t8f8n" }],
["path", { d: "M9 11v2", key: "1ueba0" }],
["path", { d: "M15 11v2", key: "i11awn" }],
["path", { d: "M20 12h2", key: "1q8mjw" }]
];
var BotMessageSquare = createLucideIcon("bot-message-square", __iconNode216);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot-off.js
var __iconNode217 = [
["path", { d: "M13.67 8H18a2 2 0 0 1 2 2v4.33", key: "7az073" }],
["path", { d: "M2 14h2", key: "vft8re" }],
["path", { d: "M20 14h2", key: "4cs60a" }],
["path", { d: "M22 22 2 2", key: "1r8tn9" }],
["path", { d: "M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586", key: "s09a7a" }],
["path", { d: "M9 13v2", key: "rq6x2g" }],
["path", { d: "M9.67 4H12v2.33", key: "110xot" }]
];
var BotOff = createLucideIcon("bot-off", __iconNode217);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot.js
var __iconNode218 = [
["path", { d: "M12 8V4H8", key: "hb8ula" }],
["rect", { width: "16", height: "12", x: "4", y: "8", rx: "2", key: "enze0r" }],
["path", { d: "M2 14h2", key: "vft8re" }],
["path", { d: "M20 14h2", key: "4cs60a" }],
["path", { d: "M15 13v2", key: "1xurst" }],
["path", { d: "M9 13v2", key: "rq6x2g" }]
];
var Bot = createLucideIcon("bot", __iconNode218);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bottle-wine.js
var __iconNode219 = [
[
"path",
{
d: "M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z",
key: "blqgoc"
}
],
["path", { d: "M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4", key: "43jbee" }]
];
var BottleWine = createLucideIcon("bottle-wine", __iconNode219);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bow-arrow.js
var __iconNode220 = [
["path", { d: "M17 3h4v4", key: "19p9u1" }],
[
"path",
{ d: "M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17", key: "12t3w9" }
],
["path", { d: "M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05", key: "ogng5l" }],
[
"path",
{
d: "M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z",
key: "8v3fy2"
}
],
["path", { d: "M9.707 14.293 21 3", key: "ydm3bn" }]
];
var BowArrow = createLucideIcon("bow-arrow", __iconNode220);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/box.js
var __iconNode221 = [
[
"path",
{
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",
key: "hh9hay"
}
],
["path", { d: "m3.3 7 8.7 5 8.7-5", key: "g66t2b" }],
["path", { d: "M12 22V12", key: "d0xqtd" }]
];
var Box = createLucideIcon("box", __iconNode221);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/boxes.js
var __iconNode222 = [
[
"path",
{
d: "M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z",
key: "lc1i9w"
}
],
["path", { d: "m7 16.5-4.74-2.85", key: "1o9zyk" }],
["path", { d: "m7 16.5 5-3", key: "va8pkn" }],
["path", { d: "M7 16.5v5.17", key: "jnp8gn" }],
[
"path",
{
d: "M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z",
key: "8zsnat"
}
],
["path", { d: "m17 16.5-5-3", key: "8arw3v" }],
["path", { d: "m17 16.5 4.74-2.85", key: "8rfmw" }],
["path", { d: "M17 16.5v5.17", key: "k6z78m" }],
[
"path",
{
d: "M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z",
key: "1xygjf"
}
],
["path", { d: "M12 8 7.26 5.15", key: "1vbdud" }],
["path", { d: "m12 8 4.74-2.85", key: "3rx089" }],
["path", { d: "M12 13.5V8", key: "1io7kd" }]
];
var Boxes = createLucideIcon("boxes", __iconNode222);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/braces.js
var __iconNode223 = [
[
"path",
{ d: "M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1", key: "ezmyqa" }
],
[
"path",
{
d: "M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1",
key: "e1hn23"
}
]
];
var Braces = createLucideIcon("braces", __iconNode223);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/brackets.js
var __iconNode224 = [
["path", { d: "M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3", key: "1kt8lf" }],
["path", { d: "M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3", key: "gduv9" }]
];
var Brackets = createLucideIcon("brackets", __iconNode224);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/brain-circuit.js
var __iconNode225 = [
[
"path",
{
d: "M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",
key: "l5xja"
}
],
["path", { d: "M9 13a4.5 4.5 0 0 0 3-4", key: "10igwf" }],
["path", { d: "M6.003 5.125A3 3 0 0 0 6.401 6.5", key: "105sqy" }],
["path", { d: "M3.477 10.896a4 4 0 0 1 .585-.396", key: "ql3yin" }],
["path", { d: "M6 18a4 4 0 0 1-1.967-.516", key: "2e4loj" }],
["path", { d: "M12 13h4", key: "1ku699" }],
["path", { d: "M12 18h6a2 2 0 0 1 2 2v1", key: "105ag5" }],
["path", { d: "M12 8h8", key: "1lhi5i" }],
["path", { d: "M16 8V5a2 2 0 0 1 2-2", key: "u6izg6" }],
["circle", { cx: "16", cy: "13", r: ".5", key: "ry7gng" }],
["circle", { cx: "18", cy: "3", r: ".5", key: "1aiba7" }],
["circle", { cx: "20", cy: "21", r: ".5", key: "yhc1fs" }],
["circle", { cx: "20", cy: "8", r: ".5", key: "1e43v0" }]
];
var BrainCircuit = createLucideIcon("brain-circuit", __iconNode225);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/brain-cog.js
var __iconNode226 = [
["path", { d: "m10.852 14.772-.383.923", key: "11vil6" }],
["path", { d: "m10.852 9.228-.383-.923", key: "1fjppe" }],
["path", { d: "m13.148 14.772.382.924", key: "je3va1" }],
["path", { d: "m13.531 8.305-.383.923", key: "18epck" }],
["path", { d: "m14.772 10.852.923-.383", key: "k9m8cz" }],
["path", { d: "m14.772 13.148.923.383", key: "1xvhww" }],
[
"path",
{
d: "M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771",
key: "jcbbz1"
}
],
["path", { d: "M17.998 5.125a4 4 0 0 1 2.525 5.771", key: "1kkn7e" }],
["path", { d: "M19.505 10.294a4 4 0 0 1-1.5 7.706", key: "18bmuc" }],
[
"path",
{
d: "M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516",
key: "uozx0d"
}
],
["path", { d: "M4.5 10.291A4 4 0 0 0 6 18", key: "whdemb" }],
["path", { d: "M6.002 5.125a3 3 0 0 0 .4 1.375", key: "1kqy2g" }],
["path", { d: "m9.228 10.852-.923-.383", key: "1wtb30" }],
["path", { d: "m9.228 13.148-.923.383", key: "1a830x" }],
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
];
var BrainCog = createLucideIcon("brain-cog", __iconNode226);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/brain.js
var __iconNode227 = [
[
"path",
{
d: "M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",
key: "l5xja"
}
],
[
"path",
{
d: "M12 5a3 3 0 1 1 5.997.125 4 4 0 0 1 2.526 5.77 4 4 0 0 1-.556 6.588A4 4 0 1 1 12 18Z",
key: "ep3f8r"
}
],
["path", { d: "M15 13a4.5 4.5 0 0 1-3-4 4.5 4.5 0 0 1-3 4", key: "1p4c4q" }],
["path", { d: "M17.599 6.5a3 3 0 0 0 .399-1.375", key: "tmeiqw" }],
["path", { d: "M6.003 5.125A3 3 0 0 0 6.401 6.5", key: "105sqy" }],
["path", { d: "M3.477 10.896a4 4 0 0 1 .585-.396", key: "ql3yin" }],
["path", { d: "M19.938 10.5a4 4 0 0 1 .585.396", key: "1qfode" }],
["path", { d: "M6 18a4 4 0 0 1-1.967-.516", key: "2e4loj" }],
["path", { d: "M19.967 17.484A4 4 0 0 1 18 18", key: "159ez6" }]
];
var Brain = createLucideIcon("brain", __iconNode227);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/brick-wall-fire.js
var __iconNode228 = [
["path", { d: "M16 3v2.107", key: "gq8xun" }],
[
"path",
{
d: "M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9",
key: "1l2pih"
}
],
[
"path",
{ d: "M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938", key: "jrnqjp" }
],
["path", { d: "M3 15h5.253", key: "xqg7rb" }],
["path", { d: "M3 9h8.228", key: "1ppb70" }],
["path", { d: "M8 15v6", key: "1stoo3" }],
["path", { d: "M8 3v6", key: "vlvjmk" }]
];
var BrickWallFire = createLucideIcon("brick-wall-fire", __iconNode228);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/brick-wall.js
var __iconNode229 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M12 9v6", key: "199k2o" }],
["path", { d: "M16 15v6", key: "8rj2es" }],
["path", { d: "M16 3v6", key: "1j6rpj" }],
["path", { d: "M3 15h18", key: "5xshup" }],
["path", { d: "M3 9h18", key: "1pudct" }],
["path", { d: "M8 15v6", key: "1stoo3" }],
["path", { d: "M8 3v6", key: "vlvjmk" }]
];
var BrickWall = createLucideIcon("brick-wall", __iconNode229);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/briefcase-business.js
var __iconNode230 = [
["path", { d: "M12 12h.01", key: "1mp3jc" }],
["path", { d: "M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2", key: "1ksdt3" }],
["path", { d: "M22 13a18.15 18.15 0 0 1-20 0", key: "12hx5q" }],
["rect", { width: "20", height: "14", x: "2", y: "6", rx: "2", key: "i6l2r4" }]
];
var BriefcaseBusiness = createLucideIcon("briefcase-business", __iconNode230);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/briefcase-conveyor-belt.js
var __iconNode231 = [
["path", { d: "M10 20v2", key: "1n8e1g" }],
["path", { d: "M14 20v2", key: "1lq872" }],
["path", { d: "M18 20v2", key: "10uadw" }],
["path", { d: "M21 20H3", key: "kdqkdp" }],
["path", { d: "M6 20v2", key: "a9bc87" }],
["path", { d: "M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12", key: "17n9tx" }],
["rect", { x: "4", y: "6", width: "16", height: "10", rx: "2", key: "1097i5" }]
];
var BriefcaseConveyorBelt = createLucideIcon("briefcase-conveyor-belt", __iconNode231);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/briefcase-medical.js
var __iconNode232 = [
["path", { d: "M12 11v4", key: "a6ujw6" }],
["path", { d: "M14 13h-4", key: "1pl8zg" }],
["path", { d: "M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2", key: "1ksdt3" }],
["path", { d: "M18 6v14", key: "1mu4gy" }],
["path", { d: "M6 6v14", key: "1s15cj" }],
["rect", { width: "20", height: "14", x: "2", y: "6", rx: "2", key: "i6l2r4" }]
];
var BriefcaseMedical = createLucideIcon("briefcase-medical", __iconNode232);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/briefcase.js
var __iconNode233 = [
["path", { d: "M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16", key: "jecpp" }],
["rect", { width: "20", height: "14", x: "2", y: "6", rx: "2", key: "i6l2r4" }]
];
var Briefcase = createLucideIcon("briefcase", __iconNode233);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bring-to-front.js
var __iconNode234 = [
["rect", { x: "8", y: "8", width: "8", height: "8", rx: "2", key: "yj20xf" }],
["path", { d: "M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2", key: "1ltk23" }],
["path", { d: "M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2", key: "1q24h9" }]
];
var BringToFront = createLucideIcon("bring-to-front", __iconNode234);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/brush-cleaning.js
var __iconNode235 = [
["path", { d: "m16 22-1-4", key: "1ow2iv" }],
[
"path",
{
d: "M19 13.99a1 1 0 0 0 1-1V12a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v.99a1 1 0 0 0 1 1",
key: "iw8jdu"
}
],
["path", { d: "M5 14h14l1.973 6.767A1 1 0 0 1 20 22H4a1 1 0 0 1-.973-1.233z", key: "1soew8" }],
["path", { d: "m8 22 1-4", key: "s3unb" }]
];
var BrushCleaning = createLucideIcon("brush-cleaning", __iconNode235);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/brush.js
var __iconNode236 = [
["path", { d: "m11 10 3 3", key: "fzmg1i" }],
[
"path",
{ d: "M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z", key: "p4q2r7" }
],
["path", { d: "M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031", key: "wy6l02" }]
];
var Brush = createLucideIcon("brush", __iconNode236);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bubbles.js
var __iconNode237 = [
["path", { d: "M7.2 14.8a2 2 0 0 1 2 2", key: "1tw9gg" }],
["circle", { cx: "18.5", cy: "8.5", r: "3.5", key: "1wadoa" }],
["circle", { cx: "7.5", cy: "16.5", r: "5.5", key: "6mdt3g" }],
["circle", { cx: "7.5", cy: "4.5", r: "2.5", key: "637s54" }]
];
var Bubbles = createLucideIcon("bubbles", __iconNode237);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bug-off.js
var __iconNode238 = [
["path", { d: "M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2", key: "vl8zik" }],
["path", { d: "M14.12 3.88 16 2", key: "qol33r" }],
["path", { d: "M22 13h-4v-2a4 4 0 0 0-4-4h-1.3", key: "1ou0bd" }],
["path", { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4", key: "18gb23" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13", key: "1njkjs" }],
["path", { d: "M12 20v-8", key: "i3yub9" }],
["path", { d: "M6 13H2", key: "82j7cp" }],
["path", { d: "M3 21c0-2.1 1.7-3.9 3.8-4", key: "4p0ekp" }]
];
var BugOff = createLucideIcon("bug-off", __iconNode238);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bug-play.js
var __iconNode239 = [
[
"path",
{
d: "M12.765 21.522a.5.5 0 0 1-.765-.424v-8.196a.5.5 0 0 1 .765-.424l5.878 3.674a1 1 0 0 1 0 1.696z",
key: "17shqo"
}
],
["path", { d: "M14.12 3.88 16 2", key: "qol33r" }],
["path", { d: "M18 11a4 4 0 0 0-4-4h-4a4 4 0 0 0-4 4v3a6.1 6.1 0 0 0 2 4.5", key: "1tjixy" }],
["path", { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4", key: "18gb23" }],
["path", { d: "M3 21c0-2.1 1.7-3.9 3.8-4", key: "4p0ekp" }],
["path", { d: "M6 13H2", key: "82j7cp" }],
["path", { d: "M6.53 9C4.6 8.8 3 7.1 3 5", key: "32zzws" }],
["path", { d: "m8 2 1.88 1.88", key: "fmnt4t" }],
["path", { d: "M9 7.13v-1a3.003 3.003 0 1 1 6 0v1", key: "d7y7pr" }]
];
var BugPlay = createLucideIcon("bug-play", __iconNode239);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bug.js
var __iconNode240 = [
["path", { d: "m8 2 1.88 1.88", key: "fmnt4t" }],
["path", { d: "M14.12 3.88 16 2", key: "qol33r" }],
["path", { d: "M9 7.13v-1a3.003 3.003 0 1 1 6 0v1", key: "d7y7pr" }],
[
"path",
{
d: "M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6",
key: "xs1cw7"
}
],
["path", { d: "M12 20v-9", key: "1qisl0" }],
["path", { d: "M6.53 9C4.6 8.8 3 7.1 3 5", key: "32zzws" }],
["path", { d: "M6 13H2", key: "82j7cp" }],
["path", { d: "M3 21c0-2.1 1.7-3.9 3.8-4", key: "4p0ekp" }],
["path", { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4", key: "18gb23" }],
["path", { d: "M22 13h-4", key: "1jl80f" }],
["path", { d: "M17.2 17c2.1.1 3.8 1.9 3.8 4", key: "k3fwyw" }]
];
var Bug = createLucideIcon("bug", __iconNode240);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/building-2.js
var __iconNode241 = [
["path", { d: "M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z", key: "1b4qmf" }],
["path", { d: "M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2", key: "i71pzd" }],
["path", { d: "M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2", key: "10jefs" }],
["path", { d: "M10 6h4", key: "1itunk" }],
["path", { d: "M10 10h4", key: "tcdvrf" }],
["path", { d: "M10 14h4", key: "kelpxr" }],
["path", { d: "M10 18h4", key: "1ulq68" }]
];
var Building2 = createLucideIcon("building-2", __iconNode241);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/building.js
var __iconNode242 = [
["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", ry: "2", key: "76otgf" }],
["path", { d: "M9 22v-4h6v4", key: "r93iot" }],
["path", { d: "M8 6h.01", key: "1dz90k" }],
["path", { d: "M16 6h.01", key: "1x0f13" }],
["path", { d: "M12 6h.01", key: "1vi96p" }],
["path", { d: "M12 10h.01", key: "1nrarc" }],
["path", { d: "M12 14h.01", key: "1etili" }],
["path", { d: "M16 10h.01", key: "1m94wz" }],
["path", { d: "M16 14h.01", key: "1gbofw" }],
["path", { d: "M8 10h.01", key: "19clt8" }],
["path", { d: "M8 14h.01", key: "6423bh" }]
];
var Building = createLucideIcon("building", __iconNode242);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bus-front.js
var __iconNode243 = [
["path", { d: "M4 6 2 7", key: "1mqr15" }],
["path", { d: "M10 6h4", key: "1itunk" }],
["path", { d: "m22 7-2-1", key: "1umjhc" }],
["rect", { width: "16", height: "16", x: "4", y: "3", rx: "2", key: "1wxw4b" }],
["path", { d: "M4 11h16", key: "mpoxn0" }],
["path", { d: "M8 15h.01", key: "a7atzg" }],
["path", { d: "M16 15h.01", key: "rnfrdf" }],
["path", { d: "M6 19v2", key: "1loha6" }],
["path", { d: "M18 21v-2", key: "sqyl04" }]
];
var BusFront = createLucideIcon("bus-front", __iconNode243);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bus.js
var __iconNode244 = [
["path", { d: "M8 6v6", key: "18i7km" }],
["path", { d: "M15 6v6", key: "1sg6z9" }],
["path", { d: "M2 12h19.6", key: "de5uta" }],
[
"path",
{
d: "M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3",
key: "1wwztk"
}
],
["circle", { cx: "7", cy: "18", r: "2", key: "19iecd" }],
["path", { d: "M9 18h5", key: "lrx6i" }],
["circle", { cx: "16", cy: "18", r: "2", key: "1v4tcr" }]
];
var Bus = createLucideIcon("bus", __iconNode244);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cable-car.js
var __iconNode245 = [
["path", { d: "M10 3h.01", key: "lbucoy" }],
["path", { d: "M14 2h.01", key: "1k8aa1" }],
["path", { d: "m2 9 20-5", key: "1kz0j5" }],
["path", { d: "M12 12V6.5", key: "1vbrij" }],
["rect", { width: "16", height: "10", x: "4", y: "12", rx: "3", key: "if91er" }],
["path", { d: "M9 12v5", key: "3anwtq" }],
["path", { d: "M15 12v5", key: "5xh3zn" }],
["path", { d: "M4 17h16", key: "g4d7ey" }]
];
var CableCar = createLucideIcon("cable-car", __iconNode245);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cable.js
var __iconNode246 = [
[
"path",
{
d: "M17 21v-2a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1",
key: "10bnsj"
}
],
["path", { d: "M19 15V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V9", key: "1eqmu1" }],
["path", { d: "M21 21v-2h-4", key: "14zm7j" }],
["path", { d: "M3 5h4V3", key: "z442eg" }],
[
"path",
{ d: "M7 5a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1V3", key: "ebdjd7" }
]
];
var Cable = createLucideIcon("cable", __iconNode246);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cake-slice.js
var __iconNode247 = [
["circle", { cx: "9", cy: "7", r: "2", key: "1305pl" }],
[
"path",
{ d: "M7.2 7.9 3 11v9c0 .6.4 1 1 1h16c.6 0 1-.4 1-1v-9c0-2-3-6-7-8l-3.6 2.6", key: "xle13f" }
],
["path", { d: "M16 13H3", key: "1wpj08" }],
["path", { d: "M16 17H3", key: "3lvfcd" }]
];
var CakeSlice = createLucideIcon("cake-slice", __iconNode247);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cake.js
var __iconNode248 = [
["path", { d: "M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8", key: "1w3rig" }],
["path", { d: "M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1", key: "n2jgmb" }],
["path", { d: "M2 21h20", key: "1nyx9w" }],
["path", { d: "M7 8v3", key: "1qtyvj" }],
["path", { d: "M12 8v3", key: "hwp4zt" }],
["path", { d: "M17 8v3", key: "1i6e5u" }],
["path", { d: "M7 4h.01", key: "1bh4kh" }],
["path", { d: "M12 4h.01", key: "1ujb9j" }],
["path", { d: "M17 4h.01", key: "1upcoc" }]
];
var Cake = createLucideIcon("cake", __iconNode248);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calculator.js
var __iconNode249 = [
["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", key: "1nb95v" }],
["line", { x1: "8", x2: "16", y1: "6", y2: "6", key: "x4nwl0" }],
["line", { x1: "16", x2: "16", y1: "14", y2: "18", key: "wjye3r" }],
["path", { d: "M16 10h.01", key: "1m94wz" }],
["path", { d: "M12 10h.01", key: "1nrarc" }],
["path", { d: "M8 10h.01", key: "19clt8" }],
["path", { d: "M12 14h.01", key: "1etili" }],
["path", { d: "M8 14h.01", key: "6423bh" }],
["path", { d: "M12 18h.01", key: "mhygvu" }],
["path", { d: "M8 18h.01", key: "lrp35t" }]
];
var Calculator = createLucideIcon("calculator", __iconNode249);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-1.js
var __iconNode250 = [
["path", { d: "M11 14h1v4", key: "fy54vd" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M8 2v4", key: "1cmpym" }],
["rect", { x: "3", y: "4", width: "18", height: "18", rx: "2", key: "12vinp" }]
];
var Calendar1 = createLucideIcon("calendar-1", __iconNode250);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-arrow-down.js
var __iconNode251 = [
["path", { d: "m14 18 4 4 4-4", key: "1waygx" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M18 14v8", key: "irew45" }],
[
"path",
{ d: "M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343", key: "bse4f3" }
],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M8 2v4", key: "1cmpym" }]
];
var CalendarArrowDown = createLucideIcon("calendar-arrow-down", __iconNode251);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-arrow-up.js
var __iconNode252 = [
["path", { d: "m14 18 4-4 4 4", key: "ftkppy" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M18 22v-8", key: "su0gjh" }],
["path", { d: "M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9", key: "1exg90" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M8 2v4", key: "1cmpym" }]
];
var CalendarArrowUp = createLucideIcon("calendar-arrow-up", __iconNode252);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-check-2.js
var __iconNode253 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8", key: "bce9hv" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "m16 20 2 2 4-4", key: "13tcca" }]
];
var CalendarCheck2 = createLucideIcon("calendar-check-2", __iconNode253);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-check.js
var __iconNode254 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "m9 16 2 2 4-4", key: "19s6y9" }]
];
var CalendarCheck = createLucideIcon("calendar-check", __iconNode254);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-clock.js
var __iconNode255 = [
["path", { d: "M16 14v2.2l1.6 1", key: "fo4ql5" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5", key: "1osxxc" }],
["path", { d: "M3 10h5", key: "r794hk" }],
["path", { d: "M8 2v4", key: "1cmpym" }],
["circle", { cx: "16", cy: "16", r: "6", key: "qoo3c4" }]
];
var CalendarClock = createLucideIcon("calendar-clock", __iconNode255);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-cog.js
var __iconNode256 = [
["path", { d: "m15.228 16.852-.923-.383", key: "npixar" }],
["path", { d: "m15.228 19.148-.923.383", key: "51cr3n" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "m16.47 14.305.382.923", key: "obybxd" }],
["path", { d: "m16.852 20.772-.383.924", key: "dpfhf9" }],
["path", { d: "m19.148 15.228.383-.923", key: "1reyyz" }],
["path", { d: "m19.53 21.696-.382-.924", key: "1goivc" }],
["path", { d: "m20.772 16.852.924-.383", key: "htqkph" }],
["path", { d: "m20.772 19.148.924.383", key: "9w9pjp" }],
["path", { d: "M21 11V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6", key: "1dju0s" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M8 2v4", key: "1cmpym" }],
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }]
];
var CalendarCog = createLucideIcon("calendar-cog", __iconNode256);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-days.js
var __iconNode257 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M8 14h.01", key: "6423bh" }],
["path", { d: "M12 14h.01", key: "1etili" }],
["path", { d: "M16 14h.01", key: "1gbofw" }],
["path", { d: "M8 18h.01", key: "lrp35t" }],
["path", { d: "M12 18h.01", key: "mhygvu" }],
["path", { d: "M16 18h.01", key: "kzsmim" }]
];
var CalendarDays = createLucideIcon("calendar-days", __iconNode257);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-fold.js
var __iconNode258 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M21 17V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11Z", key: "kg77oy" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M15 22v-4a2 2 0 0 1 2-2h4", key: "1gnbqr" }]
];
var CalendarFold = createLucideIcon("calendar-fold", __iconNode258);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-heart.js
var __iconNode259 = [
["path", { d: "M3 10h18V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7", key: "136lmk" }],
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
[
"path",
{
d: "M21.29 14.7a2.43 2.43 0 0 0-2.65-.52c-.3.12-.57.3-.8.53l-.34.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L17.5 22l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z",
key: "1t7hil"
}
]
];
var CalendarHeart = createLucideIcon("calendar-heart", __iconNode259);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-minus-2.js
var __iconNode260 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M10 16h4", key: "17e571" }]
];
var CalendarMinus2 = createLucideIcon("calendar-minus-2", __iconNode260);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-minus.js
var __iconNode261 = [
["path", { d: "M16 19h6", key: "xwg31i" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5", key: "1scpom" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M8 2v4", key: "1cmpym" }]
];
var CalendarMinus = createLucideIcon("calendar-minus", __iconNode261);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-off.js
var __iconNode262 = [
["path", { d: "M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18", key: "16swn3" }],
["path", { d: "M21 15.5V6a2 2 0 0 0-2-2H9.5", key: "yhw86o" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M3 10h7", key: "1wap6i" }],
["path", { d: "M21 10h-5.5", key: "quycpq" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var CalendarOff = createLucideIcon("calendar-off", __iconNode262);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-plus-2.js
var __iconNode263 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M10 16h4", key: "17e571" }],
["path", { d: "M12 14v4", key: "1thi36" }]
];
var CalendarPlus2 = createLucideIcon("calendar-plus-2", __iconNode263);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-plus.js
var __iconNode264 = [
["path", { d: "M16 19h6", key: "xwg31i" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M19 16v6", key: "tddt3s" }],
["path", { d: "M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5", key: "1glfrc" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M8 2v4", key: "1cmpym" }]
];
var CalendarPlus = createLucideIcon("calendar-plus", __iconNode264);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-range.js
var __iconNode265 = [
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M17 14h-6", key: "bkmgh3" }],
["path", { d: "M13 18H7", key: "bb0bb7" }],
["path", { d: "M7 14h.01", key: "1qa3f1" }],
["path", { d: "M17 18h.01", key: "1bdyru" }]
];
var CalendarRange = createLucideIcon("calendar-range", __iconNode265);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-sync.js
var __iconNode266 = [
["path", { d: "M11 10v4h4", key: "172dkj" }],
["path", { d: "m11 14 1.535-1.605a5 5 0 0 1 8 1.5", key: "vu0qm5" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "m21 18-1.535 1.605a5 5 0 0 1-8-1.5", key: "1qgeyt" }],
["path", { d: "M21 22v-4h-4", key: "hrummi" }],
["path", { d: "M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3", key: "mctw84" }],
["path", { d: "M3 10h4", key: "1el30a" }],
["path", { d: "M8 2v4", key: "1cmpym" }]
];
var CalendarSync = createLucideIcon("calendar-sync", __iconNode266);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-search.js
var __iconNode267 = [
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25", key: "1jrsq6" }],
["path", { d: "m22 22-1.875-1.875", key: "13zax7" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "M8 2v4", key: "1cmpym" }],
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }]
];
var CalendarSearch = createLucideIcon("calendar-search", __iconNode267);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-x-2.js
var __iconNode268 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8", key: "3spt84" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "m17 22 5-5", key: "1k6ppv" }],
["path", { d: "m17 17 5 5", key: "p7ous7" }]
];
var CalendarX2 = createLucideIcon("calendar-x-2", __iconNode268);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar-x.js
var __iconNode269 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
["path", { d: "M3 10h18", key: "8toen8" }],
["path", { d: "m14 14-4 4", key: "rymu2i" }],
["path", { d: "m10 14 4 4", key: "3sz06r" }]
];
var CalendarX = createLucideIcon("calendar-x", __iconNode269);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/calendar.js
var __iconNode270 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
["path", { d: "M3 10h18", key: "8toen8" }]
];
var Calendar = createLucideIcon("calendar", __iconNode270);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/camera-off.js
var __iconNode271 = [
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }],
["path", { d: "M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16", key: "qmtpty" }],
["path", { d: "M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5", key: "1ufyfc" }],
["path", { d: "M14.121 15.121A3 3 0 1 1 9.88 10.88", key: "11zox6" }]
];
var CameraOff = createLucideIcon("camera-off", __iconNode271);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/camera.js
var __iconNode272 = [
[
"path",
{
d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z",
key: "1tc9qg"
}
],
["circle", { cx: "12", cy: "13", r: "3", key: "1vg3eu" }]
];
var Camera = createLucideIcon("camera", __iconNode272);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/candy-cane.js
var __iconNode273 = [
[
"path",
{
d: "M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z",
key: "isaq8g"
}
],
["path", { d: "M17.75 7 15 2.1", key: "12x7e8" }],
["path", { d: "M10.9 4.8 13 9", key: "100a87" }],
["path", { d: "m7.9 9.7 2 4.4", key: "ntfhaj" }],
["path", { d: "M4.9 14.7 7 18.9", key: "1x43jy" }]
];
var CandyCane = createLucideIcon("candy-cane", __iconNode273);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/candy-off.js
var __iconNode274 = [
["path", { d: "M10 10v7.9", key: "m8g9tt" }],
["path", { d: "M11.802 6.145a5 5 0 0 1 6.053 6.053", key: "dn87i3" }],
["path", { d: "M14 6.1v2.243", key: "1kzysn" }],
[
"path",
{ d: "m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965", key: "3sxy18" }
],
[
"path",
{
d: "M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4",
key: "gpb6xx"
}
],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
[
"path",
{
d: "M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4",
key: "qexcha"
}
]
];
var CandyOff = createLucideIcon("candy-off", __iconNode274);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/candy.js
var __iconNode275 = [
["path", { d: "M10 7v10.9", key: "1gynux" }],
["path", { d: "M14 6.1V17", key: "116kdf" }],
[
"path",
{
d: "M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4",
key: "gpb6xx"
}
],
[
"path",
{
d: "M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07",
key: "1tsln4"
}
],
[
"path",
{
d: "M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4",
key: "qexcha"
}
]
];
var Candy = createLucideIcon("candy", __iconNode275);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cannabis.js
var __iconNode276 = [
["path", { d: "M12 22v-4", key: "1utk9m" }],
[
"path",
{
d: "M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6",
key: "1mezod"
}
]
];
var Cannabis = createLucideIcon("cannabis", __iconNode276);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/captions-off.js
var __iconNode277 = [
["path", { d: "M10.5 5H19a2 2 0 0 1 2 2v8.5", key: "jqtk4d" }],
["path", { d: "M17 11h-.5", key: "1961ue" }],
["path", { d: "M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2", key: "1keqsi" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M7 11h4", key: "1o1z6v" }],
["path", { d: "M7 15h2.5", key: "1ina1g" }]
];
var CaptionsOff = createLucideIcon("captions-off", __iconNode277);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/captions.js
var __iconNode278 = [
["rect", { width: "18", height: "14", x: "3", y: "5", rx: "2", ry: "2", key: "12ruh7" }],
["path", { d: "M7 15h4M15 15h2M7 11h2M13 11h4", key: "1ueiar" }]
];
var Captions = createLucideIcon("captions", __iconNode278);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/car-front.js
var __iconNode279 = [
[
"path",
{ d: "m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8", key: "1imjwt" }
],
["path", { d: "M7 14h.01", key: "1qa3f1" }],
["path", { d: "M17 14h.01", key: "7oqj8z" }],
["rect", { width: "18", height: "8", x: "3", y: "10", rx: "2", key: "a7itu8" }],
["path", { d: "M5 18v2", key: "ppbyun" }],
["path", { d: "M19 18v2", key: "gy7782" }]
];
var CarFront = createLucideIcon("car-front", __iconNode279);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/car-taxi-front.js
var __iconNode280 = [
["path", { d: "M10 2h4", key: "n1abiw" }],
[
"path",
{ d: "m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8", key: "1imjwt" }
],
["path", { d: "M7 14h.01", key: "1qa3f1" }],
["path", { d: "M17 14h.01", key: "7oqj8z" }],
["rect", { width: "18", height: "8", x: "3", y: "10", rx: "2", key: "a7itu8" }],
["path", { d: "M5 18v2", key: "ppbyun" }],
["path", { d: "M19 18v2", key: "gy7782" }]
];
var CarTaxiFront = createLucideIcon("car-taxi-front", __iconNode280);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/caravan.js
var __iconNode281 = [
["path", { d: "M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2", key: "19jm3t" }],
["path", { d: "M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2", key: "13hakp" }],
["path", { d: "M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9", key: "1crci8" }],
["circle", { cx: "8", cy: "19", r: "2", key: "t8fc5s" }]
];
var Caravan = createLucideIcon("caravan", __iconNode281);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/card-sim.js
var __iconNode282 = [
["path", { d: "M12 14v4", key: "1thi36" }],
[
"path",
{
d: "M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z",
key: "1o66bk"
}
],
["path", { d: "M8 14h8", key: "1fgep2" }],
["rect", { x: "8", y: "10", width: "8", height: "8", rx: "1", key: "1aonk6" }]
];
var CardSim = createLucideIcon("card-sim", __iconNode282);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/car.js
var __iconNode283 = [
[
"path",
{
d: "M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2",
key: "5owen"
}
],
["circle", { cx: "7", cy: "17", r: "2", key: "u2ysq9" }],
["path", { d: "M9 17h6", key: "r8uit2" }],
["circle", { cx: "17", cy: "17", r: "2", key: "axvx0g" }]
];
var Car = createLucideIcon("car", __iconNode283);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/carrot.js
var __iconNode284 = [
[
"path",
{
d: "M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46",
key: "rfqxbe"
}
],
["path", { d: "M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z", key: "6b25w4" }],
["path", { d: "M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z", key: "fn65lo" }]
];
var Carrot = createLucideIcon("carrot", __iconNode284);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/case-lower.js
var __iconNode285 = [
["circle", { cx: "7", cy: "12", r: "3", key: "12clwm" }],
["path", { d: "M10 9v6", key: "17i7lo" }],
["circle", { cx: "17", cy: "12", r: "3", key: "gl7c2s" }],
["path", { d: "M14 7v8", key: "dl84cr" }]
];
var CaseLower = createLucideIcon("case-lower", __iconNode285);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/case-sensitive.js
var __iconNode286 = [
["path", { d: "m3 15 4-8 4 8", key: "1vwr6u" }],
["path", { d: "M4 13h6", key: "1r9ots" }],
["circle", { cx: "18", cy: "12", r: "3", key: "1kchzo" }],
["path", { d: "M21 9v6", key: "anns31" }]
];
var CaseSensitive = createLucideIcon("case-sensitive", __iconNode286);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/case-upper.js
var __iconNode287 = [
["path", { d: "m3 15 4-8 4 8", key: "1vwr6u" }],
["path", { d: "M4 13h6", key: "1r9ots" }],
["path", { d: "M15 11h4.5a2 2 0 0 1 0 4H15V7h4a2 2 0 0 1 0 4", key: "1sqfas" }]
];
var CaseUpper = createLucideIcon("case-upper", __iconNode287);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cassette-tape.js
var __iconNode288 = [
["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2", key: "18n3k1" }],
["circle", { cx: "8", cy: "10", r: "2", key: "1xl4ub" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
["circle", { cx: "16", cy: "10", r: "2", key: "r14t7q" }],
["path", { d: "m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3", key: "l01ucn" }]
];
var CassetteTape = createLucideIcon("cassette-tape", __iconNode288);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cast.js
var __iconNode289 = [
["path", { d: "M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6", key: "3zrzxg" }],
["path", { d: "M2 12a9 9 0 0 1 8 8", key: "g6cvee" }],
["path", { d: "M2 16a5 5 0 0 1 4 4", key: "1y1dii" }],
["line", { x1: "2", x2: "2.01", y1: "20", y2: "20", key: "xu2jvo" }]
];
var Cast = createLucideIcon("cast", __iconNode289);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/castle.js
var __iconNode290 = [
["path", { d: "M22 20v-9H2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2Z", key: "109fe4" }],
["path", { d: "M18 11V4H6v7", key: "mon5oj" }],
["path", { d: "M15 22v-4a3 3 0 0 0-3-3a3 3 0 0 0-3 3v4", key: "1k4jtn" }],
["path", { d: "M22 11V9", key: "3zbp94" }],
["path", { d: "M2 11V9", key: "1x5rnq" }],
["path", { d: "M6 4V2", key: "1rsq15" }],
["path", { d: "M18 4V2", key: "1jsdo1" }],
["path", { d: "M10 4V2", key: "75d9ly" }],
["path", { d: "M14 4V2", key: "8nj3z6" }]
];
var Castle = createLucideIcon("castle", __iconNode290);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cat.js
var __iconNode291 = [
[
"path",
{
d: "M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z",
key: "x6xyqk"
}
],
["path", { d: "M8 14v.5", key: "1nzgdb" }],
["path", { d: "M16 14v.5", key: "1lajdz" }],
["path", { d: "M11.25 16.25h1.5L12 17l-.75-.75Z", key: "12kq1m" }]
];
var Cat = createLucideIcon("cat", __iconNode291);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cctv.js
var __iconNode292 = [
[
"path",
{
d: "M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97",
key: "ir91b5"
}
],
[
"path",
{
d: "M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z",
key: "jlp8i1"
}
],
["path", { d: "M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15", key: "19bib8" }],
["path", { d: "M2 21v-4", key: "l40lih" }],
["path", { d: "M7 9h.01", key: "19b3jx" }]
];
var Cctv = createLucideIcon("cctv", __iconNode292);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-area.js
var __iconNode293 = [
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
[
"path",
{
d: "M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z",
key: "q0gr47"
}
]
];
var ChartArea = createLucideIcon("chart-area", __iconNode293);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-bar-big.js
var __iconNode294 = [
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["rect", { x: "7", y: "13", width: "9", height: "4", rx: "1", key: "1iip1u" }],
["rect", { x: "7", y: "5", width: "12", height: "4", rx: "1", key: "1anskk" }]
];
var ChartBarBig = createLucideIcon("chart-bar-big", __iconNode294);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-bar-increasing.js
var __iconNode295 = [
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["path", { d: "M7 11h8", key: "1feolt" }],
["path", { d: "M7 16h12", key: "wsnu98" }],
["path", { d: "M7 6h3", key: "w9rmul" }]
];
var ChartBarIncreasing = createLucideIcon("chart-bar-increasing", __iconNode295);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-bar-decreasing.js
var __iconNode296 = [
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["path", { d: "M7 11h8", key: "1feolt" }],
["path", { d: "M7 16h3", key: "ur6vzw" }],
["path", { d: "M7 6h12", key: "sz5b0d" }]
];
var ChartBarDecreasing = createLucideIcon("chart-bar-decreasing", __iconNode296);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-bar-stacked.js
var __iconNode297 = [
["path", { d: "M11 13v4", key: "vyy2rb" }],
["path", { d: "M15 5v4", key: "1gx88a" }],
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["rect", { x: "7", y: "13", width: "9", height: "4", rx: "1", key: "1iip1u" }],
["rect", { x: "7", y: "5", width: "12", height: "4", rx: "1", key: "1anskk" }]
];
var ChartBarStacked = createLucideIcon("chart-bar-stacked", __iconNode297);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-bar.js
var __iconNode298 = [
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["path", { d: "M7 16h8", key: "srdodz" }],
["path", { d: "M7 11h12", key: "127s9w" }],
["path", { d: "M7 6h3", key: "w9rmul" }]
];
var ChartBar = createLucideIcon("chart-bar", __iconNode298);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-candlestick.js
var __iconNode299 = [
["path", { d: "M9 5v4", key: "14uxtq" }],
["rect", { width: "4", height: "6", x: "7", y: "9", rx: "1", key: "f4fvz0" }],
["path", { d: "M9 15v2", key: "r5rk32" }],
["path", { d: "M17 3v2", key: "1l2re6" }],
["rect", { width: "4", height: "8", x: "15", y: "5", rx: "1", key: "z38je5" }],
["path", { d: "M17 13v3", key: "5l0wba" }],
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }]
];
var ChartCandlestick = createLucideIcon("chart-candlestick", __iconNode299);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-column-big.js
var __iconNode300 = [
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["rect", { x: "15", y: "5", width: "4", height: "12", rx: "1", key: "q8uenq" }],
["rect", { x: "7", y: "8", width: "4", height: "9", rx: "1", key: "sr5ea" }]
];
var ChartColumnBig = createLucideIcon("chart-column-big", __iconNode300);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-column-decreasing.js
var __iconNode301 = [
["path", { d: "M13 17V9", key: "1fwyjl" }],
["path", { d: "M18 17v-3", key: "1sqioe" }],
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["path", { d: "M8 17V5", key: "1wzmnc" }]
];
var ChartColumnDecreasing = createLucideIcon("chart-column-decreasing", __iconNode301);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-column-increasing.js
var __iconNode302 = [
["path", { d: "M13 17V9", key: "1fwyjl" }],
["path", { d: "M18 17V5", key: "sfb6ij" }],
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["path", { d: "M8 17v-3", key: "17ska0" }]
];
var ChartColumnIncreasing = createLucideIcon("chart-column-increasing", __iconNode302);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-column-stacked.js
var __iconNode303 = [
["path", { d: "M11 13H7", key: "t0o9gq" }],
["path", { d: "M19 9h-4", key: "rera1j" }],
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["rect", { x: "15", y: "5", width: "4", height: "12", rx: "1", key: "q8uenq" }],
["rect", { x: "7", y: "8", width: "4", height: "9", rx: "1", key: "sr5ea" }]
];
var ChartColumnStacked = createLucideIcon("chart-column-stacked", __iconNode303);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-column.js
var __iconNode304 = [
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["path", { d: "M18 17V9", key: "2bz60n" }],
["path", { d: "M13 17V5", key: "1frdt8" }],
["path", { d: "M8 17v-3", key: "17ska0" }]
];
var ChartColumn = createLucideIcon("chart-column", __iconNode304);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-gantt.js
var __iconNode305 = [
["path", { d: "M10 6h8", key: "zvc2xc" }],
["path", { d: "M12 16h6", key: "yi5mkt" }],
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["path", { d: "M8 11h7", key: "wz2hg0" }]
];
var ChartGantt = createLucideIcon("chart-gantt", __iconNode305);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-line.js
var __iconNode306 = [
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["path", { d: "m19 9-5 5-4-4-3 3", key: "2osh9i" }]
];
var ChartLine = createLucideIcon("chart-line", __iconNode306);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-network.js
var __iconNode307 = [
["path", { d: "m13.11 7.664 1.78 2.672", key: "go2gg9" }],
["path", { d: "m14.162 12.788-3.324 1.424", key: "11x848" }],
["path", { d: "m20 4-6.06 1.515", key: "1wxxh7" }],
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["circle", { cx: "12", cy: "6", r: "2", key: "1jj5th" }],
["circle", { cx: "16", cy: "12", r: "2", key: "4ma0v8" }],
["circle", { cx: "9", cy: "15", r: "2", key: "lf2ghp" }]
];
var ChartNetwork = createLucideIcon("chart-network", __iconNode307);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column-decreasing.js
var __iconNode308 = [
["path", { d: "M12 20V10", key: "g8npz5" }],
["path", { d: "M18 20v-4", key: "8uic4z" }],
["path", { d: "M6 20V4", key: "1w1bmo" }]
];
var ChartNoAxesColumnDecreasing = createLucideIcon("chart-no-axes-column-decreasing", __iconNode308);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column-increasing.js
var __iconNode309 = [
["line", { x1: "12", x2: "12", y1: "20", y2: "10", key: "1vz5eb" }],
["line", { x1: "18", x2: "18", y1: "20", y2: "4", key: "cun8e5" }],
["line", { x1: "6", x2: "6", y1: "20", y2: "16", key: "hq0ia6" }]
];
var ChartNoAxesColumnIncreasing = createLucideIcon("chart-no-axes-column-increasing", __iconNode309);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column.js
var __iconNode310 = [
["line", { x1: "18", x2: "18", y1: "20", y2: "10", key: "1xfpm4" }],
["line", { x1: "12", x2: "12", y1: "20", y2: "4", key: "be30l9" }],
["line", { x1: "6", x2: "6", y1: "20", y2: "14", key: "1r4le6" }]
];
var ChartNoAxesColumn = createLucideIcon("chart-no-axes-column", __iconNode310);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-no-axes-combined.js
var __iconNode311 = [
["path", { d: "M12 16v5", key: "zza2cw" }],
["path", { d: "M16 14v7", key: "1g90b9" }],
["path", { d: "M20 10v11", key: "1iqoj0" }],
[
"path",
{ d: "m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15", key: "1fw8x9" }
],
["path", { d: "M4 18v3", key: "1yp0dc" }],
["path", { d: "M8 14v7", key: "n3cwzv" }]
];
var ChartNoAxesCombined = createLucideIcon("chart-no-axes-combined", __iconNode311);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-no-axes-gantt.js
var __iconNode312 = [
["path", { d: "M8 6h10", key: "9lnwnk" }],
["path", { d: "M6 12h9", key: "1g9pqf" }],
["path", { d: "M11 18h7", key: "c8dzvl" }]
];
var ChartNoAxesGantt = createLucideIcon("chart-no-axes-gantt", __iconNode312);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-pie.js
var __iconNode313 = [
[
"path",
{
d: "M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z",
key: "pzmjnu"
}
],
["path", { d: "M21.21 15.89A10 10 0 1 1 8 2.83", key: "k2fpak" }]
];
var ChartPie = createLucideIcon("chart-pie", __iconNode313);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-scatter.js
var __iconNode314 = [
["circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor", key: "kqv944" }],
["circle", { cx: "18.5", cy: "5.5", r: ".5", fill: "currentColor", key: "lysivs" }],
["circle", { cx: "11.5", cy: "11.5", r: ".5", fill: "currentColor", key: "byv1b8" }],
["circle", { cx: "7.5", cy: "16.5", r: ".5", fill: "currentColor", key: "nkw3mc" }],
["circle", { cx: "17.5", cy: "14.5", r: ".5", fill: "currentColor", key: "1gjh6j" }],
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }]
];
var ChartScatter = createLucideIcon("chart-scatter", __iconNode314);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chart-spline.js
var __iconNode315 = [
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
["path", { d: "M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7", key: "lw07rv" }]
];
var ChartSpline = createLucideIcon("chart-spline", __iconNode315);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check-check.js
var __iconNode316 = [
["path", { d: "M18 6 7 17l-5-5", key: "116fxf" }],
["path", { d: "m22 10-7.5 7.5L13 16", key: "ke71qq" }]
];
var CheckCheck = createLucideIcon("check-check", __iconNode316);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check-line.js
var __iconNode317 = [
["path", { d: "M20 4L9 15", key: "1qkx8z" }],
["path", { d: "M21 19L3 19", key: "100sma" }],
["path", { d: "M9 15L4 10", key: "9zxff7" }]
];
var CheckLine = createLucideIcon("check-line", __iconNode317);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check.js
var __iconNode318 = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]];
var Check = createLucideIcon("check", __iconNode318);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chef-hat.js
var __iconNode319 = [
[
"path",
{
d: "M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z",
key: "1qvrer"
}
],
["path", { d: "M6 17h12", key: "1jwigz" }]
];
var ChefHat = createLucideIcon("chef-hat", __iconNode319);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cherry.js
var __iconNode320 = [
["path", { d: "M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z", key: "cvxqlc" }],
["path", { d: "M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z", key: "1ostrc" }],
["path", { d: "M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12", key: "hqx58h" }],
["path", { d: "M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z", key: "eykp1o" }]
];
var Cherry = createLucideIcon("cherry", __iconNode320);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js
var __iconNode321 = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]];
var ChevronDown = createLucideIcon("chevron-down", __iconNode321);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-first.js
var __iconNode322 = [
["path", { d: "m17 18-6-6 6-6", key: "1yerx2" }],
["path", { d: "M7 6v12", key: "1p53r6" }]
];
var ChevronFirst = createLucideIcon("chevron-first", __iconNode322);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-last.js
var __iconNode323 = [
["path", { d: "m7 18 6-6-6-6", key: "lwmzdw" }],
["path", { d: "M17 6v12", key: "1o0aio" }]
];
var ChevronLast = createLucideIcon("chevron-last", __iconNode323);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-left.js
var __iconNode324 = [["path", { d: "m15 18-6-6 6-6", key: "1wnfg3" }]];
var ChevronLeft = createLucideIcon("chevron-left", __iconNode324);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js
var __iconNode325 = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]];
var ChevronRight = createLucideIcon("chevron-right", __iconNode325);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-up.js
var __iconNode326 = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]];
var ChevronUp = createLucideIcon("chevron-up", __iconNode326);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevrons-down-up.js
var __iconNode327 = [
["path", { d: "m7 20 5-5 5 5", key: "13a0gw" }],
["path", { d: "m7 4 5 5 5-5", key: "1kwcof" }]
];
var ChevronsDownUp = createLucideIcon("chevrons-down-up", __iconNode327);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevrons-down.js
var __iconNode328 = [
["path", { d: "m7 6 5 5 5-5", key: "1lc07p" }],
["path", { d: "m7 13 5 5 5-5", key: "1d48rs" }]
];
var ChevronsDown = createLucideIcon("chevrons-down", __iconNode328);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevrons-left-right-ellipsis.js
var __iconNode329 = [
["path", { d: "M12 12h.01", key: "1mp3jc" }],
["path", { d: "M16 12h.01", key: "1l6xoz" }],
["path", { d: "m17 7 5 5-5 5", key: "1xlxn0" }],
["path", { d: "m7 7-5 5 5 5", key: "19njba" }],
["path", { d: "M8 12h.01", key: "czm47f" }]
];
var ChevronsLeftRightEllipsis = createLucideIcon("chevrons-left-right-ellipsis", __iconNode329);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevrons-left-right.js
var __iconNode330 = [
["path", { d: "m9 7-5 5 5 5", key: "j5w590" }],
["path", { d: "m15 7 5 5-5 5", key: "1bl6da" }]
];
var ChevronsLeftRight = createLucideIcon("chevrons-left-right", __iconNode330);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevrons-left.js
var __iconNode331 = [
["path", { d: "m11 17-5-5 5-5", key: "13zhaf" }],
["path", { d: "m18 17-5-5 5-5", key: "h8a8et" }]
];
var ChevronsLeft = createLucideIcon("chevrons-left", __iconNode331);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevrons-right-left.js
var __iconNode332 = [
["path", { d: "m20 17-5-5 5-5", key: "30x0n2" }],
["path", { d: "m4 17 5-5-5-5", key: "16spf4" }]
];
var ChevronsRightLeft = createLucideIcon("chevrons-right-left", __iconNode332);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevrons-right.js
var __iconNode333 = [
["path", { d: "m6 17 5-5-5-5", key: "xnjwq" }],
["path", { d: "m13 17 5-5-5-5", key: "17xmmf" }]
];
var ChevronsRight = createLucideIcon("chevrons-right", __iconNode333);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevrons-up-down.js
var __iconNode334 = [
["path", { d: "m7 15 5 5 5-5", key: "1hf1tw" }],
["path", { d: "m7 9 5-5 5 5", key: "sgt6xg" }]
];
var ChevronsUpDown = createLucideIcon("chevrons-up-down", __iconNode334);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevrons-up.js
var __iconNode335 = [
["path", { d: "m17 11-5-5-5 5", key: "e8nh98" }],
["path", { d: "m17 18-5-5-5 5", key: "2avn1x" }]
];
var ChevronsUp = createLucideIcon("chevrons-up", __iconNode335);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chrome.js
var __iconNode336 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
["line", { x1: "21.17", x2: "12", y1: "8", y2: "8", key: "a0cw5f" }],
["line", { x1: "3.95", x2: "8.54", y1: "6.06", y2: "14", key: "1kftof" }],
["line", { x1: "10.88", x2: "15.46", y1: "21.94", y2: "14", key: "1ymyh8" }]
];
var Chrome = createLucideIcon("chrome", __iconNode336);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cigarette-off.js
var __iconNode337 = [
["path", { d: "M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13", key: "1gdiyg" }],
["path", { d: "M18 8c0-2.5-2-2.5-2-5", key: "1il607" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866", key: "166zjj" }],
["path", { d: "M22 8c0-2.5-2-2.5-2-5", key: "1gah44" }],
["path", { d: "M7 12v4", key: "jqww69" }]
];
var CigaretteOff = createLucideIcon("cigarette-off", __iconNode337);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/church.js
var __iconNode338 = [
["path", { d: "M10 9h4", key: "u4k05v" }],
["path", { d: "M12 7v5", key: "ma6bk" }],
["path", { d: "M14 22v-4a2 2 0 0 0-4 0v4", key: "1pdhuj" }],
[
"path",
{
d: "M18 22V5.618a1 1 0 0 0-.553-.894l-4.553-2.277a2 2 0 0 0-1.788 0L6.553 4.724A1 1 0 0 0 6 5.618V22",
key: "1rkokr"
}
],
[
"path",
{
d: "m18 7 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.618a1 1 0 0 1 .553-.894L6 7",
key: "1w6esw"
}
]
];
var Church = createLucideIcon("church", __iconNode338);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cigarette.js
var __iconNode339 = [
["path", { d: "M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14", key: "1mb5g1" }],
["path", { d: "M18 8c0-2.5-2-2.5-2-5", key: "1il607" }],
["path", { d: "M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1", key: "1yl5r7" }],
["path", { d: "M22 8c0-2.5-2-2.5-2-5", key: "1gah44" }],
["path", { d: "M7 12v4", key: "jqww69" }]
];
var Cigarette = createLucideIcon("cigarette", __iconNode339);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-alert.js
var __iconNode340 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
];
var CircleAlert = createLucideIcon("circle-alert", __iconNode340);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-arrow-down.js
var __iconNode341 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M12 8v8", key: "napkw2" }],
["path", { d: "m8 12 4 4 4-4", key: "k98ssh" }]
];
var CircleArrowDown = createLucideIcon("circle-arrow-down", __iconNode341);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-arrow-left.js
var __iconNode342 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m12 8-4 4 4 4", key: "15vm53" }],
["path", { d: "M16 12H8", key: "1fr5h0" }]
];
var CircleArrowLeft = createLucideIcon("circle-arrow-left", __iconNode342);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-down-left.js
var __iconNode343 = [
["path", { d: "M2 12a10 10 0 1 1 10 10", key: "1yn6ov" }],
["path", { d: "m2 22 10-10", key: "28ilpk" }],
["path", { d: "M8 22H2v-6", key: "sulq54" }]
];
var CircleArrowOutDownLeft = createLucideIcon("circle-arrow-out-down-left", __iconNode343);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-down-right.js
var __iconNode344 = [
["path", { d: "M12 22a10 10 0 1 1 10-10", key: "130bv5" }],
["path", { d: "M22 22 12 12", key: "131aw7" }],
["path", { d: "M22 16v6h-6", key: "1gvm70" }]
];
var CircleArrowOutDownRight = createLucideIcon("circle-arrow-out-down-right", __iconNode344);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-up-left.js
var __iconNode345 = [
["path", { d: "M2 8V2h6", key: "hiwtdz" }],
["path", { d: "m2 2 10 10", key: "1oh8rs" }],
["path", { d: "M12 2A10 10 0 1 1 2 12", key: "rrk4fa" }]
];
var CircleArrowOutUpLeft = createLucideIcon("circle-arrow-out-up-left", __iconNode345);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-up-right.js
var __iconNode346 = [
["path", { d: "M22 12A10 10 0 1 1 12 2", key: "1fm58d" }],
["path", { d: "M22 2 12 12", key: "yg2myt" }],
["path", { d: "M16 2h6v6", key: "zan5cs" }]
];
var CircleArrowOutUpRight = createLucideIcon("circle-arrow-out-up-right", __iconNode346);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-arrow-right.js
var __iconNode347 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m12 16 4-4-4-4", key: "1i9zcv" }],
["path", { d: "M8 12h8", key: "1wcyev" }]
];
var CircleArrowRight = createLucideIcon("circle-arrow-right", __iconNode347);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-arrow-up.js
var __iconNode348 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m16 12-4-4-4 4", key: "177agl" }],
["path", { d: "M12 16V8", key: "1sbj14" }]
];
var CircleArrowUp = createLucideIcon("circle-arrow-up", __iconNode348);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check-big.js
var __iconNode349 = [
["path", { d: "M21.801 10A10 10 0 1 1 17 3.335", key: "yps3ct" }],
["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
];
var CircleCheckBig = createLucideIcon("circle-check-big", __iconNode349);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check.js
var __iconNode350 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
];
var CircleCheck = createLucideIcon("circle-check", __iconNode350);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-chevron-down.js
var __iconNode351 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m16 10-4 4-4-4", key: "894hmk" }]
];
var CircleChevronDown = createLucideIcon("circle-chevron-down", __iconNode351);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-chevron-left.js
var __iconNode352 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m14 16-4-4 4-4", key: "ojs7w8" }]
];
var CircleChevronLeft = createLucideIcon("circle-chevron-left", __iconNode352);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-chevron-right.js
var __iconNode353 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m10 8 4 4-4 4", key: "1wy4r4" }]
];
var CircleChevronRight = createLucideIcon("circle-chevron-right", __iconNode353);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-chevron-up.js
var __iconNode354 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m8 14 4-4 4 4", key: "fy2ptz" }]
];
var CircleChevronUp = createLucideIcon("circle-chevron-up", __iconNode354);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-dashed.js
var __iconNode355 = [
["path", { d: "M10.1 2.182a10 10 0 0 1 3.8 0", key: "5ilxe3" }],
["path", { d: "M13.9 21.818a10 10 0 0 1-3.8 0", key: "11zvb9" }],
["path", { d: "M17.609 3.721a10 10 0 0 1 2.69 2.7", key: "1iw5b2" }],
["path", { d: "M2.182 13.9a10 10 0 0 1 0-3.8", key: "c0bmvh" }],
["path", { d: "M20.279 17.609a10 10 0 0 1-2.7 2.69", key: "1ruxm7" }],
["path", { d: "M21.818 10.1a10 10 0 0 1 0 3.8", key: "qkgqxc" }],
["path", { d: "M3.721 6.391a10 10 0 0 1 2.7-2.69", key: "1mcia2" }],
["path", { d: "M6.391 20.279a10 10 0 0 1-2.69-2.7", key: "1fvljs" }]
];
var CircleDashed = createLucideIcon("circle-dashed", __iconNode355);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-divide.js
var __iconNode356 = [
["line", { x1: "8", x2: "16", y1: "12", y2: "12", key: "1jonct" }],
["line", { x1: "12", x2: "12", y1: "16", y2: "16", key: "aqc6ln" }],
["line", { x1: "12", x2: "12", y1: "8", y2: "8", key: "1mkcni" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var CircleDivide = createLucideIcon("circle-divide", __iconNode356);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-dollar-sign.js
var __iconNode357 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8", key: "1h4pet" }],
["path", { d: "M12 18V6", key: "zqpxq5" }]
];
var CircleDollarSign = createLucideIcon("circle-dollar-sign", __iconNode357);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-dot-dashed.js
var __iconNode358 = [
["path", { d: "M10.1 2.18a9.93 9.93 0 0 1 3.8 0", key: "1qdqn0" }],
["path", { d: "M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7", key: "1bq7p6" }],
["path", { d: "M21.82 10.1a9.93 9.93 0 0 1 0 3.8", key: "1rlaqf" }],
["path", { d: "M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69", key: "1xk03u" }],
["path", { d: "M13.9 21.82a9.94 9.94 0 0 1-3.8 0", key: "l7re25" }],
["path", { d: "M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7", key: "1v18p6" }],
["path", { d: "M2.18 13.9a9.93 9.93 0 0 1 0-3.8", key: "xdo6bj" }],
["path", { d: "M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69", key: "1jjmaz" }],
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }]
];
var CircleDotDashed = createLucideIcon("circle-dot-dashed", __iconNode358);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-dot.js
var __iconNode359 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }]
];
var CircleDot = createLucideIcon("circle-dot", __iconNode359);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-ellipsis.js
var __iconNode360 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M17 12h.01", key: "1m0b6t" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }],
["path", { d: "M7 12h.01", key: "eqddd0" }]
];
var CircleEllipsis = createLucideIcon("circle-ellipsis", __iconNode360);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-equal.js
var __iconNode361 = [
["path", { d: "M7 10h10", key: "1101jm" }],
["path", { d: "M7 14h10", key: "1mhdw3" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var CircleEqual = createLucideIcon("circle-equal", __iconNode361);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-fading-arrow-up.js
var __iconNode362 = [
["path", { d: "M12 2a10 10 0 0 1 7.38 16.75", key: "175t95" }],
["path", { d: "m16 12-4-4-4 4", key: "177agl" }],
["path", { d: "M12 16V8", key: "1sbj14" }],
["path", { d: "M2.5 8.875a10 10 0 0 0-.5 3", key: "1vce0s" }],
["path", { d: "M2.83 16a10 10 0 0 0 2.43 3.4", key: "o3fkw4" }],
["path", { d: "M4.636 5.235a10 10 0 0 1 .891-.857", key: "1szpfk" }],
["path", { d: "M8.644 21.42a10 10 0 0 0 7.631-.38", key: "9yhvd4" }]
];
var CircleFadingArrowUp = createLucideIcon("circle-fading-arrow-up", __iconNode362);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-fading-plus.js
var __iconNode363 = [
["path", { d: "M12 2a10 10 0 0 1 7.38 16.75", key: "175t95" }],
["path", { d: "M12 8v8", key: "napkw2" }],
["path", { d: "M16 12H8", key: "1fr5h0" }],
["path", { d: "M2.5 8.875a10 10 0 0 0-.5 3", key: "1vce0s" }],
["path", { d: "M2.83 16a10 10 0 0 0 2.43 3.4", key: "o3fkw4" }],
["path", { d: "M4.636 5.235a10 10 0 0 1 .891-.857", key: "1szpfk" }],
["path", { d: "M8.644 21.42a10 10 0 0 0 7.631-.38", key: "9yhvd4" }]
];
var CircleFadingPlus = createLucideIcon("circle-fading-plus", __iconNode363);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-gauge.js
var __iconNode364 = [
["path", { d: "M15.6 2.7a10 10 0 1 0 5.7 5.7", key: "1e0p6d" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }],
["path", { d: "M13.4 10.6 19 5", key: "1kr7tw" }]
];
var CircleGauge = createLucideIcon("circle-gauge", __iconNode364);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-minus.js
var __iconNode365 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M8 12h8", key: "1wcyev" }]
];
var CircleMinus = createLucideIcon("circle-minus", __iconNode365);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-off.js
var __iconNode366 = [
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M8.35 2.69A10 10 0 0 1 21.3 15.65", key: "1pfsoa" }],
["path", { d: "M19.08 19.08A10 10 0 1 1 4.92 4.92", key: "1ablyi" }]
];
var CircleOff = createLucideIcon("circle-off", __iconNode366);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-parking-off.js
var __iconNode367 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m5 5 14 14", key: "11anup" }],
["path", { d: "M13 13a3 3 0 1 0 0-6H9v2", key: "uoagbd" }],
["path", { d: "M9 17v-2.34", key: "a9qo08" }]
];
var CircleParkingOff = createLucideIcon("circle-parking-off", __iconNode367);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-parking.js
var __iconNode368 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M9 17V7h4a3 3 0 0 1 0 6H9", key: "1dfk2c" }]
];
var CircleParking = createLucideIcon("circle-parking", __iconNode368);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-pause.js
var __iconNode369 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["line", { x1: "10", x2: "10", y1: "15", y2: "9", key: "c1nkhi" }],
["line", { x1: "14", x2: "14", y1: "15", y2: "9", key: "h65svq" }]
];
var CirclePause = createLucideIcon("circle-pause", __iconNode369);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-percent.js
var __iconNode370 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
["path", { d: "M9 9h.01", key: "1q5me6" }],
["path", { d: "M15 15h.01", key: "lqbp3k" }]
];
var CirclePercent = createLucideIcon("circle-percent", __iconNode370);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-play.js
var __iconNode371 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["polygon", { points: "10 8 16 12 10 16 10 8", key: "1cimsy" }]
];
var CirclePlay = createLucideIcon("circle-play", __iconNode371);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-plus.js
var __iconNode372 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
["path", { d: "M12 8v8", key: "napkw2" }]
];
var CirclePlus = createLucideIcon("circle-plus", __iconNode372);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-pound-sterling.js
var __iconNode373 = [
["path", { d: "M10 16V9.5a1 1 0 0 1 5 0", key: "1i1are" }],
["path", { d: "M8 12h4", key: "qz6y1c" }],
["path", { d: "M8 16h7", key: "sbedsn" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var CirclePoundSterling = createLucideIcon("circle-pound-sterling", __iconNode373);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-power.js
var __iconNode374 = [
["path", { d: "M12 7v4", key: "xawao1" }],
["path", { d: "M7.998 9.003a5 5 0 1 0 8-.005", key: "1pek45" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var CirclePower = createLucideIcon("circle-power", __iconNode374);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-question-mark.js
var __iconNode375 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3", key: "1u773s" }],
["path", { d: "M12 17h.01", key: "p32p05" }]
];
var CircleQuestionMark = createLucideIcon("circle-question-mark", __iconNode375);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-slash-2.js
var __iconNode376 = [
["path", { d: "M22 2 2 22", key: "y4kqgn" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var CircleSlash2 = createLucideIcon("circle-slash-2", __iconNode376);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-slash.js
var __iconNode377 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["line", { x1: "9", x2: "15", y1: "15", y2: "9", key: "1dfufj" }]
];
var CircleSlash = createLucideIcon("circle-slash", __iconNode377);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-small.js
var __iconNode378 = [["circle", { cx: "12", cy: "12", r: "6", key: "1vlfrh" }]];
var CircleSmall = createLucideIcon("circle-small", __iconNode378);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-stop.js
var __iconNode379 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["rect", { x: "9", y: "9", width: "6", height: "6", rx: "1", key: "1ssd4o" }]
];
var CircleStop = createLucideIcon("circle-stop", __iconNode379);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-user-round.js
var __iconNode380 = [
["path", { d: "M18 20a6 6 0 0 0-12 0", key: "1qehca" }],
["circle", { cx: "12", cy: "10", r: "4", key: "1h16sb" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var CircleUserRound = createLucideIcon("circle-user-round", __iconNode380);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-user.js
var __iconNode381 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["circle", { cx: "12", cy: "10", r: "3", key: "ilqhr7" }],
["path", { d: "M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662", key: "154egf" }]
];
var CircleUser = createLucideIcon("circle-user", __iconNode381);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-x.js
var __iconNode382 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
["path", { d: "m9 9 6 6", key: "z0biqf" }]
];
var CircleX = createLucideIcon("circle-x", __iconNode382);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle.js
var __iconNode383 = [["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]];
var Circle = createLucideIcon("circle", __iconNode383);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circuit-board.js
var __iconNode384 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M11 9h4a2 2 0 0 0 2-2V3", key: "1ve2rv" }],
["circle", { cx: "9", cy: "9", r: "2", key: "af1f0g" }],
["path", { d: "M7 21v-4a2 2 0 0 1 2-2h4", key: "1fwkro" }],
["circle", { cx: "15", cy: "15", r: "2", key: "3i40o0" }]
];
var CircuitBoard = createLucideIcon("circuit-board", __iconNode384);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/citrus.js
var __iconNode385 = [
[
"path",
{
d: "M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z",
key: "4ite01"
}
],
["path", { d: "M19.65 15.66A8 8 0 0 1 8.35 4.34", key: "1gxipu" }],
["path", { d: "m14 10-5.5 5.5", key: "92pfem" }],
["path", { d: "M14 17.85V10H6.15", key: "xqmtsk" }]
];
var Citrus = createLucideIcon("citrus", __iconNode385);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clapperboard.js
var __iconNode386 = [
[
"path",
{ d: "M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z", key: "1tn4o7" }
],
["path", { d: "m6.2 5.3 3.1 3.9", key: "iuk76l" }],
["path", { d: "m12.4 3.4 3.1 4", key: "6hsd6n" }],
["path", { d: "M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z", key: "ltgou9" }]
];
var Clapperboard = createLucideIcon("clapperboard", __iconNode386);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-check.js
var __iconNode387 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1", key: "tgr4d6" }],
[
"path",
{
d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",
key: "116196"
}
],
["path", { d: "m9 14 2 2 4-4", key: "df797q" }]
];
var ClipboardCheck = createLucideIcon("clipboard-check", __iconNode387);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-copy.js
var __iconNode388 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1", key: "tgr4d6" }],
["path", { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2", key: "4jdomd" }],
["path", { d: "M16 4h2a2 2 0 0 1 2 2v4", key: "3hqy98" }],
["path", { d: "M21 14H11", key: "1bme5i" }],
["path", { d: "m15 10-4 4 4 4", key: "5dvupr" }]
];
var ClipboardCopy = createLucideIcon("clipboard-copy", __iconNode388);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-list.js
var __iconNode389 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1", key: "tgr4d6" }],
[
"path",
{
d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",
key: "116196"
}
],
["path", { d: "M12 11h4", key: "1jrz19" }],
["path", { d: "M12 16h4", key: "n85exb" }],
["path", { d: "M8 11h.01", key: "1dfujw" }],
["path", { d: "M8 16h.01", key: "18s6g9" }]
];
var ClipboardList = createLucideIcon("clipboard-list", __iconNode389);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-minus.js
var __iconNode390 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1", key: "tgr4d6" }],
[
"path",
{
d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",
key: "116196"
}
],
["path", { d: "M9 14h6", key: "159ibu" }]
];
var ClipboardMinus = createLucideIcon("clipboard-minus", __iconNode390);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-paste.js
var __iconNode391 = [
["path", { d: "M11 14h10", key: "1w8e9d" }],
["path", { d: "M16 4h2a2 2 0 0 1 2 2v1.344", key: "1e62lh" }],
["path", { d: "m17 18 4-4-4-4", key: "z2g111" }],
["path", { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113", key: "bjbb7m" }],
["rect", { x: "8", y: "2", width: "8", height: "4", rx: "1", key: "ublpy" }]
];
var ClipboardPaste = createLucideIcon("clipboard-paste", __iconNode391);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-pen-line.js
var __iconNode392 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", key: "1oijnt" }],
["path", { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5", key: "1but9f" }],
["path", { d: "M16 4h2a2 2 0 0 1 1.73 1", key: "1p8n7l" }],
["path", { d: "M8 18h1", key: "13wk12" }],
[
"path",
{
d: "M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "2t3380"
}
]
];
var ClipboardPenLine = createLucideIcon("clipboard-pen-line", __iconNode392);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-pen.js
var __iconNode393 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", key: "1oijnt" }],
["path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5", key: "cereej" }],
["path", { d: "M4 13.5V6a2 2 0 0 1 2-2h2", key: "5ua5vh" }],
[
"path",
{
d: "M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "1y4qbx"
}
]
];
var ClipboardPen = createLucideIcon("clipboard-pen", __iconNode393);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-plus.js
var __iconNode394 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1", key: "tgr4d6" }],
[
"path",
{
d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",
key: "116196"
}
],
["path", { d: "M9 14h6", key: "159ibu" }],
["path", { d: "M12 17v-6", key: "1y8rbf" }]
];
var ClipboardPlus = createLucideIcon("clipboard-plus", __iconNode394);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-type.js
var __iconNode395 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1", key: "tgr4d6" }],
[
"path",
{
d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",
key: "116196"
}
],
["path", { d: "M9 12v-1h6v1", key: "iehl6m" }],
["path", { d: "M11 17h2", key: "12w5me" }],
["path", { d: "M12 11v6", key: "1bwqyc" }]
];
var ClipboardType = createLucideIcon("clipboard-type", __iconNode395);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard-x.js
var __iconNode396 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1", key: "tgr4d6" }],
[
"path",
{
d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",
key: "116196"
}
],
["path", { d: "m15 11-6 6", key: "1toa9n" }],
["path", { d: "m9 11 6 6", key: "wlibny" }]
];
var ClipboardX = createLucideIcon("clipboard-x", __iconNode396);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clipboard.js
var __iconNode397 = [
["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1", key: "tgr4d6" }],
[
"path",
{
d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",
key: "116196"
}
]
];
var Clipboard = createLucideIcon("clipboard", __iconNode397);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-1.js
var __iconNode398 = [
["path", { d: "M12 6v6l2-4", key: "miptyd" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock1 = createLucideIcon("clock-1", __iconNode398);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-10.js
var __iconNode399 = [
["path", { d: "M12 6v6l-4-2", key: "cedpoo" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock10 = createLucideIcon("clock-10", __iconNode399);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-11.js
var __iconNode400 = [
["path", { d: "M12 6v6l-2-4", key: "ns39ag" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock11 = createLucideIcon("clock-11", __iconNode400);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-2.js
var __iconNode401 = [
["path", { d: "M12 6v6l4-2", key: "1r2kuh" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock2 = createLucideIcon("clock-2", __iconNode401);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-12.js
var __iconNode402 = [
["path", { d: "M12 6v6", key: "1ipuwl" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock12 = createLucideIcon("clock-12", __iconNode402);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-3.js
var __iconNode403 = [
["path", { d: "M12 6v6h4", key: "135r8i" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock3 = createLucideIcon("clock-3", __iconNode403);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-4.js
var __iconNode404 = [
["path", { d: "M12 6v6l4 2", key: "mmk7yg" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock4 = createLucideIcon("clock-4", __iconNode404);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-5.js
var __iconNode405 = [
["path", { d: "M12 6v6l2 4", key: "1287s9" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock5 = createLucideIcon("clock-5", __iconNode405);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-6.js
var __iconNode406 = [
["path", { d: "M12 6v10", key: "wf7rdh" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock6 = createLucideIcon("clock-6", __iconNode406);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-7.js
var __iconNode407 = [
["path", { d: "M12 6v6l-2 4", key: "1095bu" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock7 = createLucideIcon("clock-7", __iconNode407);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-8.js
var __iconNode408 = [
["path", { d: "M12 6v6l-4 2", key: "imc3wl" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock8 = createLucideIcon("clock-8", __iconNode408);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-9.js
var __iconNode409 = [
["path", { d: "M12 6v6H8", key: "u39vzm" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock9 = createLucideIcon("clock-9", __iconNode409);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-alert.js
var __iconNode410 = [
["path", { d: "M12 6v6l4 2", key: "mmk7yg" }],
["path", { d: "M20 12v5", key: "12wsvk" }],
["path", { d: "M20 21h.01", key: "1p6o6n" }],
["path", { d: "M21.25 8.2A10 10 0 1 0 16 21.16", key: "17fp9f" }]
];
var ClockAlert = createLucideIcon("clock-alert", __iconNode410);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-arrow-down.js
var __iconNode411 = [
["path", { d: "M12 6v6l2 1", key: "19cm8n" }],
["path", { d: "M12.337 21.994a10 10 0 1 1 9.588-8.767", key: "28moa" }],
["path", { d: "m14 18 4 4 4-4", key: "1waygx" }],
["path", { d: "M18 14v8", key: "irew45" }]
];
var ClockArrowDown = createLucideIcon("clock-arrow-down", __iconNode411);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-arrow-up.js
var __iconNode412 = [
["path", { d: "M12 6v6l1.56.78", key: "14ed3g" }],
["path", { d: "M13.227 21.925a10 10 0 1 1 8.767-9.588", key: "jwkls1" }],
["path", { d: "m14 18 4-4 4 4", key: "ftkppy" }],
["path", { d: "M18 22v-8", key: "su0gjh" }]
];
var ClockArrowUp = createLucideIcon("clock-arrow-up", __iconNode412);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-fading.js
var __iconNode413 = [
["path", { d: "M12 2a10 10 0 0 1 7.38 16.75", key: "175t95" }],
["path", { d: "M12 6v6l4 2", key: "mmk7yg" }],
["path", { d: "M2.5 8.875a10 10 0 0 0-.5 3", key: "1vce0s" }],
["path", { d: "M2.83 16a10 10 0 0 0 2.43 3.4", key: "o3fkw4" }],
["path", { d: "M4.636 5.235a10 10 0 0 1 .891-.857", key: "1szpfk" }],
["path", { d: "M8.644 21.42a10 10 0 0 0 7.631-.38", key: "9yhvd4" }]
];
var ClockFading = createLucideIcon("clock-fading", __iconNode413);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock-plus.js
var __iconNode414 = [
["path", { d: "M12 6v6l3.644 1.822", key: "1jmett" }],
["path", { d: "M16 19h6", key: "xwg31i" }],
["path", { d: "M19 16v6", key: "tddt3s" }],
["path", { d: "M21.92 13.267a10 10 0 1 0-8.653 8.653", key: "1u0osk" }]
];
var ClockPlus = createLucideIcon("clock-plus", __iconNode414);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock.js
var __iconNode415 = [
["path", { d: "M12 6v6l4 2", key: "mmk7yg" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Clock = createLucideIcon("clock", __iconNode415);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-alert.js
var __iconNode416 = [
["path", { d: "M12 12v4", key: "tww15h" }],
["path", { d: "M12 20h.01", key: "zekei9" }],
["path", { d: "M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708", key: "xsb5ju" }]
];
var CloudAlert = createLucideIcon("cloud-alert", __iconNode416);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-check.js
var __iconNode417 = [
["path", { d: "m17 15-5.5 5.5L9 18", key: "15q87x" }],
["path", { d: "M5 17.743A7 7 0 1 1 15.71 10h1.79a4.5 4.5 0 0 1 1.5 8.742", key: "9ho6ki" }]
];
var CloudCheck = createLucideIcon("cloud-check", __iconNode417);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-cog.js
var __iconNode418 = [
["path", { d: "m10.852 19.772-.383.924", key: "r7sl7d" }],
["path", { d: "m13.148 14.228.383-.923", key: "1d5zpm" }],
["path", { d: "M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923", key: "1ydik7" }],
["path", { d: "m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544", key: "1m1vsf" }],
["path", { d: "m14.772 15.852.923-.383", key: "660p6e" }],
["path", { d: "m14.772 18.148.923.383", key: "hrcpis" }],
[
"path",
{
d: "M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2",
key: "j2q98n"
}
],
["path", { d: "m9.228 15.852-.923-.383", key: "1p9ong" }],
["path", { d: "m9.228 18.148-.923.383", key: "6558rz" }]
];
var CloudCog = createLucideIcon("cloud-cog", __iconNode418);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-download.js
var __iconNode419 = [
["path", { d: "M12 13v8l-4-4", key: "1f5nwf" }],
["path", { d: "m12 21 4-4", key: "1lfcce" }],
["path", { d: "M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284", key: "ui1hmy" }]
];
var CloudDownload = createLucideIcon("cloud-download", __iconNode419);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-drizzle.js
var __iconNode420 = [
["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242", key: "1pljnt" }],
["path", { d: "M8 19v1", key: "1dk2by" }],
["path", { d: "M8 14v1", key: "84yxot" }],
["path", { d: "M16 19v1", key: "v220m7" }],
["path", { d: "M16 14v1", key: "g12gj6" }],
["path", { d: "M12 21v1", key: "q8vafk" }],
["path", { d: "M12 16v1", key: "1mx6rx" }]
];
var CloudDrizzle = createLucideIcon("cloud-drizzle", __iconNode420);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-fog.js
var __iconNode421 = [
["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242", key: "1pljnt" }],
["path", { d: "M16 17H7", key: "pygtm1" }],
["path", { d: "M17 21H9", key: "1u2q02" }]
];
var CloudFog = createLucideIcon("cloud-fog", __iconNode421);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-hail.js
var __iconNode422 = [
["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242", key: "1pljnt" }],
["path", { d: "M16 14v2", key: "a1is7l" }],
["path", { d: "M8 14v2", key: "1e9m6t" }],
["path", { d: "M16 20h.01", key: "xwek51" }],
["path", { d: "M8 20h.01", key: "1vjney" }],
["path", { d: "M12 16v2", key: "z66u1j" }],
["path", { d: "M12 22h.01", key: "1urd7a" }]
];
var CloudHail = createLucideIcon("cloud-hail", __iconNode422);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-lightning.js
var __iconNode423 = [
["path", { d: "M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973", key: "1cez44" }],
["path", { d: "m13 12-3 5h4l-3 5", key: "1t22er" }]
];
var CloudLightning = createLucideIcon("cloud-lightning", __iconNode423);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-moon-rain.js
var __iconNode424 = [
["path", { d: "M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197", key: "erj67n" }],
["path", { d: "M11 20v2", key: "174qtz" }],
["path", { d: "M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24", key: "1qmrp3" }],
["path", { d: "M7 19v2", key: "12npes" }]
];
var CloudMoonRain = createLucideIcon("cloud-moon-rain", __iconNode424);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-moon.js
var __iconNode425 = [
["path", { d: "M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197", key: "erj67n" }],
["path", { d: "M13 16a3 3 0 1 1 0 6H7a5 5 0 1 1 4.9-6Z", key: "p44pc9" }]
];
var CloudMoon = createLucideIcon("cloud-moon", __iconNode425);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-off.js
var __iconNode426 = [
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193", key: "yfwify" }],
[
"path",
{ d: "M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07", key: "jlfiyv" }
]
];
var CloudOff = createLucideIcon("cloud-off", __iconNode426);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-rain.js
var __iconNode427 = [
["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242", key: "1pljnt" }],
["path", { d: "M16 14v6", key: "1j4efv" }],
["path", { d: "M8 14v6", key: "17c4r9" }],
["path", { d: "M12 16v6", key: "c8a4gj" }]
];
var CloudRain = createLucideIcon("cloud-rain", __iconNode427);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-rain-wind.js
var __iconNode428 = [
["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242", key: "1pljnt" }],
["path", { d: "m9.2 22 3-7", key: "sb5f6j" }],
["path", { d: "m9 13-3 7", key: "500co5" }],
["path", { d: "m17 13-3 7", key: "8t2fiy" }]
];
var CloudRainWind = createLucideIcon("cloud-rain-wind", __iconNode428);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-snow.js
var __iconNode429 = [
["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242", key: "1pljnt" }],
["path", { d: "M8 15h.01", key: "a7atzg" }],
["path", { d: "M8 19h.01", key: "puxtts" }],
["path", { d: "M12 17h.01", key: "p32p05" }],
["path", { d: "M12 21h.01", key: "h35vbk" }],
["path", { d: "M16 15h.01", key: "rnfrdf" }],
["path", { d: "M16 19h.01", key: "1vcnzz" }]
];
var CloudSnow = createLucideIcon("cloud-snow", __iconNode429);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-sun-rain.js
var __iconNode430 = [
["path", { d: "M12 2v2", key: "tus03m" }],
["path", { d: "m4.93 4.93 1.41 1.41", key: "149t6j" }],
["path", { d: "M20 12h2", key: "1q8mjw" }],
["path", { d: "m19.07 4.93-1.41 1.41", key: "1shlcs" }],
["path", { d: "M15.947 12.65a4 4 0 0 0-5.925-4.128", key: "dpwdj0" }],
["path", { d: "M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24", key: "1qmrp3" }],
["path", { d: "M11 20v2", key: "174qtz" }],
["path", { d: "M7 19v2", key: "12npes" }]
];
var CloudSunRain = createLucideIcon("cloud-sun-rain", __iconNode430);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-sun.js
var __iconNode431 = [
["path", { d: "M12 2v2", key: "tus03m" }],
["path", { d: "m4.93 4.93 1.41 1.41", key: "149t6j" }],
["path", { d: "M20 12h2", key: "1q8mjw" }],
["path", { d: "m19.07 4.93-1.41 1.41", key: "1shlcs" }],
["path", { d: "M15.947 12.65a4 4 0 0 0-5.925-4.128", key: "dpwdj0" }],
["path", { d: "M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z", key: "s09mg5" }]
];
var CloudSun = createLucideIcon("cloud-sun", __iconNode431);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud-upload.js
var __iconNode432 = [
["path", { d: "M12 13v8", key: "1l5pq0" }],
["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242", key: "1pljnt" }],
["path", { d: "m8 17 4-4 4 4", key: "1quai1" }]
];
var CloudUpload = createLucideIcon("cloud-upload", __iconNode432);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloud.js
var __iconNode433 = [
["path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z", key: "p7xjir" }]
];
var Cloud = createLucideIcon("cloud", __iconNode433);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clover.js
var __iconNode434 = [
["path", { d: "M16.17 7.83 2 22", key: "t58vo8" }],
[
"path",
{
d: "M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12",
key: "17k36q"
}
],
["path", { d: "m7.83 7.83 8.34 8.34", key: "1d7sxk" }]
];
var Clover = createLucideIcon("clover", __iconNode434);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cloudy.js
var __iconNode435 = [
["path", { d: "M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z", key: "gqqjvc" }],
["path", { d: "M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5", key: "1p2s76" }]
];
var Cloudy = createLucideIcon("cloudy", __iconNode435);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/club.js
var __iconNode436 = [
[
"path",
{
d: "M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z",
key: "27yuqz"
}
],
["path", { d: "M12 17.66L12 22", key: "ogfahf" }]
];
var Club = createLucideIcon("club", __iconNode436);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/code-xml.js
var __iconNode437 = [
["path", { d: "m18 16 4-4-4-4", key: "1inbqp" }],
["path", { d: "m6 8-4 4 4 4", key: "15zrgr" }],
["path", { d: "m14.5 4-5 16", key: "e7oirm" }]
];
var CodeXml = createLucideIcon("code-xml", __iconNode437);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/code.js
var __iconNode438 = [
["path", { d: "m16 18 6-6-6-6", key: "eg8j8" }],
["path", { d: "m8 6-6 6 6 6", key: "ppft3o" }]
];
var Code = createLucideIcon("code", __iconNode438);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/codepen.js
var __iconNode439 = [
["polygon", { points: "12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2", key: "srzb37" }],
["line", { x1: "12", x2: "12", y1: "22", y2: "15.5", key: "1t73f2" }],
["polyline", { points: "22 8.5 12 15.5 2 8.5", key: "ajlxae" }],
["polyline", { points: "2 15.5 12 8.5 22 15.5", key: "susrui" }],
["line", { x1: "12", x2: "12", y1: "2", y2: "8.5", key: "2cldga" }]
];
var Codepen = createLucideIcon("codepen", __iconNode439);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/codesandbox.js
var __iconNode440 = [
[
"path",
{
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",
key: "yt0hxn"
}
],
["polyline", { points: "7.5 4.21 12 6.81 16.5 4.21", key: "fabo96" }],
["polyline", { points: "7.5 19.79 7.5 14.6 3 12", key: "z377f1" }],
["polyline", { points: "21 12 16.5 14.6 16.5 19.79", key: "9nrev1" }],
["polyline", { points: "3.27 6.96 12 12.01 20.73 6.96", key: "1180pa" }],
["line", { x1: "12", x2: "12", y1: "22.08", y2: "12", key: "3z3uq6" }]
];
var Codesandbox = createLucideIcon("codesandbox", __iconNode440);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/coffee.js
var __iconNode441 = [
["path", { d: "M10 2v2", key: "7u0qdc" }],
["path", { d: "M14 2v2", key: "6buw04" }],
[
"path",
{
d: "M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1",
key: "pwadti"
}
],
["path", { d: "M6 2v2", key: "colzsn" }]
];
var Coffee = createLucideIcon("coffee", __iconNode441);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cog.js
var __iconNode442 = [
["path", { d: "M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z", key: "sobvz5" }],
["path", { d: "M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", key: "11i496" }],
["path", { d: "M12 2v2", key: "tus03m" }],
["path", { d: "M12 22v-2", key: "1osdcq" }],
["path", { d: "m17 20.66-1-1.73", key: "eq3orb" }],
["path", { d: "M11 10.27 7 3.34", key: "16pf9h" }],
["path", { d: "m20.66 17-1.73-1", key: "sg0v6f" }],
["path", { d: "m3.34 7 1.73 1", key: "1ulond" }],
["path", { d: "M14 12h8", key: "4f43i9" }],
["path", { d: "M2 12h2", key: "1t8f8n" }],
["path", { d: "m20.66 7-1.73 1", key: "1ow05n" }],
["path", { d: "m3.34 17 1.73-1", key: "nuk764" }],
["path", { d: "m17 3.34-1 1.73", key: "2wel8s" }],
["path", { d: "m11 13.73-4 6.93", key: "794ttg" }]
];
var Cog = createLucideIcon("cog", __iconNode442);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/coins.js
var __iconNode443 = [
["circle", { cx: "8", cy: "8", r: "6", key: "3yglwk" }],
["path", { d: "M18.09 10.37A6 6 0 1 1 10.34 18", key: "t5s6rm" }],
["path", { d: "M7 6h1v4", key: "1obek4" }],
["path", { d: "m16.71 13.88.7.71-2.82 2.82", key: "1rbuyh" }]
];
var Coins = createLucideIcon("coins", __iconNode443);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/columns-2.js
var __iconNode444 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M12 3v18", key: "108xh3" }]
];
var Columns2 = createLucideIcon("columns-2", __iconNode444);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/columns-3-cog.js
var __iconNode445 = [
["path", { d: "M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5", key: "1g2yzs" }],
["path", { d: "m14.3 19.6 1-.4", key: "11sv9r" }],
["path", { d: "M15 3v7.5", key: "7lm50a" }],
["path", { d: "m15.2 16.9-.9-.3", key: "1t7mvx" }],
["path", { d: "m16.6 21.7.3-.9", key: "1j67ps" }],
["path", { d: "m16.8 15.3-.4-1", key: "1ei7r6" }],
["path", { d: "m19.1 15.2.3-.9", key: "18r7jp" }],
["path", { d: "m19.6 21.7-.4-1", key: "z2vh2" }],
["path", { d: "m20.7 16.8 1-.4", key: "19m87a" }],
["path", { d: "m21.7 19.4-.9-.3", key: "1qgwi9" }],
["path", { d: "M9 3v18", key: "fh3hqa" }],
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }]
];
var Columns3Cog = createLucideIcon("columns-3-cog", __iconNode445);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/columns-3.js
var __iconNode446 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M9 3v18", key: "fh3hqa" }],
["path", { d: "M15 3v18", key: "14nvp0" }]
];
var Columns3 = createLucideIcon("columns-3", __iconNode446);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/columns-4.js
var __iconNode447 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M7.5 3v18", key: "w0wo6v" }],
["path", { d: "M12 3v18", key: "108xh3" }],
["path", { d: "M16.5 3v18", key: "10tjh1" }]
];
var Columns4 = createLucideIcon("columns-4", __iconNode447);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/combine.js
var __iconNode448 = [
["path", { d: "M10 18H5a3 3 0 0 1-3-3v-1", key: "ru65g8" }],
["path", { d: "M14 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2", key: "e30een" }],
["path", { d: "M20 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2", key: "2ahx8o" }],
["path", { d: "m7 21 3-3-3-3", key: "127cv2" }],
["rect", { x: "14", y: "14", width: "8", height: "8", rx: "2", key: "1b0bso" }],
["rect", { x: "2", y: "2", width: "8", height: "8", rx: "2", key: "1x09vl" }]
];
var Combine = createLucideIcon("combine", __iconNode448);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/command.js
var __iconNode449 = [
[
"path",
{ d: "M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3", key: "11bfej" }
]
];
var Command = createLucideIcon("command", __iconNode449);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/compass.js
var __iconNode450 = [
[
"path",
{
d: "m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z",
key: "9ktpf1"
}
],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Compass = createLucideIcon("compass", __iconNode450);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/component.js
var __iconNode451 = [
[
"path",
{
d: "M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",
key: "1uwlt4"
}
],
[
"path",
{
d: "M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z",
key: "10291m"
}
],
[
"path",
{
d: "M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z",
key: "1tqoq1"
}
],
[
"path",
{
d: "M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",
key: "1x6lto"
}
]
];
var Component = createLucideIcon("component", __iconNode451);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/computer.js
var __iconNode452 = [
["rect", { width: "14", height: "8", x: "5", y: "2", rx: "2", key: "wc9tft" }],
["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", key: "w68u3i" }],
["path", { d: "M6 18h2", key: "rwmk9e" }],
["path", { d: "M12 18h6", key: "aqd8w3" }]
];
var Computer = createLucideIcon("computer", __iconNode452);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/concierge-bell.js
var __iconNode453 = [
[
"path",
{ d: "M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z", key: "1pvr1r" }
],
["path", { d: "M20 16a8 8 0 1 0-16 0", key: "1pa543" }],
["path", { d: "M12 4v4", key: "1bq03y" }],
["path", { d: "M10 4h4", key: "1xpv9s" }]
];
var ConciergeBell = createLucideIcon("concierge-bell", __iconNode453);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cone.js
var __iconNode454 = [
["path", { d: "m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98", key: "53pte7" }],
["ellipse", { cx: "12", cy: "19", rx: "9", ry: "3", key: "1ji25f" }]
];
var Cone = createLucideIcon("cone", __iconNode454);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/construction.js
var __iconNode455 = [
["rect", { x: "2", y: "6", width: "20", height: "8", rx: "1", key: "1estib" }],
["path", { d: "M17 14v7", key: "7m2elx" }],
["path", { d: "M7 14v7", key: "1cm7wv" }],
["path", { d: "M17 3v3", key: "1v4jwn" }],
["path", { d: "M7 3v3", key: "7o6guu" }],
["path", { d: "M10 14 2.3 6.3", key: "1023jk" }],
["path", { d: "m14 6 7.7 7.7", key: "1s8pl2" }],
["path", { d: "m8 6 8 8", key: "hl96qh" }]
];
var Construction = createLucideIcon("construction", __iconNode455);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/contact-round.js
var __iconNode456 = [
["path", { d: "M16 2v2", key: "scm5qe" }],
["path", { d: "M17.915 22a6 6 0 0 0-12 0", key: "suqz9p" }],
["path", { d: "M8 2v2", key: "pbkmx" }],
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
["rect", { x: "3", y: "4", width: "18", height: "18", rx: "2", key: "12vinp" }]
];
var ContactRound = createLucideIcon("contact-round", __iconNode456);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/contact.js
var __iconNode457 = [
["path", { d: "M16 2v2", key: "scm5qe" }],
["path", { d: "M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2", key: "1waht3" }],
["path", { d: "M8 2v2", key: "pbkmx" }],
["circle", { cx: "12", cy: "11", r: "3", key: "itu57m" }],
["rect", { x: "3", y: "4", width: "18", height: "18", rx: "2", key: "12vinp" }]
];
var Contact = createLucideIcon("contact", __iconNode457);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/container.js
var __iconNode458 = [
[
"path",
{
d: "M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z",
key: "1t2lqe"
}
],
["path", { d: "M10 21.9V14L2.1 9.1", key: "o7czzq" }],
["path", { d: "m10 14 11.9-6.9", key: "zm5e20" }],
["path", { d: "M14 19.8v-8.1", key: "159ecu" }],
["path", { d: "M18 17.5V9.4", key: "11uown" }]
];
var Container = createLucideIcon("container", __iconNode458);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/contrast.js
var __iconNode459 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M12 18a6 6 0 0 0 0-12v12z", key: "j4l70d" }]
];
var Contrast = createLucideIcon("contrast", __iconNode459);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cookie.js
var __iconNode460 = [
["path", { d: "M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5", key: "laymnq" }],
["path", { d: "M8.5 8.5v.01", key: "ue8clq" }],
["path", { d: "M16 15.5v.01", key: "14dtrp" }],
["path", { d: "M12 12v.01", key: "u5ubse" }],
["path", { d: "M11 17v.01", key: "1hyl5a" }],
["path", { d: "M7 14v.01", key: "uct60s" }]
];
var Cookie = createLucideIcon("cookie", __iconNode460);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cooking-pot.js
var __iconNode461 = [
["path", { d: "M2 12h20", key: "9i4pu4" }],
["path", { d: "M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8", key: "u0tga0" }],
["path", { d: "m4 8 16-4", key: "16g0ng" }],
[
"path",
{
d: "m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8",
key: "12cejc"
}
]
];
var CookingPot = createLucideIcon("cooking-pot", __iconNode461);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy-check.js
var __iconNode462 = [
["path", { d: "m12 15 2 2 4-4", key: "2c609p" }],
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
];
var CopyCheck = createLucideIcon("copy-check", __iconNode462);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy-minus.js
var __iconNode463 = [
["line", { x1: "12", x2: "18", y1: "15", y2: "15", key: "1nscbv" }],
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
];
var CopyMinus = createLucideIcon("copy-minus", __iconNode463);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy-plus.js
var __iconNode464 = [
["line", { x1: "15", x2: "15", y1: "12", y2: "18", key: "1p7wdc" }],
["line", { x1: "12", x2: "18", y1: "15", y2: "15", key: "1nscbv" }],
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
];
var CopyPlus = createLucideIcon("copy-plus", __iconNode464);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy-x.js
var __iconNode465 = [
["line", { x1: "12", x2: "18", y1: "12", y2: "18", key: "1rg63v" }],
["line", { x1: "12", x2: "18", y1: "18", y2: "12", key: "ebkxgr" }],
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
];
var CopyX = createLucideIcon("copy-x", __iconNode465);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy-slash.js
var __iconNode466 = [
["line", { x1: "12", x2: "18", y1: "18", y2: "12", key: "ebkxgr" }],
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
];
var CopySlash = createLucideIcon("copy-slash", __iconNode466);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy.js
var __iconNode467 = [
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
];
var Copy = createLucideIcon("copy", __iconNode467);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copyright.js
var __iconNode468 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M14.83 14.83a4 4 0 1 1 0-5.66", key: "1i56pz" }]
];
var Copyright = createLucideIcon("copyright", __iconNode468);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copyleft.js
var __iconNode469 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M9.17 14.83a4 4 0 1 0 0-5.66", key: "1sveal" }]
];
var Copyleft = createLucideIcon("copyleft", __iconNode469);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/corner-down-left.js
var __iconNode470 = [
["path", { d: "M20 4v7a4 4 0 0 1-4 4H4", key: "6o5b7l" }],
["path", { d: "m9 10-5 5 5 5", key: "1kshq7" }]
];
var CornerDownLeft = createLucideIcon("corner-down-left", __iconNode470);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/corner-down-right.js
var __iconNode471 = [
["path", { d: "m15 10 5 5-5 5", key: "qqa56n" }],
["path", { d: "M4 4v7a4 4 0 0 0 4 4h12", key: "z08zvw" }]
];
var CornerDownRight = createLucideIcon("corner-down-right", __iconNode471);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/corner-left-down.js
var __iconNode472 = [
["path", { d: "m14 15-5 5-5-5", key: "1eia93" }],
["path", { d: "M20 4h-7a4 4 0 0 0-4 4v12", key: "nbpdq2" }]
];
var CornerLeftDown = createLucideIcon("corner-left-down", __iconNode472);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/corner-left-up.js
var __iconNode473 = [
["path", { d: "M14 9 9 4 4 9", key: "1af5af" }],
["path", { d: "M20 20h-7a4 4 0 0 1-4-4V4", key: "1blwi3" }]
];
var CornerLeftUp = createLucideIcon("corner-left-up", __iconNode473);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/corner-right-down.js
var __iconNode474 = [
["path", { d: "m10 15 5 5 5-5", key: "1hpjnr" }],
["path", { d: "M4 4h7a4 4 0 0 1 4 4v12", key: "wcbgct" }]
];
var CornerRightDown = createLucideIcon("corner-right-down", __iconNode474);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/corner-right-up.js
var __iconNode475 = [
["path", { d: "m10 9 5-5 5 5", key: "9ctzwi" }],
["path", { d: "M4 20h7a4 4 0 0 0 4-4V4", key: "1plgdj" }]
];
var CornerRightUp = createLucideIcon("corner-right-up", __iconNode475);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/corner-up-left.js
var __iconNode476 = [
["path", { d: "M20 20v-7a4 4 0 0 0-4-4H4", key: "1nkjon" }],
["path", { d: "M9 14 4 9l5-5", key: "102s5s" }]
];
var CornerUpLeft = createLucideIcon("corner-up-left", __iconNode476);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/corner-up-right.js
var __iconNode477 = [
["path", { d: "m15 14 5-5-5-5", key: "12vg1m" }],
["path", { d: "M4 20v-7a4 4 0 0 1 4-4h12", key: "1lu4f8" }]
];
var CornerUpRight = createLucideIcon("corner-up-right", __iconNode477);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cpu.js
var __iconNode478 = [
["path", { d: "M12 20v2", key: "1lh1kg" }],
["path", { d: "M12 2v2", key: "tus03m" }],
["path", { d: "M17 20v2", key: "1rnc9c" }],
["path", { d: "M17 2v2", key: "11trls" }],
["path", { d: "M2 12h2", key: "1t8f8n" }],
["path", { d: "M2 17h2", key: "7oei6x" }],
["path", { d: "M2 7h2", key: "asdhe0" }],
["path", { d: "M20 12h2", key: "1q8mjw" }],
["path", { d: "M20 17h2", key: "1fpfkl" }],
["path", { d: "M20 7h2", key: "1o8tra" }],
["path", { d: "M7 20v2", key: "4gnj0m" }],
["path", { d: "M7 2v2", key: "1i4yhu" }],
["rect", { x: "4", y: "4", width: "16", height: "16", rx: "2", key: "1vbyd7" }],
["rect", { x: "8", y: "8", width: "8", height: "8", rx: "1", key: "z9xiuo" }]
];
var Cpu = createLucideIcon("cpu", __iconNode478);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/creative-commons.js
var __iconNode479 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
[
"path",
{ d: "M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1", key: "1ss3eq" }
],
[
"path",
{ d: "M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1", key: "1od56t" }
]
];
var CreativeCommons = createLucideIcon("creative-commons", __iconNode479);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/credit-card.js
var __iconNode480 = [
["rect", { width: "20", height: "14", x: "2", y: "5", rx: "2", key: "ynyp8z" }],
["line", { x1: "2", x2: "22", y1: "10", y2: "10", key: "1b3vmo" }]
];
var CreditCard = createLucideIcon("credit-card", __iconNode480);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/croissant.js
var __iconNode481 = [
[
"path",
{
d: "m4.6 13.11 5.79-3.21c1.89-1.05 4.79 1.78 3.71 3.71l-3.22 5.81C8.8 23.16.79 15.23 4.6 13.11Z",
key: "1ozxlb"
}
],
[
"path",
{
d: "m10.5 9.5-1-2.29C9.2 6.48 8.8 6 8 6H4.5C2.79 6 2 6.5 2 8.5a7.71 7.71 0 0 0 2 4.83",
key: "ffuyb5"
}
],
["path", { d: "M8 6c0-1.55.24-4-2-4-2 0-2.5 2.17-2.5 4", key: "osnpzi" }],
[
"path",
{
d: "m14.5 13.5 2.29 1c.73.3 1.21.7 1.21 1.5v3.5c0 1.71-.5 2.5-2.5 2.5a7.71 7.71 0 0 1-4.83-2",
key: "1vubaw"
}
],
["path", { d: "M18 16c1.55 0 4-.24 4 2 0 2-2.17 2.5-4 2.5", key: "wxr772" }]
];
var Croissant = createLucideIcon("croissant", __iconNode481);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/crop.js
var __iconNode482 = [
["path", { d: "M6 2v14a2 2 0 0 0 2 2h14", key: "ron5a4" }],
["path", { d: "M18 22V8a2 2 0 0 0-2-2H2", key: "7s9ehn" }]
];
var Crop = createLucideIcon("crop", __iconNode482);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cross.js
var __iconNode483 = [
[
"path",
{
d: "M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z",
key: "1xbrqy"
}
]
];
var Cross = createLucideIcon("cross", __iconNode483);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/crosshair.js
var __iconNode484 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["line", { x1: "22", x2: "18", y1: "12", y2: "12", key: "l9bcsi" }],
["line", { x1: "6", x2: "2", y1: "12", y2: "12", key: "13hhkx" }],
["line", { x1: "12", x2: "12", y1: "6", y2: "2", key: "10w3f3" }],
["line", { x1: "12", x2: "12", y1: "22", y2: "18", key: "15g9kq" }]
];
var Crosshair = createLucideIcon("crosshair", __iconNode484);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/crown.js
var __iconNode485 = [
[
"path",
{
d: "M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z",
key: "1vdc57"
}
],
["path", { d: "M5 21h14", key: "11awu3" }]
];
var Crown = createLucideIcon("crown", __iconNode485);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cuboid.js
var __iconNode486 = [
[
"path",
{
d: "m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z",
key: "1u2ovd"
}
],
["path", { d: "M10 22v-8L2.25 9.15", key: "11pn4q" }],
["path", { d: "m10 14 11.77-6.87", key: "1kt1wh" }]
];
var Cuboid = createLucideIcon("cuboid", __iconNode486);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cup-soda.js
var __iconNode487 = [
["path", { d: "m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8", key: "8166m8" }],
["path", { d: "M5 8h14", key: "pcz4l3" }],
["path", { d: "M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0", key: "yjz344" }],
["path", { d: "m12 8 1-6h2", key: "3ybfa4" }]
];
var CupSoda = createLucideIcon("cup-soda", __iconNode487);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/currency.js
var __iconNode488 = [
["circle", { cx: "12", cy: "12", r: "8", key: "46899m" }],
["line", { x1: "3", x2: "6", y1: "3", y2: "6", key: "1jkytn" }],
["line", { x1: "21", x2: "18", y1: "3", y2: "6", key: "14zfjt" }],
["line", { x1: "3", x2: "6", y1: "21", y2: "18", key: "iusuec" }],
["line", { x1: "21", x2: "18", y1: "21", y2: "18", key: "yj2dd7" }]
];
var Currency = createLucideIcon("currency", __iconNode488);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/cylinder.js
var __iconNode489 = [
["ellipse", { cx: "12", cy: "5", rx: "9", ry: "3", key: "msslwz" }],
["path", { d: "M3 5v14a9 3 0 0 0 18 0V5", key: "aqi0yr" }]
];
var Cylinder = createLucideIcon("cylinder", __iconNode489);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dam.js
var __iconNode490 = [
[
"path",
{ d: "M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1", key: "157kva" }
],
["path", { d: "M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1", key: "d7q6m6" }],
["path", { d: "M2 10h4", key: "l0bgd4" }],
["path", { d: "M2 14h4", key: "1gsvsf" }],
["path", { d: "M2 18h4", key: "1bu2t1" }],
["path", { d: "M2 6h4", key: "aawbzj" }],
[
"path",
{ d: "M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z", key: "pr6s65" }
]
];
var Dam = createLucideIcon("dam", __iconNode490);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/database-backup.js
var __iconNode491 = [
["ellipse", { cx: "12", cy: "5", rx: "9", ry: "3", key: "msslwz" }],
["path", { d: "M3 12a9 3 0 0 0 5 2.69", key: "1ui2ym" }],
["path", { d: "M21 9.3V5", key: "6k6cib" }],
["path", { d: "M3 5v14a9 3 0 0 0 6.47 2.88", key: "i62tjy" }],
["path", { d: "M12 12v4h4", key: "1bxaet" }],
[
"path",
{
d: "M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16",
key: "1f4ei9"
}
]
];
var DatabaseBackup = createLucideIcon("database-backup", __iconNode491);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/database-zap.js
var __iconNode492 = [
["ellipse", { cx: "12", cy: "5", rx: "9", ry: "3", key: "msslwz" }],
["path", { d: "M3 5V19A9 3 0 0 0 15 21.84", key: "14ibmq" }],
["path", { d: "M21 5V8", key: "1marbg" }],
["path", { d: "M21 12L18 17H22L19 22", key: "zafso" }],
["path", { d: "M3 12A9 3 0 0 0 14.59 14.87", key: "1y4wr8" }]
];
var DatabaseZap = createLucideIcon("database-zap", __iconNode492);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/database.js
var __iconNode493 = [
["ellipse", { cx: "12", cy: "5", rx: "9", ry: "3", key: "msslwz" }],
["path", { d: "M3 5V19A9 3 0 0 0 21 19V5", key: "1wlel7" }],
["path", { d: "M3 12A9 3 0 0 0 21 12", key: "mv7ke4" }]
];
var Database = createLucideIcon("database", __iconNode493);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/decimals-arrow-left.js
var __iconNode494 = [
["path", { d: "m13 21-3-3 3-3", key: "s3o1nf" }],
["path", { d: "M20 18H10", key: "14r3mt" }],
["path", { d: "M3 11h.01", key: "1eifu7" }],
["rect", { x: "6", y: "3", width: "5", height: "8", rx: "2.5", key: "v9paqo" }]
];
var DecimalsArrowLeft = createLucideIcon("decimals-arrow-left", __iconNode494);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/decimals-arrow-right.js
var __iconNode495 = [
["path", { d: "M10 18h10", key: "1y5s8o" }],
["path", { d: "m17 21 3-3-3-3", key: "1ammt0" }],
["path", { d: "M3 11h.01", key: "1eifu7" }],
["rect", { x: "15", y: "3", width: "5", height: "8", rx: "2.5", key: "76md6a" }],
["rect", { x: "6", y: "3", width: "5", height: "8", rx: "2.5", key: "v9paqo" }]
];
var DecimalsArrowRight = createLucideIcon("decimals-arrow-right", __iconNode495);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/delete.js
var __iconNode496 = [
[
"path",
{
d: "M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z",
key: "1yo7s0"
}
],
["path", { d: "m12 9 6 6", key: "anjzzh" }],
["path", { d: "m18 9-6 6", key: "1fp51s" }]
];
var Delete = createLucideIcon("delete", __iconNode496);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dessert.js
var __iconNode497 = [
[
"path",
{
d: "M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826",
key: "xi88qy"
}
],
["path", { d: "M20.804 14.869a9 9 0 0 1-17.608 0", key: "1r28rg" }],
["circle", { cx: "12", cy: "4", r: "2", key: "muu5ef" }]
];
var Dessert = createLucideIcon("dessert", __iconNode497);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/diamond-minus.js
var __iconNode498 = [
[
"path",
{
d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",
key: "1ey20j"
}
],
["path", { d: "M8 12h8", key: "1wcyev" }]
];
var DiamondMinus = createLucideIcon("diamond-minus", __iconNode498);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/diameter.js
var __iconNode499 = [
["circle", { cx: "19", cy: "19", r: "2", key: "17f5cg" }],
["circle", { cx: "5", cy: "5", r: "2", key: "1gwv83" }],
["path", { d: "M6.48 3.66a10 10 0 0 1 13.86 13.86", key: "xr8kdq" }],
["path", { d: "m6.41 6.41 11.18 11.18", key: "uhpjw7" }],
["path", { d: "M3.66 6.48a10 10 0 0 0 13.86 13.86", key: "cldpwv" }]
];
var Diameter = createLucideIcon("diameter", __iconNode499);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/diamond-percent.js
var __iconNode500 = [
[
"path",
{
d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z",
key: "1tpxz2"
}
],
["path", { d: "M9.2 9.2h.01", key: "1b7bvt" }],
["path", { d: "m14.5 9.5-5 5", key: "17q4r4" }],
["path", { d: "M14.7 14.8h.01", key: "17nsh4" }]
];
var DiamondPercent = createLucideIcon("diamond-percent", __iconNode500);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/diamond-plus.js
var __iconNode501 = [
["path", { d: "M12 8v8", key: "napkw2" }],
[
"path",
{
d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",
key: "1ey20j"
}
],
["path", { d: "M8 12h8", key: "1wcyev" }]
];
var DiamondPlus = createLucideIcon("diamond-plus", __iconNode501);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/diamond.js
var __iconNode502 = [
[
"path",
{
d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z",
key: "1f1r0c"
}
]
];
var Diamond = createLucideIcon("diamond", __iconNode502);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dice-1.js
var __iconNode503 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }]
];
var Dice1 = createLucideIcon("dice-1", __iconNode503);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dice-2.js
var __iconNode504 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["path", { d: "M15 9h.01", key: "x1ddxp" }],
["path", { d: "M9 15h.01", key: "fzyn71" }]
];
var Dice2 = createLucideIcon("dice-2", __iconNode504);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dice-3.js
var __iconNode505 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["path", { d: "M16 8h.01", key: "cr5u4v" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }],
["path", { d: "M8 16h.01", key: "18s6g9" }]
];
var Dice3 = createLucideIcon("dice-3", __iconNode505);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dice-4.js
var __iconNode506 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["path", { d: "M16 8h.01", key: "cr5u4v" }],
["path", { d: "M8 8h.01", key: "1e4136" }],
["path", { d: "M8 16h.01", key: "18s6g9" }],
["path", { d: "M16 16h.01", key: "1f9h7w" }]
];
var Dice4 = createLucideIcon("dice-4", __iconNode506);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dice-5.js
var __iconNode507 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["path", { d: "M16 8h.01", key: "cr5u4v" }],
["path", { d: "M8 8h.01", key: "1e4136" }],
["path", { d: "M8 16h.01", key: "18s6g9" }],
["path", { d: "M16 16h.01", key: "1f9h7w" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }]
];
var Dice5 = createLucideIcon("dice-5", __iconNode507);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dice-6.js
var __iconNode508 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["path", { d: "M16 8h.01", key: "cr5u4v" }],
["path", { d: "M16 12h.01", key: "1l6xoz" }],
["path", { d: "M16 16h.01", key: "1f9h7w" }],
["path", { d: "M8 8h.01", key: "1e4136" }],
["path", { d: "M8 12h.01", key: "czm47f" }],
["path", { d: "M8 16h.01", key: "18s6g9" }]
];
var Dice6 = createLucideIcon("dice-6", __iconNode508);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dices.js
var __iconNode509 = [
["rect", { width: "12", height: "12", x: "2", y: "10", rx: "2", ry: "2", key: "6agr2n" }],
[
"path",
{ d: "m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6", key: "1o487t" }
],
["path", { d: "M6 18h.01", key: "uhywen" }],
["path", { d: "M10 14h.01", key: "ssrbsk" }],
["path", { d: "M15 6h.01", key: "cblpky" }],
["path", { d: "M18 9h.01", key: "2061c0" }]
];
var Dices = createLucideIcon("dices", __iconNode509);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/diff.js
var __iconNode510 = [
["path", { d: "M12 3v14", key: "7cf3v8" }],
["path", { d: "M5 10h14", key: "elsbfy" }],
["path", { d: "M5 21h14", key: "11awu3" }]
];
var Diff = createLucideIcon("diff", __iconNode510);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/disc-2.js
var __iconNode511 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }]
];
var Disc2 = createLucideIcon("disc-2", __iconNode511);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/disc-3.js
var __iconNode512 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M6 12c0-1.7.7-3.2 1.8-4.2", key: "oqkarx" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }],
["path", { d: "M18 12c0 1.7-.7 3.2-1.8 4.2", key: "1eah9h" }]
];
var Disc3 = createLucideIcon("disc-3", __iconNode512);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/disc-album.js
var __iconNode513 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["circle", { cx: "12", cy: "12", r: "5", key: "nd82uf" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }]
];
var DiscAlbum = createLucideIcon("disc-album", __iconNode513);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/disc.js
var __iconNode514 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
];
var Disc = createLucideIcon("disc", __iconNode514);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/divide.js
var __iconNode515 = [
["circle", { cx: "12", cy: "6", r: "1", key: "1bh7o1" }],
["line", { x1: "5", x2: "19", y1: "12", y2: "12", key: "13b5wn" }],
["circle", { cx: "12", cy: "18", r: "1", key: "lqb9t5" }]
];
var Divide = createLucideIcon("divide", __iconNode515);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dna-off.js
var __iconNode516 = [
["path", { d: "M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8", key: "1bivrr" }],
["path", { d: "m17 6-2.891-2.891", key: "xu6p2f" }],
["path", { d: "M2 15c3.333-3 6.667-3 10-3", key: "nxix30" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "m20 9 .891.891", key: "3xwk7g" }],
["path", { d: "M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1", key: "18cutr" }],
["path", { d: "M3.109 14.109 4 15", key: "q76aoh" }],
["path", { d: "m6.5 12.5 1 1", key: "cs35ky" }],
["path", { d: "m7 18 2.891 2.891", key: "1sisit" }],
["path", { d: "M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16", key: "rlvei3" }]
];
var DnaOff = createLucideIcon("dna-off", __iconNode516);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dna.js
var __iconNode517 = [
["path", { d: "m10 16 1.5 1.5", key: "11lckj" }],
["path", { d: "m14 8-1.5-1.5", key: "1ohn8i" }],
["path", { d: "M15 2c-1.798 1.998-2.518 3.995-2.807 5.993", key: "80uv8i" }],
["path", { d: "m16.5 10.5 1 1", key: "696xn5" }],
["path", { d: "m17 6-2.891-2.891", key: "xu6p2f" }],
["path", { d: "M2 15c6.667-6 13.333 0 20-6", key: "1pyr53" }],
["path", { d: "m20 9 .891.891", key: "3xwk7g" }],
["path", { d: "M3.109 14.109 4 15", key: "q76aoh" }],
["path", { d: "m6.5 12.5 1 1", key: "cs35ky" }],
["path", { d: "m7 18 2.891 2.891", key: "1sisit" }],
["path", { d: "M9 22c1.798-1.998 2.518-3.995 2.807-5.993", key: "q3hbxp" }]
];
var Dna = createLucideIcon("dna", __iconNode517);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dock.js
var __iconNode518 = [
["path", { d: "M2 8h20", key: "d11cs7" }],
["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2", key: "18n3k1" }],
["path", { d: "M6 16h12", key: "u522kt" }]
];
var Dock = createLucideIcon("dock", __iconNode518);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dog.js
var __iconNode519 = [
["path", { d: "M11.25 16.25h1.5L12 17z", key: "w7jh35" }],
["path", { d: "M16 14v.5", key: "1lajdz" }],
[
"path",
{
d: "M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309",
key: "u7s9ue"
}
],
["path", { d: "M8 14v.5", key: "1nzgdb" }],
[
"path",
{
d: "M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5",
key: "v8hric"
}
]
];
var Dog = createLucideIcon("dog", __iconNode519);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dollar-sign.js
var __iconNode520 = [
["line", { x1: "12", x2: "12", y1: "2", y2: "22", key: "7eqyqh" }],
["path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6", key: "1b0p4s" }]
];
var DollarSign = createLucideIcon("dollar-sign", __iconNode520);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/door-closed-locked.js
var __iconNode521 = [
["path", { d: "M10 12h.01", key: "1kxr2c" }],
["path", { d: "M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14", key: "1bnhmg" }],
["path", { d: "M2 20h8", key: "10ntw1" }],
["path", { d: "M20 17v-2a2 2 0 1 0-4 0v2", key: "pwaxnr" }],
["rect", { x: "14", y: "17", width: "8", height: "5", rx: "1", key: "15pjcy" }]
];
var DoorClosedLocked = createLucideIcon("door-closed-locked", __iconNode521);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/donut.js
var __iconNode522 = [
[
"path",
{
d: "M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3",
key: "19sr3x"
}
],
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
];
var Donut = createLucideIcon("donut", __iconNode522);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/door-closed.js
var __iconNode523 = [
["path", { d: "M10 12h.01", key: "1kxr2c" }],
["path", { d: "M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14", key: "36qu9e" }],
["path", { d: "M2 20h20", key: "owomy5" }]
];
var DoorClosed = createLucideIcon("door-closed", __iconNode523);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dot.js
var __iconNode524 = [["circle", { cx: "12.1", cy: "12.1", r: "1", key: "18d7e5" }]];
var Dot = createLucideIcon("dot", __iconNode524);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/download.js
var __iconNode525 = [
["path", { d: "M12 15V3", key: "m9g1x1" }],
["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4", key: "ih7n3h" }],
["path", { d: "m7 10 5 5 5-5", key: "brsn70" }]
];
var Download = createLucideIcon("download", __iconNode525);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/door-open.js
var __iconNode526 = [
["path", { d: "M11 20H2", key: "nlcfvz" }],
[
"path",
{
d: "M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z",
key: "au4z13"
}
],
["path", { d: "M11 4H8a2 2 0 0 0-2 2v14", key: "74r1mk" }],
["path", { d: "M14 12h.01", key: "1jfl7z" }],
["path", { d: "M22 20h-3", key: "vhrsz" }]
];
var DoorOpen = createLucideIcon("door-open", __iconNode526);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/drafting-compass.js
var __iconNode527 = [
["path", { d: "m12.99 6.74 1.93 3.44", key: "iwagvd" }],
["path", { d: "M19.136 12a10 10 0 0 1-14.271 0", key: "ppmlo4" }],
["path", { d: "m21 21-2.16-3.84", key: "vylbct" }],
["path", { d: "m3 21 8.02-14.26", key: "1ssaw4" }],
["circle", { cx: "12", cy: "5", r: "2", key: "f1ur92" }]
];
var DraftingCompass = createLucideIcon("drafting-compass", __iconNode527);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/drama.js
var __iconNode528 = [
["path", { d: "M10 11h.01", key: "d2at3l" }],
["path", { d: "M14 6h.01", key: "k028ub" }],
["path", { d: "M18 6h.01", key: "1v4wsw" }],
["path", { d: "M6.5 13.1h.01", key: "1748ia" }],
["path", { d: "M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3", key: "172yzv" }],
["path", { d: "M17.4 9.9c-.8.8-2 .8-2.8 0", key: "1obv0w" }],
[
"path",
{
d: "M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7",
key: "rqjl8i"
}
],
["path", { d: "M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4", key: "1mr6wy" }]
];
var Drama = createLucideIcon("drama", __iconNode528);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dribbble.js
var __iconNode529 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94", key: "hpej1" }],
["path", { d: "M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32", key: "1tr44o" }],
["path", { d: "M8.56 2.75c4.37 6 6 9.42 8 17.72", key: "kbh691" }]
];
var Dribbble = createLucideIcon("dribbble", __iconNode529);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/drill.js
var __iconNode530 = [
[
"path",
{ d: "M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z", key: "ioqxb1" }
],
[
"path",
{
d: "M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8",
key: "1rs59n"
}
],
["path", { d: "M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3", key: "105ega" }],
["path", { d: "M18 6h4", key: "66u95g" }],
["path", { d: "m5 10-2 8", key: "xt2lic" }],
["path", { d: "m7 18 2-8", key: "1bzku2" }]
];
var Drill = createLucideIcon("drill", __iconNode530);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/drone.js
var __iconNode531 = [
["path", { d: "M10 10 7 7", key: "zp14k7" }],
["path", { d: "m10 14-3 3", key: "1jrpxk" }],
["path", { d: "m14 10 3-3", key: "7tigam" }],
["path", { d: "m14 14 3 3", key: "vm23p3" }],
["path", { d: "M14.205 4.139a4 4 0 1 1 5.439 5.863", key: "1tm5p2" }],
["path", { d: "M19.637 14a4 4 0 1 1-5.432 5.868", key: "16egi2" }],
["path", { d: "M4.367 10a4 4 0 1 1 5.438-5.862", key: "1wta6a" }],
["path", { d: "M9.795 19.862a4 4 0 1 1-5.429-5.873", key: "q39hpv" }],
["rect", { x: "10", y: "8", width: "4", height: "8", rx: "1", key: "phrjt1" }]
];
var Drone = createLucideIcon("drone", __iconNode531);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/droplet-off.js
var __iconNode532 = [
[
"path",
{
d: "M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586",
key: "8suz2t"
}
],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
[
"path",
{ d: "M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208", key: "19dw9m" }
]
];
var DropletOff = createLucideIcon("droplet-off", __iconNode532);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/droplet.js
var __iconNode533 = [
[
"path",
{
d: "M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z",
key: "c7niix"
}
]
];
var Droplet = createLucideIcon("droplet", __iconNode533);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/droplets.js
var __iconNode534 = [
[
"path",
{
d: "M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z",
key: "1ptgy4"
}
],
[
"path",
{
d: "M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97",
key: "1sl1rz"
}
]
];
var Droplets = createLucideIcon("droplets", __iconNode534);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/drum.js
var __iconNode535 = [
["path", { d: "m2 2 8 8", key: "1v6059" }],
["path", { d: "m22 2-8 8", key: "173r8a" }],
["ellipse", { cx: "12", cy: "9", rx: "10", ry: "5", key: "liohsx" }],
["path", { d: "M7 13.4v7.9", key: "1yi6u9" }],
["path", { d: "M12 14v8", key: "1tn2tj" }],
["path", { d: "M17 13.4v7.9", key: "eqz2v3" }],
["path", { d: "M2 9v8a10 5 0 0 0 20 0V9", key: "1750ul" }]
];
var Drum = createLucideIcon("drum", __iconNode535);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/drumstick.js
var __iconNode536 = [
[
"path",
{ d: "M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23", key: "1dtqwm" }
],
[
"path",
{
d: "m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59",
key: "1oq1fw"
}
]
];
var Drumstick = createLucideIcon("drumstick", __iconNode536);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/dumbbell.js
var __iconNode537 = [
[
"path",
{
d: "M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z",
key: "9m4mmf"
}
],
["path", { d: "m2.5 21.5 1.4-1.4", key: "17g3f0" }],
["path", { d: "m20.1 3.9 1.4-1.4", key: "1qn309" }],
[
"path",
{
d: "M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z",
key: "1t2c92"
}
],
["path", { d: "m9.6 14.4 4.8-4.8", key: "6umqxw" }]
];
var Dumbbell = createLucideIcon("dumbbell", __iconNode537);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ear-off.js
var __iconNode538 = [
["path", { d: "M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46", key: "1qngmn" }],
["path", { d: "M6 8.5c0-.75.13-1.47.36-2.14", key: "b06bma" }],
["path", { d: "M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76", key: "g10hsz" }],
["path", { d: "M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18", key: "ygzou7" }],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var EarOff = createLucideIcon("ear-off", __iconNode538);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ear.js
var __iconNode539 = [
["path", { d: "M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0", key: "1dfaln" }],
["path", { d: "M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4", key: "1qnva7" }]
];
var Ear = createLucideIcon("ear", __iconNode539);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/earth-lock.js
var __iconNode540 = [
["path", { d: "M7 3.34V5a3 3 0 0 0 3 3", key: "w732o8" }],
["path", { d: "M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05", key: "f02343" }],
["path", { d: "M21.54 15H17a2 2 0 0 0-2 2v4.54", key: "1djwo0" }],
["path", { d: "M12 2a10 10 0 1 0 9.54 13", key: "zjsr6q" }],
["path", { d: "M20 6V4a2 2 0 1 0-4 0v2", key: "1of5e8" }],
["rect", { width: "8", height: "5", x: "14", y: "6", rx: "1", key: "1fmf51" }]
];
var EarthLock = createLucideIcon("earth-lock", __iconNode540);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/earth.js
var __iconNode541 = [
["path", { d: "M21.54 15H17a2 2 0 0 0-2 2v4.54", key: "1djwo0" }],
[
"path",
{
d: "M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17",
key: "1tzkfa"
}
],
["path", { d: "M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05", key: "14pb5j" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Earth = createLucideIcon("earth", __iconNode541);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eclipse.js
var __iconNode542 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M12 2a7 7 0 1 0 10 10", key: "1yuj32" }]
];
var Eclipse = createLucideIcon("eclipse", __iconNode542);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/egg-fried.js
var __iconNode543 = [
["circle", { cx: "11.5", cy: "12.5", r: "3.5", key: "1cl1mi" }],
[
"path",
{
d: "M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z",
key: "165ef9"
}
]
];
var EggFried = createLucideIcon("egg-fried", __iconNode543);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/egg-off.js
var __iconNode544 = [
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19", key: "13g2jy" }],
["path", { d: "M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568", key: "1581id" }]
];
var EggOff = createLucideIcon("egg-off", __iconNode544);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/egg.js
var __iconNode545 = [
["path", { d: "M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12", key: "1le142" }]
];
var Egg = createLucideIcon("egg", __iconNode545);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ellipsis-vertical.js
var __iconNode546 = [
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
["circle", { cx: "12", cy: "5", r: "1", key: "gxeob9" }],
["circle", { cx: "12", cy: "19", r: "1", key: "lyex9k" }]
];
var EllipsisVertical = createLucideIcon("ellipsis-vertical", __iconNode546);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ellipsis.js
var __iconNode547 = [
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
["circle", { cx: "19", cy: "12", r: "1", key: "1wjl8i" }],
["circle", { cx: "5", cy: "12", r: "1", key: "1pcz8c" }]
];
var Ellipsis = createLucideIcon("ellipsis", __iconNode547);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/equal-not.js
var __iconNode548 = [
["line", { x1: "5", x2: "19", y1: "9", y2: "9", key: "1nwqeh" }],
["line", { x1: "5", x2: "19", y1: "15", y2: "15", key: "g8yjpy" }],
["line", { x1: "19", x2: "5", y1: "5", y2: "19", key: "1x9vlm" }]
];
var EqualNot = createLucideIcon("equal-not", __iconNode548);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/equal-approximately.js
var __iconNode549 = [
["path", { d: "M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0", key: "yrdkhy" }],
["path", { d: "M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0", key: "gzkvyz" }]
];
var EqualApproximately = createLucideIcon("equal-approximately", __iconNode549);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/equal.js
var __iconNode550 = [
["line", { x1: "5", x2: "19", y1: "9", y2: "9", key: "1nwqeh" }],
["line", { x1: "5", x2: "19", y1: "15", y2: "15", key: "g8yjpy" }]
];
var Equal = createLucideIcon("equal", __iconNode550);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eraser.js
var __iconNode551 = [
[
"path",
{
d: "M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21",
key: "g5wo59"
}
],
["path", { d: "m5.082 11.09 8.828 8.828", key: "1wx5vj" }]
];
var Eraser = createLucideIcon("eraser", __iconNode551);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ethernet-port.js
var __iconNode552 = [
[
"path",
{
d: "m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z",
key: "rbahqx"
}
],
["path", { d: "M6 8v1", key: "1636ez" }],
["path", { d: "M10 8v1", key: "1talb4" }],
["path", { d: "M14 8v1", key: "1rsfgr" }],
["path", { d: "M18 8v1", key: "gnkwox" }]
];
var EthernetPort = createLucideIcon("ethernet-port", __iconNode552);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/euro.js
var __iconNode553 = [
["path", { d: "M4 10h12", key: "1y6xl8" }],
["path", { d: "M4 14h9", key: "1loblj" }],
[
"path",
{
d: "M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2",
key: "1j6lzo"
}
]
];
var Euro = createLucideIcon("euro", __iconNode553);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/expand.js
var __iconNode554 = [
["path", { d: "m15 15 6 6", key: "1s409w" }],
["path", { d: "m15 9 6-6", key: "ko1vev" }],
["path", { d: "M21 16v5h-5", key: "1ck2sf" }],
["path", { d: "M21 8V3h-5", key: "1qoq8a" }],
["path", { d: "M3 16v5h5", key: "1t08am" }],
["path", { d: "m3 21 6-6", key: "wwnumi" }],
["path", { d: "M3 8V3h5", key: "1ln10m" }],
["path", { d: "M9 9 3 3", key: "v551iv" }]
];
var Expand = createLucideIcon("expand", __iconNode554);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/external-link.js
var __iconNode555 = [
["path", { d: "M15 3h6v6", key: "1q9fwt" }],
["path", { d: "M10 14 21 3", key: "gplh6r" }],
["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6", key: "a6xqqp" }]
];
var ExternalLink = createLucideIcon("external-link", __iconNode555);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye-closed.js
var __iconNode556 = [
["path", { d: "m15 18-.722-3.25", key: "1j64jw" }],
["path", { d: "M2 8a10.645 10.645 0 0 0 20 0", key: "1e7gxb" }],
["path", { d: "m20 15-1.726-2.05", key: "1cnuld" }],
["path", { d: "m4 15 1.726-2.05", key: "1dsqqd" }],
["path", { d: "m9 18 .722-3.25", key: "ypw2yx" }]
];
var EyeClosed = createLucideIcon("eye-closed", __iconNode556);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye-off.js
var __iconNode557 = [
[
"path",
{
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",
key: "ct8e1f"
}
],
["path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242", key: "151rxh" }],
[
"path",
{
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",
key: "13bj9a"
}
],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var EyeOff = createLucideIcon("eye-off", __iconNode557);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye.js
var __iconNode558 = [
[
"path",
{
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",
key: "1nclc0"
}
],
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
];
var Eye = createLucideIcon("eye", __iconNode558);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/facebook.js
var __iconNode559 = [
[
"path",
{ d: "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z", key: "1jg4f8" }
]
];
var Facebook = createLucideIcon("facebook", __iconNode559);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/factory.js
var __iconNode560 = [
["path", { d: "M12 16h.01", key: "1drbdi" }],
["path", { d: "M16 16h.01", key: "1f9h7w" }],
[
"path",
{
d: "M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z",
key: "1iv0i2"
}
],
["path", { d: "M8 16h.01", key: "18s6g9" }]
];
var Factory = createLucideIcon("factory", __iconNode560);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fan.js
var __iconNode561 = [
[
"path",
{
d: "M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z",
key: "484a7f"
}
],
["path", { d: "M12 12v.01", key: "u5ubse" }]
];
var Fan = createLucideIcon("fan", __iconNode561);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fast-forward.js
var __iconNode562 = [
["polygon", { points: "13 19 22 12 13 5 13 19", key: "587y9g" }],
["polygon", { points: "2 19 11 12 2 5 2 19", key: "3pweh0" }]
];
var FastForward = createLucideIcon("fast-forward", __iconNode562);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/feather.js
var __iconNode563 = [
[
"path",
{
d: "M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z",
key: "18jl4k"
}
],
["path", { d: "M16 8 2 22", key: "vp34q" }],
["path", { d: "M17.5 15H9", key: "1oz8nu" }]
];
var Feather = createLucideIcon("feather", __iconNode563);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fence.js
var __iconNode564 = [
["path", { d: "M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z", key: "1n2rgs" }],
["path", { d: "M6 8h4", key: "utf9t1" }],
["path", { d: "M6 18h4", key: "12yh4b" }],
["path", { d: "m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z", key: "3ha7mj" }],
["path", { d: "M14 8h4", key: "1r8wg2" }],
["path", { d: "M14 18h4", key: "1t3kbu" }],
["path", { d: "m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z", key: "dfd4e2" }]
];
var Fence = createLucideIcon("fence", __iconNode564);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ferris-wheel.js
var __iconNode565 = [
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }],
["path", { d: "M12 2v4", key: "3427ic" }],
["path", { d: "m6.8 15-3.5 2", key: "hjy98k" }],
["path", { d: "m20.7 7-3.5 2", key: "f08gto" }],
["path", { d: "M6.8 9 3.3 7", key: "1aevh4" }],
["path", { d: "m20.7 17-3.5-2", key: "1liqo3" }],
["path", { d: "m9 22 3-8 3 8", key: "wees03" }],
["path", { d: "M8 22h8", key: "rmew8v" }],
["path", { d: "M18 18.7a9 9 0 1 0-12 0", key: "dhzg4g" }]
];
var FerrisWheel = createLucideIcon("ferris-wheel", __iconNode565);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/figma.js
var __iconNode566 = [
["path", { d: "M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z", key: "1340ok" }],
["path", { d: "M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z", key: "1hz3m3" }],
["path", { d: "M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z", key: "1oz8n2" }],
["path", { d: "M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z", key: "1ff65i" }],
["path", { d: "M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z", key: "pdip6e" }]
];
var Figma = createLucideIcon("figma", __iconNode566);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-archive.js
var __iconNode567 = [
["path", { d: "M10 12v-1", key: "v7bkov" }],
["path", { d: "M10 18v-2", key: "1cjy8d" }],
["path", { d: "M10 7V6", key: "dljcrl" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{ d: "M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01", key: "gkbcor" }
],
["circle", { cx: "10", cy: "20", r: "2", key: "1xzdoj" }]
];
var FileArchive = createLucideIcon("file-archive", __iconNode567);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-audio-2.js
var __iconNode568 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2", key: "17k7jt" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["circle", { cx: "3", cy: "17", r: "1", key: "vo6nti" }],
["path", { d: "M2 17v-3a4 4 0 0 1 8 0v3", key: "1ggdre" }],
["circle", { cx: "9", cy: "17", r: "1", key: "bc1fq4" }]
];
var FileAudio2 = createLucideIcon("file-audio-2", __iconNode568);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-audio.js
var __iconNode569 = [
["path", { d: "M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3", key: "rslqgf" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{
d: "M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0",
key: "9f7x3i"
}
]
];
var FileAudio = createLucideIcon("file-audio", __iconNode569);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-axis-3d.js
var __iconNode570 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m8 18 4-4", key: "12zab0" }],
["path", { d: "M8 10v8h8", key: "tlaukw" }]
];
var FileAxis3d = createLucideIcon("file-axis-3d", __iconNode570);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-badge-2.js
var __iconNode571 = [
[
"path",
{
d: "m13.69 12.479 1.29 4.88a.5.5 0 0 1-.697.591l-1.844-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88",
key: "7a4gmr"
}
],
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z", key: "1mlx9k" }],
["circle", { cx: "12", cy: "10", r: "3", key: "ilqhr7" }]
];
var FileBadge2 = createLucideIcon("file-badge-2", __iconNode571);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-badge.js
var __iconNode572 = [
["path", { d: "M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.072", key: "n6s66f" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{
d: "m6.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88",
key: "1e6yvx"
}
],
["circle", { cx: "5", cy: "14", r: "3", key: "ufru5t" }]
];
var FileBadge = createLucideIcon("file-badge", __iconNode572);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-box.js
var __iconNode573 = [
["path", { d: "M14.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "16lz6z" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{
d: "M3 13.1a2 2 0 0 0-1 1.76v3.24a2 2 0 0 0 .97 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01Z",
key: "99pj1s"
}
],
["path", { d: "M7 17v5", key: "1yj1jh" }],
["path", { d: "M11.7 14.2 7 17l-4.7-2.8", key: "1yk8tc" }]
];
var FileBox = createLucideIcon("file-box", __iconNode573);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-chart-column-increasing.js
var __iconNode574 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M8 18v-2", key: "qcmpov" }],
["path", { d: "M12 18v-4", key: "q1q25u" }],
["path", { d: "M16 18v-6", key: "15y0np" }]
];
var FileChartColumnIncreasing = createLucideIcon("file-chart-column-increasing", __iconNode574);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-chart-column.js
var __iconNode575 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M8 18v-1", key: "zg0ygc" }],
["path", { d: "M12 18v-6", key: "17g6i2" }],
["path", { d: "M16 18v-3", key: "j5jt4h" }]
];
var FileChartColumn = createLucideIcon("file-chart-column", __iconNode575);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-chart-pie.js
var __iconNode576 = [
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.5", key: "13ddob" }],
["path", { d: "M4.017 11.512a6 6 0 1 0 8.466 8.475", key: "s6vs5t" }],
[
"path",
{
d: "M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z",
key: "1dl6s6"
}
]
];
var FileChartPie = createLucideIcon("file-chart-pie", __iconNode576);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-chart-line.js
var __iconNode577 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m16 13-3.5 3.5-2-2L8 17", key: "zz7yod" }]
];
var FileChartLine = createLucideIcon("file-chart-line", __iconNode577);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-check-2.js
var __iconNode578 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m3 15 2 2 4-4", key: "1lhrkk" }]
];
var FileCheck2 = createLucideIcon("file-check-2", __iconNode578);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-check.js
var __iconNode579 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m9 15 2 2 4-4", key: "1grp1n" }]
];
var FileCheck = createLucideIcon("file-check", __iconNode579);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-code-2.js
var __iconNode580 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m5 12-3 3 3 3", key: "oke12k" }],
["path", { d: "m9 18 3-3-3-3", key: "112psh" }]
];
var FileCode2 = createLucideIcon("file-code-2", __iconNode580);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-clock.js
var __iconNode581 = [
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3", key: "37hlfg" }],
["path", { d: "M8 14v2.2l1.6 1", key: "6m4bie" }],
["circle", { cx: "8", cy: "16", r: "6", key: "10v15b" }]
];
var FileClock = createLucideIcon("file-clock", __iconNode581);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-code.js
var __iconNode582 = [
["path", { d: "M10 12.5 8 15l2 2.5", key: "1tg20x" }],
["path", { d: "m14 12.5 2 2.5-2 2.5", key: "yinavb" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z", key: "1mlx9k" }]
];
var FileCode = createLucideIcon("file-code", __iconNode582);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-cog.js
var __iconNode583 = [
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m2.305 15.53.923-.382", key: "yfp9st" }],
["path", { d: "m3.228 12.852-.924-.383", key: "bckynb" }],
[
"path",
{
d: "M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5",
key: "1yo3oz"
}
],
["path", { d: "m4.852 11.228-.383-.923", key: "1j88i9" }],
["path", { d: "m4.852 16.772-.383.924", key: "sag1dv" }],
["path", { d: "m7.148 11.228.383-.923", key: "rj39hk" }],
["path", { d: "m7.53 17.696-.382-.924", key: "1uu5cs" }],
["path", { d: "m8.772 12.852.923-.383", key: "13811l" }],
["path", { d: "m8.772 15.148.923.383", key: "z1a5l0" }],
["circle", { cx: "6", cy: "14", r: "3", key: "a1xfv6" }]
];
var FileCog = createLucideIcon("file-cog", __iconNode583);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-diff.js
var __iconNode584 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M9 10h6", key: "9gxzsh" }],
["path", { d: "M12 13V7", key: "h0r20n" }],
["path", { d: "M9 17h6", key: "r8uit2" }]
];
var FileDiff = createLucideIcon("file-diff", __iconNode584);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-digit.js
var __iconNode585 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["rect", { width: "4", height: "6", x: "2", y: "12", rx: "2", key: "jm304g" }],
["path", { d: "M10 12h2v6", key: "12zw74" }],
["path", { d: "M10 18h4", key: "1ulq68" }]
];
var FileDigit = createLucideIcon("file-digit", __iconNode585);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-down.js
var __iconNode586 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M12 18v-6", key: "17g6i2" }],
["path", { d: "m9 15 3 3 3-3", key: "1npd3o" }]
];
var FileDown = createLucideIcon("file-down", __iconNode586);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-heart.js
var __iconNode587 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2", key: "17k7jt" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{
d: "M10.29 10.7a2.43 2.43 0 0 0-2.66-.52c-.29.12-.56.3-.78.53l-.35.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L6.5 18l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z",
key: "1c1fso"
}
]
];
var FileHeart = createLucideIcon("file-heart", __iconNode587);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-image.js
var __iconNode588 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["circle", { cx: "10", cy: "12", r: "2", key: "737tya" }],
["path", { d: "m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22", key: "wt3hpn" }]
];
var FileImage = createLucideIcon("file-image", __iconNode588);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-input.js
var __iconNode589 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M2 15h10", key: "jfw4w8" }],
["path", { d: "m9 18 3-3-3-3", key: "112psh" }]
];
var FileInput = createLucideIcon("file-input", __iconNode589);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-json-2.js
var __iconNode590 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{ d: "M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1", key: "fq0c9t" }
],
[
"path",
{ d: "M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1", key: "4gibmv" }
]
];
var FileJson2 = createLucideIcon("file-json-2", __iconNode590);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-json.js
var __iconNode591 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{ d: "M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1", key: "1oajmo" }
],
[
"path",
{ d: "M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1", key: "mpwhp6" }
]
];
var FileJson = createLucideIcon("file-json", __iconNode591);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-key-2.js
var __iconNode592 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v6", key: "rc0qvx" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["circle", { cx: "4", cy: "16", r: "2", key: "1ehqvc" }],
["path", { d: "m10 10-4.5 4.5", key: "7fwrp6" }],
["path", { d: "m9 11 1 1", key: "wa6s5q" }]
];
var FileKey2 = createLucideIcon("file-key-2", __iconNode592);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-key.js
var __iconNode593 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["circle", { cx: "10", cy: "16", r: "2", key: "4ckbqe" }],
["path", { d: "m16 10-4.5 4.5", key: "7p3ebg" }],
["path", { d: "m15 11 1 1", key: "1bsyx3" }]
];
var FileKey = createLucideIcon("file-key", __iconNode593);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-lock-2.js
var __iconNode594 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1", key: "jmtmu2" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["rect", { width: "8", height: "5", x: "2", y: "13", rx: "1", key: "10y5wo" }],
["path", { d: "M8 13v-2a2 2 0 1 0-4 0v2", key: "1pdxzg" }]
];
var FileLock2 = createLucideIcon("file-lock-2", __iconNode594);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-lock.js
var __iconNode595 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["rect", { width: "8", height: "6", x: "8", y: "12", rx: "1", key: "3yr8at" }],
["path", { d: "M10 12v-2a2 2 0 1 1 4 0v2", key: "j4i8d" }]
];
var FileLock = createLucideIcon("file-lock", __iconNode595);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-minus-2.js
var __iconNode596 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M3 15h6", key: "4e2qda" }]
];
var FileMinus2 = createLucideIcon("file-minus-2", __iconNode596);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-minus.js
var __iconNode597 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M9 15h6", key: "cctwl0" }]
];
var FileMinus = createLucideIcon("file-minus", __iconNode597);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-music.js
var __iconNode598 = [
["path", { d: "M10.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v8.4", key: "1d3kfm" }],
["path", { d: "M8 18v-7.7L16 9v7", key: "1oie6o" }],
["circle", { cx: "14", cy: "16", r: "2", key: "1bzzi3" }],
["circle", { cx: "6", cy: "18", r: "2", key: "1fncim" }]
];
var FileMusic = createLucideIcon("file-music", __iconNode598);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-output.js
var __iconNode599 = [
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M4 7V4a2 2 0 0 1 2-2 2 2 0 0 0-2 2", key: "1vk7w2" }],
["path", { d: "M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6", key: "1jink5" }],
["path", { d: "m5 11-3 3", key: "1dgrs4" }],
["path", { d: "m5 17-3-3h10", key: "1mvvaf" }]
];
var FileOutput = createLucideIcon("file-output", __iconNode599);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-pen-line.js
var __iconNode600 = [
[
"path",
{
d: "m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2",
key: "142zxg"
}
],
[
"path",
{
d: "M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "2t3380"
}
],
["path", { d: "M8 18h1", key: "13wk12" }]
];
var FilePenLine = createLucideIcon("file-pen-line", __iconNode600);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-pen.js
var __iconNode601 = [
["path", { d: "M12.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v9.5", key: "1couwa" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{
d: "M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "1y4qbx"
}
]
];
var FilePen = createLucideIcon("file-pen", __iconNode601);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-plus-2.js
var __iconNode602 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M3 15h6", key: "4e2qda" }],
["path", { d: "M6 12v6", key: "1u72j0" }]
];
var FilePlus2 = createLucideIcon("file-plus-2", __iconNode602);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-plus.js
var __iconNode603 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M9 15h6", key: "cctwl0" }],
["path", { d: "M12 18v-6", key: "17g6i2" }]
];
var FilePlus = createLucideIcon("file-plus", __iconNode603);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-question-mark.js
var __iconNode604 = [
["path", { d: "M12 17h.01", key: "p32p05" }],
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z", key: "1mlx9k" }],
["path", { d: "M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3", key: "mhlwft" }]
];
var FileQuestionMark = createLucideIcon("file-question-mark", __iconNode604);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-scan.js
var __iconNode605 = [
["path", { d: "M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4", key: "1rdf37" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M16 14a2 2 0 0 0-2 2", key: "ceaadl" }],
["path", { d: "M20 14a2 2 0 0 1 2 2", key: "1ny6zw" }],
["path", { d: "M20 22a2 2 0 0 0 2-2", key: "1l9q4k" }],
["path", { d: "M16 22a2 2 0 0 1-2-2", key: "1wqh5n" }]
];
var FileScan = createLucideIcon("file-scan", __iconNode605);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-search-2.js
var __iconNode606 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["circle", { cx: "11.5", cy: "14.5", r: "2.5", key: "1bq0ko" }],
["path", { d: "M13.3 16.3 15 18", key: "2quom7" }]
];
var FileSearch2 = createLucideIcon("file-search-2", __iconNode606);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-search.js
var __iconNode607 = [
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{ d: "M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3", key: "ms7g94" }
],
["path", { d: "m9 18-1.5-1.5", key: "1j6qii" }],
["circle", { cx: "5", cy: "14", r: "3", key: "ufru5t" }]
];
var FileSearch = createLucideIcon("file-search", __iconNode607);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-sliders.js
var __iconNode608 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
["path", { d: "M10 11v2", key: "1s651w" }],
["path", { d: "M8 17h8", key: "wh5c61" }],
["path", { d: "M14 16v2", key: "12fp5e" }]
];
var FileSliders = createLucideIcon("file-sliders", __iconNode608);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-spreadsheet.js
var __iconNode609 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M8 13h2", key: "yr2amv" }],
["path", { d: "M14 13h2", key: "un5t4a" }],
["path", { d: "M8 17h2", key: "2yhykz" }],
["path", { d: "M14 17h2", key: "10kma7" }]
];
var FileSpreadsheet = createLucideIcon("file-spreadsheet", __iconNode609);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-stack.js
var __iconNode610 = [
["path", { d: "M21 7h-3a2 2 0 0 1-2-2V2", key: "9rb54x" }],
[
"path",
{
d: "M21 6v6.5c0 .8-.7 1.5-1.5 1.5h-7c-.8 0-1.5-.7-1.5-1.5v-9c0-.8.7-1.5 1.5-1.5H17Z",
key: "1059l0"
}
],
["path", { d: "M7 8v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H15", key: "16874u" }],
["path", { d: "M3 12v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H11", key: "k2ox98" }]
];
var FileStack = createLucideIcon("file-stack", __iconNode610);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-symlink.js
var __iconNode611 = [
["path", { d: "m10 18 3-3-3-3", key: "18f6ys" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{
d: "M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",
key: "50q2rw"
}
]
];
var FileSymlink = createLucideIcon("file-symlink", __iconNode611);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-terminal.js
var __iconNode612 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m8 16 2-2-2-2", key: "10vzyd" }],
["path", { d: "M12 18h4", key: "1wd2n7" }]
];
var FileTerminal = createLucideIcon("file-terminal", __iconNode612);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js
var __iconNode613 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M10 9H8", key: "b1mrlr" }],
["path", { d: "M16 13H8", key: "t4e002" }],
["path", { d: "M16 17H8", key: "z1uh3a" }]
];
var FileText = createLucideIcon("file-text", __iconNode613);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-type-2.js
var __iconNode614 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M2 13v-1h6v1", key: "1dh9dg" }],
["path", { d: "M5 12v6", key: "150t9c" }],
["path", { d: "M4 18h2", key: "1xrofg" }]
];
var FileType2 = createLucideIcon("file-type-2", __iconNode614);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-type.js
var __iconNode615 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M9 13v-1h6v1", key: "1bb014" }],
["path", { d: "M12 12v6", key: "3ahymv" }],
["path", { d: "M11 18h2", key: "12mj7e" }]
];
var FileType = createLucideIcon("file-type", __iconNode615);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-up.js
var __iconNode616 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M12 12v6", key: "3ahymv" }],
["path", { d: "m15 15-3-3-3 3", key: "15xj92" }]
];
var FileUp = createLucideIcon("file-up", __iconNode616);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-video-2.js
var __iconNode617 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["rect", { width: "8", height: "6", x: "2", y: "12", rx: "1", key: "1a6c1e" }],
["path", { d: "m10 15.5 4 2.5v-6l-4 2.5", key: "t7cp39" }]
];
var FileVideo2 = createLucideIcon("file-video-2", __iconNode617);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-user.js
var __iconNode618 = [
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M15 18a3 3 0 1 0-6 0", key: "16awa0" }],
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z", key: "1mlx9k" }],
["circle", { cx: "12", cy: "13", r: "2", key: "1c1ljs" }]
];
var FileUser = createLucideIcon("file-user", __iconNode618);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-video.js
var __iconNode619 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m10 11 5 3-5 3v-6Z", key: "7ntvm4" }]
];
var FileVideo = createLucideIcon("file-video", __iconNode619);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-volume-2.js
var __iconNode620 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M8 15h.01", key: "a7atzg" }],
["path", { d: "M11.5 13.5a2.5 2.5 0 0 1 0 3", key: "1fccat" }],
["path", { d: "M15 12a5 5 0 0 1 0 6", key: "ps46cm" }]
];
var FileVolume2 = createLucideIcon("file-volume-2", __iconNode620);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-volume.js
var __iconNode621 = [
["path", { d: "M11 11a5 5 0 0 1 0 6", key: "193qb2" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
[
"path",
{ d: "M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-.93-.23", key: "ifyjnl" }
],
[
"path",
{
d: "M7 10.51a.5.5 0 0 0-.826-.38l-1.893 1.628A1 1 0 0 1 3.63 12H2.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1.129a1 1 0 0 1 .652.242l1.893 1.63a.5.5 0 0 0 .826-.38z",
key: "mk8rxu"
}
]
];
var FileVolume = createLucideIcon("file-volume", __iconNode621);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-warning.js
var __iconNode622 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M12 9v4", key: "juzpu7" }],
["path", { d: "M12 17h.01", key: "p32p05" }]
];
var FileWarning = createLucideIcon("file-warning", __iconNode622);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-x-2.js
var __iconNode623 = [
["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4", key: "1pf5j1" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m8 12.5-5 5", key: "b853mi" }],
["path", { d: "m3 12.5 5 5", key: "1qls4r" }]
];
var FileX2 = createLucideIcon("file-x-2", __iconNode623);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-x.js
var __iconNode624 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "m14.5 12.5-5 5", key: "b62r18" }],
["path", { d: "m9.5 12.5 5 5", key: "1rk7el" }]
];
var FileX = createLucideIcon("file-x", __iconNode624);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js
var __iconNode625 = [
["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }]
];
var File = createLucideIcon("file", __iconNode625);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/files.js
var __iconNode626 = [
["path", { d: "M20 7h-3a2 2 0 0 1-2-2V2", key: "x099mo" }],
["path", { d: "M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z", key: "18t6ie" }],
["path", { d: "M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8", key: "1nja0z" }]
];
var Files = createLucideIcon("files", __iconNode626);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/film.js
var __iconNode627 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M7 3v18", key: "bbkbws" }],
["path", { d: "M3 7.5h4", key: "zfgn84" }],
["path", { d: "M3 12h18", key: "1i2n21" }],
["path", { d: "M3 16.5h4", key: "1230mu" }],
["path", { d: "M17 3v18", key: "in4fa5" }],
["path", { d: "M17 7.5h4", key: "myr1c1" }],
["path", { d: "M17 16.5h4", key: "go4c1d" }]
];
var Film = createLucideIcon("film", __iconNode627);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fingerprint.js
var __iconNode628 = [
["path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4", key: "1nerag" }],
["path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88", key: "o46ks0" }],
["path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02", key: "ptglia" }],
["path", { d: "M2 12a10 10 0 0 1 18-6", key: "ydlgp0" }],
["path", { d: "M2 16h.01", key: "1gqxmh" }],
["path", { d: "M21.8 16c.2-2 .131-5.354 0-6", key: "drycrb" }],
["path", { d: "M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2", key: "1tidbn" }],
["path", { d: "M8.65 22c.21-.66.45-1.32.57-2", key: "13wd9y" }],
["path", { d: "M9 6.8a6 6 0 0 1 9 5.2v2", key: "1fr1j5" }]
];
var Fingerprint = createLucideIcon("fingerprint", __iconNode628);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fire-extinguisher.js
var __iconNode629 = [
["path", { d: "M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5", key: "sqyvz" }],
["path", { d: "M9 18h8", key: "i7pszb" }],
["path", { d: "M18 3h-3", key: "7idoqj" }],
["path", { d: "M11 3a6 6 0 0 0-6 6v11", key: "1v5je3" }],
["path", { d: "M5 13h4", key: "svpcxo" }],
["path", { d: "M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z", key: "vsjego" }]
];
var FireExtinguisher = createLucideIcon("fire-extinguisher", __iconNode629);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fish-off.js
var __iconNode630 = [
[
"path",
{
d: "M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058",
key: "1j1hse"
}
],
[
"path",
{
d: "M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618",
key: "1q46z8"
}
],
[
"path",
{
d: "m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20",
key: "1407gh"
}
]
];
var FishOff = createLucideIcon("fish-off", __iconNode630);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fish-symbol.js
var __iconNode631 = [
["path", { d: "M2 16s9-15 20-4C11 23 2 8 2 8", key: "h4oh4o" }]
];
var FishSymbol = createLucideIcon("fish-symbol", __iconNode631);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fish.js
var __iconNode632 = [
[
"path",
{
d: "M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z",
key: "15baut"
}
],
["path", { d: "M18 12v.5", key: "18hhni" }],
["path", { d: "M16 17.93a9.77 9.77 0 0 1 0-11.86", key: "16dt7o" }],
[
"path",
{
d: "M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33",
key: "l9di03"
}
],
[
"path",
{ d: "M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4", key: "1kjonw" }
],
[
"path",
{ d: "m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98", key: "1zlm23" }
]
];
var Fish = createLucideIcon("fish", __iconNode632);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flag-off.js
var __iconNode633 = [
["path", { d: "M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528", key: "1q158e" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M4 22V4", key: "1plyxx" }],
["path", { d: "M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347", key: "xj1b71" }]
];
var FlagOff = createLucideIcon("flag-off", __iconNode633);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flag-triangle-left.js
var __iconNode634 = [["path", { d: "M17 22V2L7 7l10 5", key: "1rmf0r" }]];
var FlagTriangleLeft = createLucideIcon("flag-triangle-left", __iconNode634);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flag-triangle-right.js
var __iconNode635 = [["path", { d: "M7 22V2l10 5-10 5", key: "17n18y" }]];
var FlagTriangleRight = createLucideIcon("flag-triangle-right", __iconNode635);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flag.js
var __iconNode636 = [
[
"path",
{
d: "M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528",
key: "1jaruq"
}
]
];
var Flag = createLucideIcon("flag", __iconNode636);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flame-kindling.js
var __iconNode637 = [
[
"path",
{
d: "M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z",
key: "1ir223"
}
],
["path", { d: "m5 22 14-4", key: "1brv4h" }],
["path", { d: "m5 18 14 4", key: "lgyyje" }]
];
var FlameKindling = createLucideIcon("flame-kindling", __iconNode637);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flame.js
var __iconNode638 = [
[
"path",
{
d: "M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z",
key: "96xj49"
}
]
];
var Flame = createLucideIcon("flame", __iconNode638);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flashlight-off.js
var __iconNode639 = [
["path", { d: "M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4", key: "1r120k" }],
["path", { d: "M7 2h11v4c0 2-2 2-2 4v1", key: "dz1920" }],
["line", { x1: "11", x2: "18", y1: "6", y2: "6", key: "bi1vpe" }],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var FlashlightOff = createLucideIcon("flashlight-off", __iconNode639);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flashlight.js
var __iconNode640 = [
[
"path",
{
d: "M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z",
key: "1orkel"
}
],
["line", { x1: "6", x2: "18", y1: "6", y2: "6", key: "1z11jq" }],
["line", { x1: "12", x2: "12", y1: "12", y2: "12", key: "1f4yc1" }]
];
var Flashlight = createLucideIcon("flashlight", __iconNode640);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flask-conical-off.js
var __iconNode641 = [
["path", { d: "M10 2v2.343", key: "15t272" }],
["path", { d: "M14 2v6.343", key: "sxr80q" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563", key: "k0duyd" }],
["path", { d: "M6.453 15H15", key: "1f0z33" }],
["path", { d: "M8.5 2h7", key: "csnxdl" }]
];
var FlaskConicalOff = createLucideIcon("flask-conical-off", __iconNode641);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flask-conical.js
var __iconNode642 = [
[
"path",
{
d: "M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2",
key: "18mbvz"
}
],
["path", { d: "M6.453 15h11.094", key: "3shlmq" }],
["path", { d: "M8.5 2h7", key: "csnxdl" }]
];
var FlaskConical = createLucideIcon("flask-conical", __iconNode642);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flask-round.js
var __iconNode643 = [
["path", { d: "M10 2v6.292a7 7 0 1 0 4 0V2", key: "1s42pc" }],
["path", { d: "M5 15h14", key: "m0yey3" }],
["path", { d: "M8.5 2h7", key: "csnxdl" }]
];
var FlaskRound = createLucideIcon("flask-round", __iconNode643);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flip-horizontal-2.js
var __iconNode644 = [
["path", { d: "m3 7 5 5-5 5V7", key: "couhi7" }],
["path", { d: "m21 7-5 5 5 5V7", key: "6ouia7" }],
["path", { d: "M12 20v2", key: "1lh1kg" }],
["path", { d: "M12 14v2", key: "8jcxud" }],
["path", { d: "M12 8v2", key: "1woqiv" }],
["path", { d: "M12 2v2", key: "tus03m" }]
];
var FlipHorizontal2 = createLucideIcon("flip-horizontal-2", __iconNode644);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flip-horizontal.js
var __iconNode645 = [
["path", { d: "M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3", key: "1i73f7" }],
["path", { d: "M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3", key: "saxlbk" }],
["path", { d: "M12 20v2", key: "1lh1kg" }],
["path", { d: "M12 14v2", key: "8jcxud" }],
["path", { d: "M12 8v2", key: "1woqiv" }],
["path", { d: "M12 2v2", key: "tus03m" }]
];
var FlipHorizontal = createLucideIcon("flip-horizontal", __iconNode645);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flip-vertical-2.js
var __iconNode646 = [
["path", { d: "m17 3-5 5-5-5h10", key: "1ftt6x" }],
["path", { d: "m17 21-5-5-5 5h10", key: "1m0wmu" }],
["path", { d: "M4 12H2", key: "rhcxmi" }],
["path", { d: "M10 12H8", key: "s88cx1" }],
["path", { d: "M16 12h-2", key: "10asgb" }],
["path", { d: "M22 12h-2", key: "14jgyd" }]
];
var FlipVertical2 = createLucideIcon("flip-vertical-2", __iconNode646);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flip-vertical.js
var __iconNode647 = [
["path", { d: "M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3", key: "14bfxa" }],
["path", { d: "M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3", key: "14rx03" }],
["path", { d: "M4 12H2", key: "rhcxmi" }],
["path", { d: "M10 12H8", key: "s88cx1" }],
["path", { d: "M16 12h-2", key: "10asgb" }],
["path", { d: "M22 12h-2", key: "14jgyd" }]
];
var FlipVertical = createLucideIcon("flip-vertical", __iconNode647);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flower-2.js
var __iconNode648 = [
[
"path",
{
d: "M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1",
key: "3pnvol"
}
],
["circle", { cx: "12", cy: "8", r: "2", key: "1822b1" }],
["path", { d: "M12 10v12", key: "6ubwww" }],
["path", { d: "M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z", key: "9hd38g" }],
["path", { d: "M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z", key: "ufn41s" }]
];
var Flower2 = createLucideIcon("flower-2", __iconNode648);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flower.js
var __iconNode649 = [
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }],
[
"path",
{
d: "M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5",
key: "14wa3c"
}
],
["path", { d: "M12 7.5V9", key: "1oy5b0" }],
["path", { d: "M7.5 12H9", key: "eltsq1" }],
["path", { d: "M16.5 12H15", key: "vk5kw4" }],
["path", { d: "M12 16.5V15", key: "k7eayi" }],
["path", { d: "m8 8 1.88 1.88", key: "nxy4qf" }],
["path", { d: "M14.12 9.88 16 8", key: "1lst6k" }],
["path", { d: "m8 16 1.88-1.88", key: "h2eex1" }],
["path", { d: "M14.12 14.12 16 16", key: "uqkrx3" }]
];
var Flower = createLucideIcon("flower", __iconNode649);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/focus.js
var __iconNode650 = [
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }],
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }]
];
var Focus = createLucideIcon("focus", __iconNode650);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fold-horizontal.js
var __iconNode651 = [
["path", { d: "M2 12h6", key: "1wqiqv" }],
["path", { d: "M22 12h-6", key: "1eg9hc" }],
["path", { d: "M12 2v2", key: "tus03m" }],
["path", { d: "M12 8v2", key: "1woqiv" }],
["path", { d: "M12 14v2", key: "8jcxud" }],
["path", { d: "M12 20v2", key: "1lh1kg" }],
["path", { d: "m19 9-3 3 3 3", key: "12ol22" }],
["path", { d: "m5 15 3-3-3-3", key: "1kdhjc" }]
];
var FoldHorizontal = createLucideIcon("fold-horizontal", __iconNode651);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fold-vertical.js
var __iconNode652 = [
["path", { d: "M12 22v-6", key: "6o8u61" }],
["path", { d: "M12 8V2", key: "1wkif3" }],
["path", { d: "M4 12H2", key: "rhcxmi" }],
["path", { d: "M10 12H8", key: "s88cx1" }],
["path", { d: "M16 12h-2", key: "10asgb" }],
["path", { d: "M22 12h-2", key: "14jgyd" }],
["path", { d: "m15 19-3-3-3 3", key: "e37ymu" }],
["path", { d: "m15 5-3 3-3-3", key: "19d6lf" }]
];
var FoldVertical = createLucideIcon("fold-vertical", __iconNode652);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-archive.js
var __iconNode653 = [
["circle", { cx: "15", cy: "19", r: "2", key: "u2pros" }],
[
"path",
{
d: "M20.9 19.8A2 2 0 0 0 22 18V8a2 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 2h5.1",
key: "1jj40k"
}
],
["path", { d: "M15 11v-1", key: "cntcp" }],
["path", { d: "M15 17v-2", key: "1279jj" }]
];
var FolderArchive = createLucideIcon("folder-archive", __iconNode653);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-check.js
var __iconNode654 = [
[
"path",
{
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",
key: "1kt360"
}
],
["path", { d: "m9 13 2 2 4-4", key: "6343dt" }]
];
var FolderCheck = createLucideIcon("folder-check", __iconNode654);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-clock.js
var __iconNode655 = [
["path", { d: "M16 14v2.2l1.6 1", key: "fo4ql5" }],
[
"path",
{
d: "M7 20H4a2 2 0 0 1-2-2V5a2 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 2",
key: "1urifu"
}
],
["circle", { cx: "16", cy: "16", r: "6", key: "qoo3c4" }]
];
var FolderClock = createLucideIcon("folder-clock", __iconNode655);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-closed.js
var __iconNode656 = [
[
"path",
{
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",
key: "1kt360"
}
],
["path", { d: "M2 10h20", key: "1ir3d8" }]
];
var FolderClosed = createLucideIcon("folder-closed", __iconNode656);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-code.js
var __iconNode657 = [
["path", { d: "M10 10.5 8 13l2 2.5", key: "m4t9c1" }],
["path", { d: "m14 10.5 2 2.5-2 2.5", key: "14w2eb" }],
[
"path",
{
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",
key: "1u1bxd"
}
]
];
var FolderCode = createLucideIcon("folder-code", __iconNode657);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-cog.js
var __iconNode658 = [
[
"path",
{
d: "M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3",
key: "128dxu"
}
],
["path", { d: "m14.305 19.53.923-.382", key: "3m78fa" }],
["path", { d: "m15.228 16.852-.923-.383", key: "npixar" }],
["path", { d: "m16.852 15.228-.383-.923", key: "5xggr7" }],
["path", { d: "m16.852 20.772-.383.924", key: "dpfhf9" }],
["path", { d: "m19.148 15.228.383-.923", key: "1reyyz" }],
["path", { d: "m19.53 21.696-.382-.924", key: "1goivc" }],
["path", { d: "m20.772 16.852.924-.383", key: "htqkph" }],
["path", { d: "m20.772 19.148.924.383", key: "9w9pjp" }],
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }]
];
var FolderCog = createLucideIcon("folder-cog", __iconNode658);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-dot.js
var __iconNode659 = [
[
"path",
{
d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",
key: "1fr9dc"
}
],
["circle", { cx: "12", cy: "13", r: "1", key: "49l61u" }]
];
var FolderDot = createLucideIcon("folder-dot", __iconNode659);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-down.js
var __iconNode660 = [
[
"path",
{
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",
key: "1kt360"
}
],
["path", { d: "M12 10v6", key: "1bos4e" }],
["path", { d: "m15 13-3 3-3-3", key: "6j2sf0" }]
];
var FolderDown = createLucideIcon("folder-down", __iconNode660);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-git-2.js
var __iconNode661 = [
[
"path",
{
d: "M9 20H4a2 2 0 0 1-2-2V5a2 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 2v5",
key: "1w6njk"
}
],
["circle", { cx: "13", cy: "12", r: "2", key: "1j92g6" }],
["path", { d: "M18 19c-2.8 0-5-2.2-5-5v8", key: "pkpw2h" }],
["circle", { cx: "20", cy: "19", r: "2", key: "1obnsp" }]
];
var FolderGit2 = createLucideIcon("folder-git-2", __iconNode661);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-git.js
var __iconNode662 = [
["circle", { cx: "12", cy: "13", r: "2", key: "1c1ljs" }],
[
"path",
{
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",
key: "1kt360"
}
],
["path", { d: "M14 13h3", key: "1dgedf" }],
["path", { d: "M7 13h3", key: "1pygq7" }]
];
var FolderGit = createLucideIcon("folder-git", __iconNode662);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-heart.js
var __iconNode663 = [
[
"path",
{
d: "M11 20H4a2 2 0 0 1-2-2V5a2 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 2v1.5",
key: "6hud8k"
}
],
[
"path",
{
d: "M13.9 17.45c-1.2-1.2-1.14-2.8-.2-3.73a2.43 2.43 0 0 1 3.44 0l.36.34.34-.34a2.43 2.43 0 0 1 3.45-.01c.95.95 1 2.53-.2 3.74L17.5 21Z",
key: "wpff58"
}
]
];
var FolderHeart = createLucideIcon("folder-heart", __iconNode663);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-input.js
var __iconNode664 = [
[
"path",
{
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",
key: "fm4g5t"
}
],
["path", { d: "M2 13h10", key: "pgb2dq" }],
["path", { d: "m9 16 3-3-3-3", key: "6m91ic" }]
];
var FolderInput = createLucideIcon("folder-input", __iconNode664);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-kanban.js
var __iconNode665 = [
[
"path",
{
d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",
key: "1fr9dc"
}
],
["path", { d: "M8 10v4", key: "tgpxqk" }],
["path", { d: "M12 10v2", key: "hh53o1" }],
["path", { d: "M16 10v6", key: "1d6xys" }]
];
var FolderKanban = createLucideIcon("folder-kanban", __iconNode665);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-key.js
var __iconNode666 = [
["circle", { cx: "16", cy: "20", r: "2", key: "1vifvg" }],
[
"path",
{
d: "M10 20H4a2 2 0 0 1-2-2V5a2 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 2v2",
key: "3hgo9p"
}
],
["path", { d: "m22 14-4.5 4.5", key: "1ef6z8" }],
["path", { d: "m21 15 1 1", key: "1ejcpy" }]
];
var FolderKey = createLucideIcon("folder-key", __iconNode666);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-minus.js
var __iconNode667 = [
["path", { d: "M9 13h6", key: "1uhe8q" }],
[
"path",
{
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",
key: "1kt360"
}
]
];
var FolderMinus = createLucideIcon("folder-minus", __iconNode667);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-lock.js
var __iconNode668 = [
["rect", { width: "8", height: "5", x: "14", y: "17", rx: "1", key: "19aais" }],
[
"path",
{
d: "M10 20H4a2 2 0 0 1-2-2V5a2 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 2v2.5",
key: "1w6v7t"
}
],
["path", { d: "M20 17v-2a2 2 0 1 0-4 0v2", key: "pwaxnr" }]
];
var FolderLock = createLucideIcon("folder-lock", __iconNode668);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open-dot.js
var __iconNode669 = [
[
"path",
{
d: "m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2",
key: "1nmvlm"
}
],
["circle", { cx: "14", cy: "15", r: "1", key: "1gm4qj" }]
];
var FolderOpenDot = createLucideIcon("folder-open-dot", __iconNode669);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open.js
var __iconNode670 = [
[
"path",
{
d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",
key: "usdka0"
}
]
];
var FolderOpen = createLucideIcon("folder-open", __iconNode670);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-output.js
var __iconNode671 = [
[
"path",
{
d: "M2 7.5V5a2 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-1.5",
key: "1yk7aj"
}
],
["path", { d: "M2 13h10", key: "pgb2dq" }],
["path", { d: "m5 10-3 3 3 3", key: "1r8ie0" }]
];
var FolderOutput = createLucideIcon("folder-output", __iconNode671);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-pen.js
var __iconNode672 = [
[
"path",
{
d: "M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5",
key: "a8xqs0"
}
],
[
"path",
{
d: "M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "1saktj"
}
]
];
var FolderPen = createLucideIcon("folder-pen", __iconNode672);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-plus.js
var __iconNode673 = [
["path", { d: "M12 10v6", key: "1bos4e" }],
["path", { d: "M9 13h6", key: "1uhe8q" }],
[
"path",
{
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",
key: "1kt360"
}
]
];
var FolderPlus = createLucideIcon("folder-plus", __iconNode673);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-root.js
var __iconNode674 = [
[
"path",
{
d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",
key: "1fr9dc"
}
],
["circle", { cx: "12", cy: "13", r: "2", key: "1c1ljs" }],
["path", { d: "M12 15v5", key: "11xva1" }]
];
var FolderRoot = createLucideIcon("folder-root", __iconNode674);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search-2.js
var __iconNode675 = [
["circle", { cx: "11.5", cy: "12.5", r: "2.5", key: "1ea5ju" }],
[
"path",
{
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",
key: "1kt360"
}
],
["path", { d: "M13.3 14.3 15 16", key: "1y4v1n" }]
];
var FolderSearch2 = createLucideIcon("folder-search-2", __iconNode675);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search.js
var __iconNode676 = [
[
"path",
{
d: "M10.7 20H4a2 2 0 0 1-2-2V5a2 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 2v4.1",
key: "1bw5m7"
}
],
["path", { d: "m21 21-1.9-1.9", key: "1g2n9r" }],
["circle", { cx: "17", cy: "17", r: "3", key: "18b49y" }]
];
var FolderSearch = createLucideIcon("folder-search", __iconNode676);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-symlink.js
var __iconNode677 = [
[
"path",
{
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-3a2 2 0 0 1 2-2h7",
key: "x1c07l"
}
],
["path", { d: "m8 16 3-3-3-3", key: "rlqrt1" }]
];
var FolderSymlink = createLucideIcon("folder-symlink", __iconNode677);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-sync.js
var __iconNode678 = [
[
"path",
{
d: "M9 20H4a2 2 0 0 1-2-2V5a2 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 2v.5",
key: "1dkoa9"
}
],
["path", { d: "M12 10v4h4", key: "1czhmt" }],
["path", { d: "m12 14 1.535-1.605a5 5 0 0 1 8 1.5", key: "lvuxfi" }],
["path", { d: "M22 22v-4h-4", key: "1ewp4q" }],
["path", { d: "m22 18-1.535 1.605a5 5 0 0 1-8-1.5", key: "14ync0" }]
];
var FolderSync = createLucideIcon("folder-sync", __iconNode678);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-tree.js
var __iconNode679 = [
[
"path",
{
d: "M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",
key: "hod4my"
}
],
[
"path",
{
d: "M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",
key: "w4yl2u"
}
],
["path", { d: "M3 5a2 2 0 0 0 2 2h3", key: "f2jnh7" }],
["path", { d: "M3 3v13a2 2 0 0 0 2 2h3", key: "k8epm1" }]
];
var FolderTree = createLucideIcon("folder-tree", __iconNode679);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-up.js
var __iconNode680 = [
[
"path",
{
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",
key: "1kt360"
}
],
["path", { d: "M12 10v6", key: "1bos4e" }],
["path", { d: "m9 13 3-3 3 3", key: "1pxg3c" }]
];
var FolderUp = createLucideIcon("folder-up", __iconNode680);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-x.js
var __iconNode681 = [
[
"path",
{
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",
key: "1kt360"
}
],
["path", { d: "m9.5 10.5 5 5", key: "ra9qjz" }],
["path", { d: "m14.5 10.5-5 5", key: "l2rkpq" }]
];
var FolderX = createLucideIcon("folder-x", __iconNode681);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder.js
var __iconNode682 = [
[
"path",
{
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",
key: "1kt360"
}
]
];
var Folder = createLucideIcon("folder", __iconNode682);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folders.js
var __iconNode683 = [
[
"path",
{
d: "M20 17a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3.9a2 2 0 0 1-1.69-.9l-.81-1.2a2 2 0 0 0-1.67-.9H8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2Z",
key: "4u7rpt"
}
],
["path", { d: "M2 8v11a2 2 0 0 0 2 2h14", key: "1eicx1" }]
];
var Folders = createLucideIcon("folders", __iconNode683);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/footprints.js
var __iconNode684 = [
[
"path",
{
d: "M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z",
key: "1dudjm"
}
],
[
"path",
{
d: "M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z",
key: "l2t8xc"
}
],
["path", { d: "M16 17h4", key: "1dejxt" }],
["path", { d: "M4 13h4", key: "1bwh8b" }]
];
var Footprints = createLucideIcon("footprints", __iconNode684);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/forklift.js
var __iconNode685 = [
["path", { d: "M12 12H5a2 2 0 0 0-2 2v5", key: "7zsz91" }],
["circle", { cx: "13", cy: "19", r: "2", key: "wjnkru" }],
["circle", { cx: "5", cy: "19", r: "2", key: "v8kfzx" }],
["path", { d: "M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5", key: "13bk1p" }]
];
var Forklift = createLucideIcon("forklift", __iconNode685);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/forward.js
var __iconNode686 = [
["path", { d: "m15 17 5-5-5-5", key: "nf172w" }],
["path", { d: "M4 18v-2a4 4 0 0 1 4-4h12", key: "jmiej9" }]
];
var Forward = createLucideIcon("forward", __iconNode686);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/frame.js
var __iconNode687 = [
["line", { x1: "22", x2: "2", y1: "6", y2: "6", key: "15w7dq" }],
["line", { x1: "22", x2: "2", y1: "18", y2: "18", key: "1ip48p" }],
["line", { x1: "6", x2: "6", y1: "2", y2: "22", key: "a2lnyx" }],
["line", { x1: "18", x2: "18", y1: "2", y2: "22", key: "8vb6jd" }]
];
var Frame = createLucideIcon("frame", __iconNode687);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/framer.js
var __iconNode688 = [
["path", { d: "M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7", key: "1a2nng" }]
];
var Framer = createLucideIcon("framer", __iconNode688);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/frown.js
var __iconNode689 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M16 16s-1.5-2-4-2-4 2-4 2", key: "epbg0q" }],
["line", { x1: "9", x2: "9.01", y1: "9", y2: "9", key: "yxxnd0" }],
["line", { x1: "15", x2: "15.01", y1: "9", y2: "9", key: "1p4y9e" }]
];
var Frown = createLucideIcon("frown", __iconNode689);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fuel.js
var __iconNode690 = [
["line", { x1: "3", x2: "15", y1: "22", y2: "22", key: "xegly4" }],
["line", { x1: "4", x2: "14", y1: "9", y2: "9", key: "xcnuvu" }],
["path", { d: "M14 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v18", key: "16j0yd" }],
[
"path",
{
d: "M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 2 2a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L18 5",
key: "7cu91f"
}
]
];
var Fuel = createLucideIcon("fuel", __iconNode690);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/fullscreen.js
var __iconNode691 = [
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }],
["rect", { width: "10", height: "8", x: "7", y: "8", rx: "1", key: "vys8me" }]
];
var Fullscreen = createLucideIcon("fullscreen", __iconNode691);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/funnel-plus.js
var __iconNode692 = [
[
"path",
{
d: "M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348",
key: "8mvsmf"
}
],
["path", { d: "M16 6h6", key: "1dogtp" }],
["path", { d: "M19 3v6", key: "1ytpjt" }]
];
var FunnelPlus = createLucideIcon("funnel-plus", __iconNode692);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/funnel-x.js
var __iconNode693 = [
[
"path",
{
d: "M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473",
key: "ol2ft2"
}
],
["path", { d: "m16.5 3.5 5 5", key: "15e6fa" }],
["path", { d: "m21.5 3.5-5 5", key: "m0lwru" }]
];
var FunnelX = createLucideIcon("funnel-x", __iconNode693);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/funnel.js
var __iconNode694 = [
[
"path",
{
d: "M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",
key: "sc7q7i"
}
]
];
var Funnel = createLucideIcon("funnel", __iconNode694);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gallery-horizontal-end.js
var __iconNode695 = [
["path", { d: "M2 7v10", key: "a2pl2d" }],
["path", { d: "M6 5v14", key: "1kq3d7" }],
["rect", { width: "12", height: "18", x: "10", y: "3", rx: "2", key: "13i7bc" }]
];
var GalleryHorizontalEnd = createLucideIcon("gallery-horizontal-end", __iconNode695);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gallery-horizontal.js
var __iconNode696 = [
["path", { d: "M2 3v18", key: "pzttux" }],
["rect", { width: "12", height: "18", x: "6", y: "3", rx: "2", key: "btr8bg" }],
["path", { d: "M22 3v18", key: "6jf3v" }]
];
var GalleryHorizontal = createLucideIcon("gallery-horizontal", __iconNode696);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gallery-thumbnails.js
var __iconNode697 = [
["rect", { width: "18", height: "14", x: "3", y: "3", rx: "2", key: "74y24f" }],
["path", { d: "M4 21h1", key: "16zlid" }],
["path", { d: "M9 21h1", key: "15o7lz" }],
["path", { d: "M14 21h1", key: "v9vybs" }],
["path", { d: "M19 21h1", key: "edywat" }]
];
var GalleryThumbnails = createLucideIcon("gallery-thumbnails", __iconNode697);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gallery-vertical-end.js
var __iconNode698 = [
["path", { d: "M7 2h10", key: "nczekb" }],
["path", { d: "M5 6h14", key: "u2x4p" }],
["rect", { width: "18", height: "12", x: "3", y: "10", rx: "2", key: "l0tzu3" }]
];
var GalleryVerticalEnd = createLucideIcon("gallery-vertical-end", __iconNode698);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gallery-vertical.js
var __iconNode699 = [
["path", { d: "M3 2h18", key: "15qxfx" }],
["rect", { width: "18", height: "12", x: "3", y: "6", rx: "2", key: "1439r6" }],
["path", { d: "M3 22h18", key: "8prr45" }]
];
var GalleryVertical = createLucideIcon("gallery-vertical", __iconNode699);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gamepad-2.js
var __iconNode700 = [
["line", { x1: "6", x2: "10", y1: "11", y2: "11", key: "1gktln" }],
["line", { x1: "8", x2: "8", y1: "9", y2: "13", key: "qnk9ow" }],
["line", { x1: "15", x2: "15.01", y1: "12", y2: "12", key: "krot7o" }],
["line", { x1: "18", x2: "18.01", y1: "10", y2: "10", key: "1lcuu1" }],
[
"path",
{
d: "M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z",
key: "mfqc10"
}
]
];
var Gamepad2 = createLucideIcon("gamepad-2", __iconNode700);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gamepad.js
var __iconNode701 = [
["line", { x1: "6", x2: "10", y1: "12", y2: "12", key: "161bw2" }],
["line", { x1: "8", x2: "8", y1: "10", y2: "14", key: "1i6ji0" }],
["line", { x1: "15", x2: "15.01", y1: "13", y2: "13", key: "dqpgro" }],
["line", { x1: "18", x2: "18.01", y1: "11", y2: "11", key: "meh2c" }],
["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2", key: "9lu3g6" }]
];
var Gamepad = createLucideIcon("gamepad", __iconNode701);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gauge.js
var __iconNode702 = [
["path", { d: "m12 14 4-4", key: "9kzdfg" }],
["path", { d: "M3.34 19a10 10 0 1 1 17.32 0", key: "19p75a" }]
];
var Gauge = createLucideIcon("gauge", __iconNode702);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gavel.js
var __iconNode703 = [
["path", { d: "m14.5 12.5-8 8a2.119 2.119 0 1 1-3-3l8-8", key: "15492f" }],
["path", { d: "m16 16 6-6", key: "vzrcl6" }],
["path", { d: "m8 8 6-6", key: "18bi4p" }],
["path", { d: "m9 7 8 8", key: "5jnvq1" }],
["path", { d: "m21 11-8-8", key: "z4y7zo" }]
];
var Gavel = createLucideIcon("gavel", __iconNode703);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gem.js
var __iconNode704 = [
["path", { d: "M6 3h12l4 6-10 13L2 9Z", key: "1pcd5k" }],
["path", { d: "M11 3 8 9l4 13 4-13-3-6", key: "1fcu3u" }],
["path", { d: "M2 9h20", key: "16fsjt" }]
];
var Gem = createLucideIcon("gem", __iconNode704);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/georgian-lari.js
var __iconNode705 = [
["path", { d: "M11.5 21a7.5 7.5 0 1 1 7.35-9", key: "1gyj8k" }],
["path", { d: "M13 12V3", key: "18om2a" }],
["path", { d: "M4 21h16", key: "1h09gz" }],
["path", { d: "M9 12V3", key: "geutu0" }]
];
var GeorgianLari = createLucideIcon("georgian-lari", __iconNode705);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ghost.js
var __iconNode706 = [
["path", { d: "M9 10h.01", key: "qbtxuw" }],
["path", { d: "M15 10h.01", key: "1qmjsl" }],
[
"path",
{
d: "M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z",
key: "uwwb07"
}
]
];
var Ghost = createLucideIcon("ghost", __iconNode706);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gift.js
var __iconNode707 = [
["rect", { x: "3", y: "8", width: "18", height: "4", rx: "1", key: "bkv52" }],
["path", { d: "M12 8v13", key: "1c76mn" }],
["path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7", key: "6wjy6b" }],
[
"path",
{
d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5",
key: "1ihvrl"
}
]
];
var Gift = createLucideIcon("gift", __iconNode707);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-branch-plus.js
var __iconNode708 = [
["path", { d: "M6 3v12", key: "qpgusn" }],
["path", { d: "M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z", key: "1d02ji" }],
["path", { d: "M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z", key: "chk6ph" }],
["path", { d: "M15 6a9 9 0 0 0-9 9", key: "or332x" }],
["path", { d: "M18 15v6", key: "9wciyi" }],
["path", { d: "M21 18h-6", key: "139f0c" }]
];
var GitBranchPlus = createLucideIcon("git-branch-plus", __iconNode708);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-branch.js
var __iconNode709 = [
["line", { x1: "6", x2: "6", y1: "3", y2: "15", key: "17qcm7" }],
["circle", { cx: "18", cy: "6", r: "3", key: "1h7g24" }],
["circle", { cx: "6", cy: "18", r: "3", key: "fqmcym" }],
["path", { d: "M18 9a9 9 0 0 1-9 9", key: "n2h4wq" }]
];
var GitBranch = createLucideIcon("git-branch", __iconNode709);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-commit-horizontal.js
var __iconNode710 = [
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }],
["line", { x1: "3", x2: "9", y1: "12", y2: "12", key: "1dyftd" }],
["line", { x1: "15", x2: "21", y1: "12", y2: "12", key: "oup4p8" }]
];
var GitCommitHorizontal = createLucideIcon("git-commit-horizontal", __iconNode710);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-commit-vertical.js
var __iconNode711 = [
["path", { d: "M12 3v6", key: "1holv5" }],
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }],
["path", { d: "M12 15v6", key: "a9ows0" }]
];
var GitCommitVertical = createLucideIcon("git-commit-vertical", __iconNode711);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-compare-arrows.js
var __iconNode712 = [
["circle", { cx: "5", cy: "6", r: "3", key: "1qnov2" }],
["path", { d: "M12 6h5a2 2 0 0 1 2 2v7", key: "1yj91y" }],
["path", { d: "m15 9-3-3 3-3", key: "1lwv8l" }],
["circle", { cx: "19", cy: "18", r: "3", key: "1qljk2" }],
["path", { d: "M12 18H7a2 2 0 0 1-2-2V9", key: "16sdep" }],
["path", { d: "m9 15 3 3-3 3", key: "1m3kbl" }]
];
var GitCompareArrows = createLucideIcon("git-compare-arrows", __iconNode712);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-fork.js
var __iconNode713 = [
["circle", { cx: "12", cy: "18", r: "3", key: "1mpf1b" }],
["circle", { cx: "6", cy: "6", r: "3", key: "1lh9wr" }],
["circle", { cx: "18", cy: "6", r: "3", key: "1h7g24" }],
["path", { d: "M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9", key: "1uq4wg" }],
["path", { d: "M12 12v3", key: "158kv8" }]
];
var GitFork = createLucideIcon("git-fork", __iconNode713);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-compare.js
var __iconNode714 = [
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }],
["circle", { cx: "6", cy: "6", r: "3", key: "1lh9wr" }],
["path", { d: "M13 6h3a2 2 0 0 1 2 2v7", key: "1yeb86" }],
["path", { d: "M11 18H8a2 2 0 0 1-2-2V9", key: "19pyzm" }]
];
var GitCompare = createLucideIcon("git-compare", __iconNode714);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-graph.js
var __iconNode715 = [
["circle", { cx: "5", cy: "6", r: "3", key: "1qnov2" }],
["path", { d: "M5 9v6", key: "158jrl" }],
["circle", { cx: "5", cy: "18", r: "3", key: "104gr9" }],
["path", { d: "M12 3v18", key: "108xh3" }],
["circle", { cx: "19", cy: "6", r: "3", key: "108a5v" }],
["path", { d: "M16 15.7A9 9 0 0 0 19 9", key: "1e3vqb" }]
];
var GitGraph = createLucideIcon("git-graph", __iconNode715);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-merge.js
var __iconNode716 = [
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }],
["circle", { cx: "6", cy: "6", r: "3", key: "1lh9wr" }],
["path", { d: "M6 21V9a9 9 0 0 0 9 9", key: "7kw0sc" }]
];
var GitMerge = createLucideIcon("git-merge", __iconNode716);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-pull-request-arrow.js
var __iconNode717 = [
["circle", { cx: "5", cy: "6", r: "3", key: "1qnov2" }],
["path", { d: "M5 9v12", key: "ih889a" }],
["circle", { cx: "19", cy: "18", r: "3", key: "1qljk2" }],
["path", { d: "m15 9-3-3 3-3", key: "1lwv8l" }],
["path", { d: "M12 6h5a2 2 0 0 1 2 2v7", key: "1yj91y" }]
];
var GitPullRequestArrow = createLucideIcon("git-pull-request-arrow", __iconNode717);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-pull-request-closed.js
var __iconNode718 = [
["circle", { cx: "6", cy: "6", r: "3", key: "1lh9wr" }],
["path", { d: "M6 9v12", key: "1sc30k" }],
["path", { d: "m21 3-6 6", key: "16nqsk" }],
["path", { d: "m21 9-6-6", key: "9j17rh" }],
["path", { d: "M18 11.5V15", key: "65xf6f" }],
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }]
];
var GitPullRequestClosed = createLucideIcon("git-pull-request-closed", __iconNode718);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-pull-request-create-arrow.js
var __iconNode719 = [
["circle", { cx: "5", cy: "6", r: "3", key: "1qnov2" }],
["path", { d: "M5 9v12", key: "ih889a" }],
["path", { d: "m15 9-3-3 3-3", key: "1lwv8l" }],
["path", { d: "M12 6h5a2 2 0 0 1 2 2v3", key: "1rbwk6" }],
["path", { d: "M19 15v6", key: "10aioa" }],
["path", { d: "M22 18h-6", key: "1d5gi5" }]
];
var GitPullRequestCreateArrow = createLucideIcon("git-pull-request-create-arrow", __iconNode719);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-pull-request-create.js
var __iconNode720 = [
["circle", { cx: "6", cy: "6", r: "3", key: "1lh9wr" }],
["path", { d: "M6 9v12", key: "1sc30k" }],
["path", { d: "M13 6h3a2 2 0 0 1 2 2v3", key: "1jb6z3" }],
["path", { d: "M18 15v6", key: "9wciyi" }],
["path", { d: "M21 18h-6", key: "139f0c" }]
];
var GitPullRequestCreate = createLucideIcon("git-pull-request-create", __iconNode720);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-pull-request-draft.js
var __iconNode721 = [
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }],
["circle", { cx: "6", cy: "6", r: "3", key: "1lh9wr" }],
["path", { d: "M18 6V5", key: "1oao2s" }],
["path", { d: "M18 11v-1", key: "11c8tz" }],
["line", { x1: "6", x2: "6", y1: "9", y2: "21", key: "rroup" }]
];
var GitPullRequestDraft = createLucideIcon("git-pull-request-draft", __iconNode721);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-pull-request.js
var __iconNode722 = [
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }],
["circle", { cx: "6", cy: "6", r: "3", key: "1lh9wr" }],
["path", { d: "M13 6h3a2 2 0 0 1 2 2v7", key: "1yeb86" }],
["line", { x1: "6", x2: "6", y1: "9", y2: "21", key: "rroup" }]
];
var GitPullRequest = createLucideIcon("git-pull-request", __iconNode722);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/github.js
var __iconNode723 = [
[
"path",
{
d: "M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4",
key: "tonef"
}
],
["path", { d: "M9 18c-4.51 2-5-2-7-2", key: "9comsn" }]
];
var Github = createLucideIcon("github", __iconNode723);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gitlab.js
var __iconNode724 = [
[
"path",
{
d: "m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z",
key: "148pdi"
}
]
];
var Gitlab = createLucideIcon("gitlab", __iconNode724);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/glass-water.js
var __iconNode725 = [
[
"path",
{
d: "M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z",
key: "p55z4y"
}
],
["path", { d: "M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0", key: "mjntcy" }]
];
var GlassWater = createLucideIcon("glass-water", __iconNode725);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/glasses.js
var __iconNode726 = [
["circle", { cx: "6", cy: "15", r: "4", key: "vux9w4" }],
["circle", { cx: "18", cy: "15", r: "4", key: "18o8ve" }],
["path", { d: "M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2", key: "1ag4bs" }],
["path", { d: "M2.5 13 5 7c.7-1.3 1.4-2 3-2", key: "1hm1gs" }],
["path", { d: "M21.5 13 19 7c-.7-1.3-1.5-2-3-2", key: "1r31ai" }]
];
var Glasses = createLucideIcon("glasses", __iconNode726);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe-lock.js
var __iconNode727 = [
[
"path",
{
d: "M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13",
key: "qkt0x6"
}
],
["path", { d: "M2 12h8.5", key: "ovaggd" }],
["path", { d: "M20 6V4a2 2 0 1 0-4 0v2", key: "1of5e8" }],
["rect", { width: "8", height: "5", x: "14", y: "6", rx: "1", key: "1fmf51" }]
];
var GlobeLock = createLucideIcon("globe-lock", __iconNode727);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe.js
var __iconNode728 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20", key: "13o1zl" }],
["path", { d: "M2 12h20", key: "9i4pu4" }]
];
var Globe = createLucideIcon("globe", __iconNode728);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/goal.js
var __iconNode729 = [
["path", { d: "M12 13V2l8 4-8 4", key: "5wlwwj" }],
["path", { d: "M20.561 10.222a9 9 0 1 1-12.55-5.29", key: "1c0wjv" }],
["path", { d: "M8.002 9.997a5 5 0 1 0 8.9 2.02", key: "gb1g7m" }]
];
var Goal = createLucideIcon("goal", __iconNode729);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/gpu.js
var __iconNode730 = [
["path", { d: "M2 21V3", key: "1bzk4w" }],
["path", { d: "M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26", key: "1d64pi" }],
["path", { d: "M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3", key: "5hbqbf" }],
["circle", { cx: "16", cy: "11", r: "2", key: "qt15rb" }],
["circle", { cx: "8", cy: "11", r: "2", key: "ssideg" }]
];
var Gpu = createLucideIcon("gpu", __iconNode730);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grab.js
var __iconNode731 = [
["path", { d: "M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4", key: "edstyy" }],
["path", { d: "M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2", key: "19wdwo" }],
["path", { d: "M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5", key: "1lugqo" }],
["path", { d: "M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2", key: "1hbeus" }],
[
"path",
{ d: "M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0", key: "1etffm" }
]
];
var Grab = createLucideIcon("grab", __iconNode731);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/graduation-cap.js
var __iconNode732 = [
[
"path",
{
d: "M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z",
key: "j76jl0"
}
],
["path", { d: "M22 10v6", key: "1lu8f3" }],
["path", { d: "M6 12.5V16a6 3 0 0 0 12 0v-3.5", key: "1r8lef" }]
];
var GraduationCap = createLucideIcon("graduation-cap", __iconNode732);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grape.js
var __iconNode733 = [
["path", { d: "M22 5V2l-5.89 5.89", key: "1eenpo" }],
["circle", { cx: "16.6", cy: "15.89", r: "3", key: "xjtalx" }],
["circle", { cx: "8.11", cy: "7.4", r: "3", key: "u2fv6i" }],
["circle", { cx: "12.35", cy: "11.65", r: "3", key: "i6i8g7" }],
["circle", { cx: "13.91", cy: "5.85", r: "3", key: "6ye0dv" }],
["circle", { cx: "18.15", cy: "10.09", r: "3", key: "snx9no" }],
["circle", { cx: "6.56", cy: "13.2", r: "3", key: "17x4xg" }],
["circle", { cx: "10.8", cy: "17.44", r: "3", key: "1hogw9" }],
["circle", { cx: "5", cy: "19", r: "3", key: "1sn6vo" }]
];
var Grape = createLucideIcon("grape", __iconNode733);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grid-2x2-check.js
var __iconNode734 = [
[
"path",
{
d: "M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",
key: "11za1p"
}
],
["path", { d: "m16 19 2 2 4-4", key: "1b14m6" }]
];
var Grid2x2Check = createLucideIcon("grid-2x2-check", __iconNode734);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grid-2x2-plus.js
var __iconNode735 = [
[
"path",
{
d: "M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",
key: "11za1p"
}
],
["path", { d: "M16 19h6", key: "xwg31i" }],
["path", { d: "M19 22v-6", key: "qhmiwi" }]
];
var Grid2x2Plus = createLucideIcon("grid-2x2-plus", __iconNode735);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grid-2x2-x.js
var __iconNode736 = [
[
"path",
{
d: "M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",
key: "11za1p"
}
],
["path", { d: "m16 16 5 5", key: "8tpb07" }],
["path", { d: "m16 21 5-5", key: "193jll" }]
];
var Grid2x2X = createLucideIcon("grid-2x2-x", __iconNode736);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grid-2x2.js
var __iconNode737 = [
["path", { d: "M12 3v18", key: "108xh3" }],
["path", { d: "M3 12h18", key: "1i2n21" }],
["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", key: "h1oib" }]
];
var Grid2x2 = createLucideIcon("grid-2x2", __iconNode737);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grid-3x2.js
var __iconNode738 = [
["path", { d: "M15 3v18", key: "14nvp0" }],
["path", { d: "M3 12h18", key: "1i2n21" }],
["path", { d: "M9 3v18", key: "fh3hqa" }],
["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", key: "h1oib" }]
];
var Grid3x2 = createLucideIcon("grid-3x2", __iconNode738);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grid-3x3.js
var __iconNode739 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 9h18", key: "1pudct" }],
["path", { d: "M3 15h18", key: "5xshup" }],
["path", { d: "M9 3v18", key: "fh3hqa" }],
["path", { d: "M15 3v18", key: "14nvp0" }]
];
var Grid3x3 = createLucideIcon("grid-3x3", __iconNode739);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grip-horizontal.js
var __iconNode740 = [
["circle", { cx: "12", cy: "9", r: "1", key: "124mty" }],
["circle", { cx: "19", cy: "9", r: "1", key: "1ruzo2" }],
["circle", { cx: "5", cy: "9", r: "1", key: "1a8b28" }],
["circle", { cx: "12", cy: "15", r: "1", key: "1e56xg" }],
["circle", { cx: "19", cy: "15", r: "1", key: "1a92ep" }],
["circle", { cx: "5", cy: "15", r: "1", key: "5r1jwy" }]
];
var GripHorizontal = createLucideIcon("grip-horizontal", __iconNode740);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grip-vertical.js
var __iconNode741 = [
["circle", { cx: "9", cy: "12", r: "1", key: "1vctgf" }],
["circle", { cx: "9", cy: "5", r: "1", key: "hp0tcf" }],
["circle", { cx: "9", cy: "19", r: "1", key: "fkjjf6" }],
["circle", { cx: "15", cy: "12", r: "1", key: "1tmaij" }],
["circle", { cx: "15", cy: "5", r: "1", key: "19l28e" }],
["circle", { cx: "15", cy: "19", r: "1", key: "f4zoj3" }]
];
var GripVertical = createLucideIcon("grip-vertical", __iconNode741);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/grip.js
var __iconNode742 = [
["circle", { cx: "12", cy: "5", r: "1", key: "gxeob9" }],
["circle", { cx: "19", cy: "5", r: "1", key: "w8mnmm" }],
["circle", { cx: "5", cy: "5", r: "1", key: "lttvr7" }],
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
["circle", { cx: "19", cy: "12", r: "1", key: "1wjl8i" }],
["circle", { cx: "5", cy: "12", r: "1", key: "1pcz8c" }],
["circle", { cx: "12", cy: "19", r: "1", key: "lyex9k" }],
["circle", { cx: "19", cy: "19", r: "1", key: "shf9b7" }],
["circle", { cx: "5", cy: "19", r: "1", key: "bfqh0e" }]
];
var Grip = createLucideIcon("grip", __iconNode742);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/guitar.js
var __iconNode743 = [
["path", { d: "m11.9 12.1 4.514-4.514", key: "109xqo" }],
[
"path",
{
d: "M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z",
key: "txyc8t"
}
],
["path", { d: "m6 16 2 2", key: "16qmzd" }],
[
"path",
{
d: "M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z",
key: "1de1vg"
}
]
];
var Guitar = createLucideIcon("guitar", __iconNode743);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/group.js
var __iconNode744 = [
["path", { d: "M3 7V5c0-1.1.9-2 2-2h2", key: "adw53z" }],
["path", { d: "M17 3h2c1.1 0 2 .9 2 2v2", key: "an4l38" }],
["path", { d: "M21 17v2c0 1.1-.9 2-2 2h-2", key: "144t0e" }],
["path", { d: "M7 21H5c-1.1 0-2-.9-2-2v-2", key: "rtnfgi" }],
["rect", { width: "7", height: "5", x: "7", y: "7", rx: "1", key: "1eyiv7" }],
["rect", { width: "7", height: "5", x: "10", y: "12", rx: "1", key: "1qlmkx" }]
];
var Group2 = createLucideIcon("group", __iconNode744);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ham.js
var __iconNode745 = [
["path", { d: "M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856", key: "1k1t7q" }],
[
"path",
{
d: "M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288",
key: "153t1g"
}
],
[
"path",
{
d: "M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025",
key: "gzrt0n"
}
],
["path", { d: "m8.5 16.5-1-1", key: "otr954" }]
];
var Ham = createLucideIcon("ham", __iconNode745);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hamburger.js
var __iconNode746 = [
["path", { d: "M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25", key: "5dloqd" }],
["path", { d: "M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2", key: "1vl3my" }],
[
"path",
{
d: "M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0",
key: "1us75o"
}
],
["path", { d: "m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2", key: "qqzweh" }]
];
var Hamburger = createLucideIcon("hamburger", __iconNode746);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hammer.js
var __iconNode747 = [
["path", { d: "m15 12-8.373 8.373a1 1 0 1 1-3-3L12 9", key: "eefl8a" }],
["path", { d: "m18 15 4-4", key: "16gjal" }],
[
"path",
{
d: "m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172V7l-2.26-2.26a6 6 0 0 0-4.202-1.756L9 2.96l.92.82A6.18 6.18 0 0 1 12 8.4V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5",
key: "b7pghm"
}
]
];
var Hammer = createLucideIcon("hammer", __iconNode747);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hand-coins.js
var __iconNode748 = [
["path", { d: "M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17", key: "geh8rc" }],
[
"path",
{
d: "m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",
key: "1fto5m"
}
],
["path", { d: "m2 16 6 6", key: "1pfhp9" }],
["circle", { cx: "16", cy: "9", r: "2.9", key: "1n0dlu" }],
["circle", { cx: "6", cy: "5", r: "3", key: "151irh" }]
];
var HandCoins = createLucideIcon("hand-coins", __iconNode748);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hand-heart.js
var __iconNode749 = [
["path", { d: "M11 14h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16", key: "1ifwr1" }],
[
"path",
{
d: "m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",
key: "17abbs"
}
],
["path", { d: "m2 15 6 6", key: "10dquu" }],
[
"path",
{
d: "M19.5 8.5c.7-.7 1.5-1.6 1.5-2.7A2.73 2.73 0 0 0 16 4a2.78 2.78 0 0 0-5 1.8c0 1.2.8 2 1.5 2.8L16 12Z",
key: "1h3036"
}
]
];
var HandHeart = createLucideIcon("hand-heart", __iconNode749);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hand-helping.js
var __iconNode750 = [
["path", { d: "M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14", key: "1j4xps" }],
[
"path",
{
d: "m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",
key: "uospg8"
}
],
["path", { d: "m2 13 6 6", key: "16e5sb" }]
];
var HandHelping = createLucideIcon("hand-helping", __iconNode750);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hand-metal.js
var __iconNode751 = [
["path", { d: "M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4", key: "wc6myp" }],
["path", { d: "M14 11V9a2 2 0 1 0-4 0v2", key: "94qvcw" }],
["path", { d: "M10 10.5V5a2 2 0 1 0-4 0v9", key: "m1ah89" }],
[
"path",
{
d: "m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5",
key: "t1skq1"
}
]
];
var HandMetal = createLucideIcon("hand-metal", __iconNode751);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hand-platter.js
var __iconNode752 = [
["path", { d: "M12 3V2", key: "ar7q03" }],
[
"path",
{
d: "m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5",
key: "n2g93r"
}
],
["path", { d: "M2 14h12a2 2 0 0 1 0 4h-2", key: "1o2jem" }],
["path", { d: "M4 10h16", key: "img6z1" }],
["path", { d: "M5 10a7 7 0 0 1 14 0", key: "1ega1o" }],
["path", { d: "M5 14v6a1 1 0 0 1-1 1H2", key: "1hescx" }]
];
var HandPlatter = createLucideIcon("hand-platter", __iconNode752);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hand.js
var __iconNode753 = [
["path", { d: "M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2", key: "1fvzgz" }],
["path", { d: "M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2", key: "1kc0my" }],
["path", { d: "M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8", key: "10h0bg" }],
[
"path",
{
d: "M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",
key: "1s1gnw"
}
]
];
var Hand = createLucideIcon("hand", __iconNode753);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/handshake.js
var __iconNode754 = [
["path", { d: "m11 17 2 2a1 1 0 1 0 3-3", key: "efffak" }],
[
"path",
{
d: "m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4",
key: "9pr0kb"
}
],
["path", { d: "m21 3 1 11h-2", key: "1tisrp" }],
["path", { d: "M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3", key: "1uvwmv" }],
["path", { d: "M3 4h8", key: "1ep09j" }]
];
var Handshake = createLucideIcon("handshake", __iconNode754);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hard-drive-download.js
var __iconNode755 = [
["path", { d: "M12 2v8", key: "1q4o3n" }],
["path", { d: "m16 6-4 4-4-4", key: "6wukr" }],
["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", key: "w68u3i" }],
["path", { d: "M6 18h.01", key: "uhywen" }],
["path", { d: "M10 18h.01", key: "h775k" }]
];
var HardDriveDownload = createLucideIcon("hard-drive-download", __iconNode755);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hard-drive-upload.js
var __iconNode756 = [
["path", { d: "m16 6-4-4-4 4", key: "13yo43" }],
["path", { d: "M12 2v8", key: "1q4o3n" }],
["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", key: "w68u3i" }],
["path", { d: "M6 18h.01", key: "uhywen" }],
["path", { d: "M10 18h.01", key: "h775k" }]
];
var HardDriveUpload = createLucideIcon("hard-drive-upload", __iconNode756);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hard-drive.js
var __iconNode757 = [
["line", { x1: "22", x2: "2", y1: "12", y2: "12", key: "1y58io" }],
[
"path",
{
d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",
key: "oot6mr"
}
],
["line", { x1: "6", x2: "6.01", y1: "16", y2: "16", key: "sgf278" }],
["line", { x1: "10", x2: "10.01", y1: "16", y2: "16", key: "1l4acy" }]
];
var HardDrive = createLucideIcon("hard-drive", __iconNode757);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hard-hat.js
var __iconNode758 = [
["path", { d: "M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5", key: "1p9q5i" }],
["path", { d: "M14 6a6 6 0 0 1 6 6v3", key: "1hnv84" }],
["path", { d: "M4 15v-3a6 6 0 0 1 6-6", key: "9ciidu" }],
["rect", { x: "2", y: "15", width: "20", height: "4", rx: "1", key: "g3x8cw" }]
];
var HardHat = createLucideIcon("hard-hat", __iconNode758);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hash.js
var __iconNode759 = [
["line", { x1: "4", x2: "20", y1: "9", y2: "9", key: "4lhtct" }],
["line", { x1: "4", x2: "20", y1: "15", y2: "15", key: "vyu0kd" }],
["line", { x1: "10", x2: "8", y1: "3", y2: "21", key: "1ggp8o" }],
["line", { x1: "16", x2: "14", y1: "3", y2: "21", key: "weycgp" }]
];
var Hash = createLucideIcon("hash", __iconNode759);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/haze.js
var __iconNode760 = [
["path", { d: "m5.2 6.2 1.4 1.4", key: "17imol" }],
["path", { d: "M2 13h2", key: "13gyu8" }],
["path", { d: "M20 13h2", key: "16rner" }],
["path", { d: "m17.4 7.6 1.4-1.4", key: "t4xlah" }],
["path", { d: "M22 17H2", key: "1gtaj3" }],
["path", { d: "M22 21H2", key: "1gy6en" }],
["path", { d: "M16 13a4 4 0 0 0-8 0", key: "1dyczq" }],
["path", { d: "M12 5V2.5", key: "1vytko" }]
];
var Haze = createLucideIcon("haze", __iconNode760);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hdmi-port.js
var __iconNode761 = [
[
"path",
{
d: "M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z",
key: "2128wb"
}
],
["path", { d: "M7.5 12h9", key: "1t0ckc" }]
];
var HdmiPort = createLucideIcon("hdmi-port", __iconNode761);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heading-1.js
var __iconNode762 = [
["path", { d: "M4 12h8", key: "17cfdx" }],
["path", { d: "M4 18V6", key: "1rz3zl" }],
["path", { d: "M12 18V6", key: "zqpxq5" }],
["path", { d: "m17 12 3-2v8", key: "1hhhft" }]
];
var Heading1 = createLucideIcon("heading-1", __iconNode762);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heading-2.js
var __iconNode763 = [
["path", { d: "M4 12h8", key: "17cfdx" }],
["path", { d: "M4 18V6", key: "1rz3zl" }],
["path", { d: "M12 18V6", key: "zqpxq5" }],
["path", { d: "M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1", key: "9jr5yi" }]
];
var Heading2 = createLucideIcon("heading-2", __iconNode763);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heading-3.js
var __iconNode764 = [
["path", { d: "M4 12h8", key: "17cfdx" }],
["path", { d: "M4 18V6", key: "1rz3zl" }],
["path", { d: "M12 18V6", key: "zqpxq5" }],
["path", { d: "M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2", key: "68ncm8" }],
["path", { d: "M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2", key: "1ejuhz" }]
];
var Heading3 = createLucideIcon("heading-3", __iconNode764);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heading-4.js
var __iconNode765 = [
["path", { d: "M12 18V6", key: "zqpxq5" }],
["path", { d: "M17 10v3a1 1 0 0 0 1 1h3", key: "tj5zdr" }],
["path", { d: "M21 10v8", key: "1kdml4" }],
["path", { d: "M4 12h8", key: "17cfdx" }],
["path", { d: "M4 18V6", key: "1rz3zl" }]
];
var Heading4 = createLucideIcon("heading-4", __iconNode765);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heading-5.js
var __iconNode766 = [
["path", { d: "M4 12h8", key: "17cfdx" }],
["path", { d: "M4 18V6", key: "1rz3zl" }],
["path", { d: "M12 18V6", key: "zqpxq5" }],
["path", { d: "M17 13v-3h4", key: "1nvgqp" }],
[
"path",
{ d: "M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17", key: "2nebdn" }
]
];
var Heading5 = createLucideIcon("heading-5", __iconNode766);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heading-6.js
var __iconNode767 = [
["path", { d: "M4 12h8", key: "17cfdx" }],
["path", { d: "M4 18V6", key: "1rz3zl" }],
["path", { d: "M12 18V6", key: "zqpxq5" }],
["circle", { cx: "19", cy: "16", r: "2", key: "15mx69" }],
["path", { d: "M20 10c-2 2-3 3.5-3 6", key: "f35dl0" }]
];
var Heading6 = createLucideIcon("heading-6", __iconNode767);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heading.js
var __iconNode768 = [
["path", { d: "M6 12h12", key: "8npq4p" }],
["path", { d: "M6 20V4", key: "1w1bmo" }],
["path", { d: "M18 20V4", key: "o2hl4u" }]
];
var Heading = createLucideIcon("heading", __iconNode768);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/headphone-off.js
var __iconNode769 = [
["path", { d: "M21 14h-1.343", key: "1jdnxi" }],
["path", { d: "M9.128 3.47A9 9 0 0 1 21 12v3.343", key: "6kipu2" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3", key: "9x50f4" }],
[
"path",
{
d: "M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364",
key: "1bkxnm"
}
]
];
var HeadphoneOff = createLucideIcon("headphone-off", __iconNode769);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/headphones.js
var __iconNode770 = [
[
"path",
{
d: "M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3",
key: "1xhozi"
}
]
];
var Headphones = createLucideIcon("headphones", __iconNode770);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/headset.js
var __iconNode771 = [
[
"path",
{
d: "M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z",
key: "12oyoe"
}
],
["path", { d: "M21 16v2a4 4 0 0 1-4 4h-5", key: "1x7m43" }]
];
var Headset = createLucideIcon("headset", __iconNode771);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heart-crack.js
var __iconNode772 = [
[
"path",
{
d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",
key: "c3ymky"
}
],
["path", { d: "m12 13-1-1 2-2-3-3 2-2", key: "xjdxli" }]
];
var HeartCrack = createLucideIcon("heart-crack", __iconNode772);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heart-handshake.js
var __iconNode773 = [
[
"path",
{
d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",
key: "c3ymky"
}
],
[
"path",
{
d: "M12 5 9.04 7.96a2.17 2.17 0 0 0 0 3.08c.82.82 2.13.85 3 .07l2.07-1.9a2.82 2.82 0 0 1 3.79 0l2.96 2.66",
key: "4oyue0"
}
],
["path", { d: "m18 15-2-2", key: "60u0ii" }],
["path", { d: "m15 18-2-2", key: "6p76be" }]
];
var HeartHandshake = createLucideIcon("heart-handshake", __iconNode773);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heart-off.js
var __iconNode774 = [
["line", { x1: "2", y1: "2", x2: "22", y2: "22", key: "1w4vcy" }],
[
"path",
{ d: "M16.5 16.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5a5.5 5.5 0 0 1 2.14-4.35", key: "3mpagl" }
],
[
"path",
{
d: "M8.76 3.1c1.15.22 2.13.78 3.24 1.9 1.5-1.5 2.74-2 4.5-2A5.5 5.5 0 0 1 22 8.5c0 2.12-1.3 3.78-2.67 5.17",
key: "1gh3v3"
}
]
];
var HeartOff = createLucideIcon("heart-off", __iconNode774);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heart-minus.js
var __iconNode775 = [
[
"path",
{
d: "M13.5 19.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5A5.5 5.5 0 0 1 7.5 3c1.76 0 3 .5 4.5 2 1.5-1.5 2.74-2 4.5-2a5.5 5.5 0 0 1 5.402 6.5",
key: "vd0vy5"
}
],
["path", { d: "M15 15h6", key: "1u4692" }]
];
var HeartMinus = createLucideIcon("heart-minus", __iconNode775);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heart-plus.js
var __iconNode776 = [
[
"path",
{
d: "M13.5 19.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5A5.5 5.5 0 0 1 7.5 3c1.76 0 3 .5 4.5 2 1.5-1.5 2.74-2 4.5-2a5.5 5.5 0 0 1 5.402 6.5",
key: "vd0vy5"
}
],
["path", { d: "M15 15h6", key: "1u4692" }],
["path", { d: "M18 12v6", key: "1houu1" }]
];
var HeartPlus = createLucideIcon("heart-plus", __iconNode776);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heart-pulse.js
var __iconNode777 = [
[
"path",
{
d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",
key: "c3ymky"
}
],
["path", { d: "M3.22 12H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27", key: "1uw2ng" }]
];
var HeartPulse = createLucideIcon("heart-pulse", __iconNode777);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heart.js
var __iconNode778 = [
[
"path",
{
d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",
key: "c3ymky"
}
]
];
var Heart = createLucideIcon("heart", __iconNode778);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/heater.js
var __iconNode779 = [
["path", { d: "M11 8c2-3-2-3 0-6", key: "1ldv5m" }],
["path", { d: "M15.5 8c2-3-2-3 0-6", key: "1otqoz" }],
["path", { d: "M6 10h.01", key: "1lbq93" }],
["path", { d: "M6 14h.01", key: "zudwn7" }],
["path", { d: "M10 16v-4", key: "1c25yv" }],
["path", { d: "M14 16v-4", key: "1dkbt8" }],
["path", { d: "M18 16v-4", key: "1yg9me" }],
[
"path",
{ d: "M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3", key: "1ubg90" }
],
["path", { d: "M5 20v2", key: "1abpe8" }],
["path", { d: "M19 20v2", key: "kqn6ft" }]
];
var Heater = createLucideIcon("heater", __iconNode779);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hexagon.js
var __iconNode780 = [
[
"path",
{
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",
key: "yt0hxn"
}
]
];
var Hexagon = createLucideIcon("hexagon", __iconNode780);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/highlighter.js
var __iconNode781 = [
["path", { d: "m9 11-6 6v3h9l3-3", key: "1a3l36" }],
["path", { d: "m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4", key: "14a9rk" }]
];
var Highlighter = createLucideIcon("highlighter", __iconNode781);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/history.js
var __iconNode782 = [
["path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8", key: "1357e3" }],
["path", { d: "M3 3v5h5", key: "1xhq8a" }],
["path", { d: "M12 7v5l4 2", key: "1fdv2h" }]
];
var History = createLucideIcon("history", __iconNode782);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hop-off.js
var __iconNode783 = [
["path", { d: "M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27", key: "qyzcap" }],
[
"path",
{
d: "M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28",
key: "y078lb"
}
],
["path", { d: "M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26", key: "1utre3" }],
[
"path",
{
d: "M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25",
key: "17o9hm"
}
],
["path", { d: "M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75", key: "1d1n4p" }],
[
"path",
{
d: "M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24",
key: "9uv3tt"
}
],
[
"path",
{
d: "M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28",
key: "1292wz"
}
],
[
"path",
{
d: "M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05",
key: "7ozu9p"
}
],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var HopOff = createLucideIcon("hop-off", __iconNode783);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hop.js
var __iconNode784 = [
[
"path",
{
d: "M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18",
key: "18lxf1"
}
],
[
"path",
{
d: "M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88",
key: "vtfxrw"
}
],
[
"path",
{
d: "M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36",
key: "13hl71"
}
],
[
"path",
{
d: "M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87",
key: "1sl8oj"
}
],
[
"path",
{
d: "M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08",
key: "19c6kt"
}
],
[
"path",
{
d: "M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57",
key: "85ghs3"
}
],
["path", { d: "M4.93 4.93 3 3a.7.7 0 0 1 0-1", key: "x087yj" }],
[
"path",
{
d: "M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15",
key: "11xdqo"
}
]
];
var Hop = createLucideIcon("hop", __iconNode784);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hospital.js
var __iconNode785 = [
["path", { d: "M12 6v4", key: "16clxf" }],
["path", { d: "M14 14h-4", key: "esezmu" }],
["path", { d: "M14 18h-4", key: "16mqa2" }],
["path", { d: "M14 8h-4", key: "z8ypaz" }],
[
"path",
{
d: "M18 12h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2",
key: "b1k337"
}
],
["path", { d: "M18 22V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v18", key: "16g51d" }]
];
var Hospital = createLucideIcon("hospital", __iconNode785);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hotel.js
var __iconNode786 = [
["path", { d: "M10 22v-6.57", key: "1wmca3" }],
["path", { d: "M12 11h.01", key: "z322tv" }],
["path", { d: "M12 7h.01", key: "1ivr5q" }],
["path", { d: "M14 15.43V22", key: "1q2vjd" }],
["path", { d: "M15 16a5 5 0 0 0-6 0", key: "o9wqvi" }],
["path", { d: "M16 11h.01", key: "xkw8gn" }],
["path", { d: "M16 7h.01", key: "1kdx03" }],
["path", { d: "M8 11h.01", key: "1dfujw" }],
["path", { d: "M8 7h.01", key: "1vti4s" }],
["rect", { x: "4", y: "2", width: "16", height: "20", rx: "2", key: "1uxh74" }]
];
var Hotel = createLucideIcon("hotel", __iconNode786);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hourglass.js
var __iconNode787 = [
["path", { d: "M5 22h14", key: "ehvnwv" }],
["path", { d: "M5 2h14", key: "pdyrp9" }],
[
"path",
{
d: "M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22",
key: "1d314k"
}
],
[
"path",
{ d: "M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2", key: "1vvvr6" }
]
];
var Hourglass = createLucideIcon("hourglass", __iconNode787);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/house-plug.js
var __iconNode788 = [
["path", { d: "M10 12V8.964", key: "1vll13" }],
["path", { d: "M14 12V8.964", key: "1x3qvg" }],
[
"path",
{ d: "M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z", key: "ppykja" }
],
[
"path",
{
d: "M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2",
key: "1gvg2z"
}
]
];
var HousePlug = createLucideIcon("house-plug", __iconNode788);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/house-plus.js
var __iconNode789 = [
[
"path",
{
d: "M12.662 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v2.475",
key: "uubd2h"
}
],
["path", { d: "M14.959 12.717A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8", key: "p7f341" }],
["path", { d: "M15 18h6", key: "3b3c90" }],
["path", { d: "M18 15v6", key: "9wciyi" }]
];
var HousePlus = createLucideIcon("house-plus", __iconNode789);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/house.js
var __iconNode790 = [
["path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8", key: "5wwlr5" }],
[
"path",
{
d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",
key: "1d0kgt"
}
]
];
var House = createLucideIcon("house", __iconNode790);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/house-wifi.js
var __iconNode791 = [
["path", { d: "M9.5 13.866a4 4 0 0 1 5 .01", key: "1wy54i" }],
["path", { d: "M12 17h.01", key: "p32p05" }],
[
"path",
{
d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",
key: "1d0kgt"
}
],
["path", { d: "M7 10.754a8 8 0 0 1 10 0", key: "exoy2g" }]
];
var HouseWifi = createLucideIcon("house-wifi", __iconNode791);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ice-cream-bowl.js
var __iconNode792 = [
[
"path",
{
d: "M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0",
key: "1uxfcu"
}
],
["path", { d: "M12.14 11a3.5 3.5 0 1 1 6.71 0", key: "4k3m1s" }],
["path", { d: "M15.5 6.5a3.5 3.5 0 1 0-7 0", key: "zmuahr" }]
];
var IceCreamBowl = createLucideIcon("ice-cream-bowl", __iconNode792);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ice-cream-cone.js
var __iconNode793 = [
["path", { d: "m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11", key: "1v6356" }],
["path", { d: "M17 7A5 5 0 0 0 7 7", key: "151p3v" }],
["path", { d: "M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4", key: "1sdaij" }]
];
var IceCreamCone = createLucideIcon("ice-cream-cone", __iconNode793);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/id-card-lanyard.js
var __iconNode794 = [
["path", { d: "M13.5 8h-3", key: "xvov4w" }],
[
"path",
{
d: "m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3",
key: "16uttc"
}
],
["path", { d: "M16.899 22A5 5 0 0 0 7.1 22", key: "1d0ppr" }],
["path", { d: "m9 2 3 6", key: "1o7bd9" }],
["circle", { cx: "12", cy: "15", r: "3", key: "g36mzq" }]
];
var IdCardLanyard = createLucideIcon("id-card-lanyard", __iconNode794);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/id-card.js
var __iconNode795 = [
["path", { d: "M16 10h2", key: "8sgtl7" }],
["path", { d: "M16 14h2", key: "epxaof" }],
["path", { d: "M6.17 15a3 3 0 0 1 5.66 0", key: "n6f512" }],
["circle", { cx: "9", cy: "11", r: "2", key: "yxgjnd" }],
["rect", { x: "2", y: "5", width: "20", height: "14", rx: "2", key: "qneu4z" }]
];
var IdCard = createLucideIcon("id-card", __iconNode795);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/image-down.js
var __iconNode796 = [
[
"path",
{
d: "M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",
key: "9csbqa"
}
],
["path", { d: "m14 19 3 3v-5.5", key: "9ldu5r" }],
["path", { d: "m17 22 3-3", key: "1nkfve" }],
["circle", { cx: "9", cy: "9", r: "2", key: "af1f0g" }]
];
var ImageDown = createLucideIcon("image-down", __iconNode796);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/image-minus.js
var __iconNode797 = [
["path", { d: "M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7", key: "m87ecr" }],
["line", { x1: "16", x2: "22", y1: "5", y2: "5", key: "ez7e4s" }],
["circle", { cx: "9", cy: "9", r: "2", key: "af1f0g" }],
["path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21", key: "1xmnt7" }]
];
var ImageMinus = createLucideIcon("image-minus", __iconNode797);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/image-off.js
var __iconNode798 = [
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }],
["path", { d: "M10.41 10.41a2 2 0 1 1-2.83-2.83", key: "1bzlo9" }],
["line", { x1: "13.5", x2: "6", y1: "13.5", y2: "21", key: "1q0aeu" }],
["line", { x1: "18", x2: "21", y1: "12", y2: "15", key: "5mozeu" }],
[
"path",
{
d: "M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59",
key: "mmje98"
}
],
["path", { d: "M21 15V5a2 2 0 0 0-2-2H9", key: "43el77" }]
];
var ImageOff = createLucideIcon("image-off", __iconNode798);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/image-play.js
var __iconNode799 = [
["path", { d: "m11 16-5 5", key: "j5f7ct" }],
["path", { d: "M11 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6.5", key: "7s81lt" }],
[
"path",
{
d: "M15.765 22a.5.5 0 0 1-.765-.424V13.38a.5.5 0 0 1 .765-.424l5.878 3.674a1 1 0 0 1 0 1.696z",
key: "1omb6s"
}
],
["circle", { cx: "9", cy: "9", r: "2", key: "af1f0g" }]
];
var ImagePlay = createLucideIcon("image-play", __iconNode799);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/image-plus.js
var __iconNode800 = [
["path", { d: "M16 5h6", key: "1vod17" }],
["path", { d: "M19 2v6", key: "4bpg5p" }],
["path", { d: "M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5", key: "1ue2ih" }],
["path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21", key: "1xmnt7" }],
["circle", { cx: "9", cy: "9", r: "2", key: "af1f0g" }]
];
var ImagePlus = createLucideIcon("image-plus", __iconNode800);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/image-up.js
var __iconNode801 = [
[
"path",
{
d: "M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",
key: "9csbqa"
}
],
["path", { d: "m14 19.5 3-3 3 3", key: "9vmjn0" }],
["path", { d: "M17 22v-5.5", key: "1aa6fl" }],
["circle", { cx: "9", cy: "9", r: "2", key: "af1f0g" }]
];
var ImageUp = createLucideIcon("image-up", __iconNode801);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/image-upscale.js
var __iconNode802 = [
["path", { d: "M16 3h5v5", key: "1806ms" }],
["path", { d: "M17 21h2a2 2 0 0 0 2-2", key: "130fy9" }],
["path", { d: "M21 12v3", key: "1wzk3p" }],
["path", { d: "m21 3-5 5", key: "1g5oa7" }],
["path", { d: "M3 7V5a2 2 0 0 1 2-2", key: "kk3yz1" }],
["path", { d: "m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19", key: "fyekpt" }],
["path", { d: "M9 3h3", key: "d52fa" }],
["rect", { x: "3", y: "11", width: "10", height: "10", rx: "1", key: "1wpmix" }]
];
var ImageUpscale = createLucideIcon("image-upscale", __iconNode802);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/image.js
var __iconNode803 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["circle", { cx: "9", cy: "9", r: "2", key: "af1f0g" }],
["path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21", key: "1xmnt7" }]
];
var Image2 = createLucideIcon("image", __iconNode803);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/images.js
var __iconNode804 = [
["path", { d: "M18 22H4a2 2 0 0 1-2-2V6", key: "pblm9e" }],
["path", { d: "m22 13-1.296-1.296a2.41 2.41 0 0 0-3.408 0L11 18", key: "nf6bnh" }],
["circle", { cx: "12", cy: "8", r: "2", key: "1822b1" }],
["rect", { width: "16", height: "16", x: "6", y: "2", rx: "2", key: "12espp" }]
];
var Images = createLucideIcon("images", __iconNode804);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/import.js
var __iconNode805 = [
["path", { d: "M12 3v12", key: "1x0j5s" }],
["path", { d: "m8 11 4 4 4-4", key: "1dohi6" }],
[
"path",
{
d: "M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4",
key: "1ywtjm"
}
]
];
var Import = createLucideIcon("import", __iconNode805);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/inbox.js
var __iconNode806 = [
["polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12", key: "o97t9d" }],
[
"path",
{
d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",
key: "oot6mr"
}
]
];
var Inbox = createLucideIcon("inbox", __iconNode806);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/indent-decrease.js
var __iconNode807 = [
["path", { d: "M21 12H11", key: "wd7e0v" }],
["path", { d: "M21 18H11", key: "4wu86t" }],
["path", { d: "M21 6H11", key: "6dy1d6" }],
["path", { d: "m7 8-4 4 4 4", key: "o5hrat" }]
];
var IndentDecrease = createLucideIcon("indent-decrease", __iconNode807);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/indent-increase.js
var __iconNode808 = [
["path", { d: "M21 12H11", key: "wd7e0v" }],
["path", { d: "M21 18H11", key: "4wu86t" }],
["path", { d: "M21 6H11", key: "6dy1d6" }],
["path", { d: "m3 8 4 4-4 4", key: "1a3j6y" }]
];
var IndentIncrease = createLucideIcon("indent-increase", __iconNode808);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/indian-rupee.js
var __iconNode809 = [
["path", { d: "M6 3h12", key: "ggurg9" }],
["path", { d: "M6 8h12", key: "6g4wlu" }],
["path", { d: "m6 13 8.5 8", key: "u1kupk" }],
["path", { d: "M6 13h3", key: "wdp6ag" }],
["path", { d: "M9 13c6.667 0 6.667-10 0-10", key: "1nkvk2" }]
];
var IndianRupee = createLucideIcon("indian-rupee", __iconNode809);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/infinity.js
var __iconNode810 = [
["path", { d: "M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8", key: "18ogeb" }]
];
var Infinity = createLucideIcon("infinity", __iconNode810);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/info.js
var __iconNode811 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M12 16v-4", key: "1dtifu" }],
["path", { d: "M12 8h.01", key: "e9boi3" }]
];
var Info = createLucideIcon("info", __iconNode811);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/instagram.js
var __iconNode812 = [
["rect", { width: "20", height: "20", x: "2", y: "2", rx: "5", ry: "5", key: "2e1cvw" }],
["path", { d: "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z", key: "9exkf1" }],
["line", { x1: "17.5", x2: "17.51", y1: "6.5", y2: "6.5", key: "r4j83e" }]
];
var Instagram = createLucideIcon("instagram", __iconNode812);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/inspection-panel.js
var __iconNode813 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M7 7h.01", key: "7u93v4" }],
["path", { d: "M17 7h.01", key: "14a9sn" }],
["path", { d: "M7 17h.01", key: "19xn7k" }],
["path", { d: "M17 17h.01", key: "1sd3ek" }]
];
var InspectionPanel = createLucideIcon("inspection-panel", __iconNode813);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/italic.js
var __iconNode814 = [
["line", { x1: "19", x2: "10", y1: "4", y2: "4", key: "15jd3p" }],
["line", { x1: "14", x2: "5", y1: "20", y2: "20", key: "bu0au3" }],
["line", { x1: "15", x2: "9", y1: "4", y2: "20", key: "uljnxc" }]
];
var Italic = createLucideIcon("italic", __iconNode814);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/iteration-ccw.js
var __iconNode815 = [
["path", { d: "m16 14 4 4-4 4", key: "hkso8o" }],
["path", { d: "M20 10a8 8 0 1 0-8 8h8", key: "1bik7b" }]
];
var IterationCcw = createLucideIcon("iteration-ccw", __iconNode815);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/iteration-cw.js
var __iconNode816 = [
["path", { d: "M4 10a8 8 0 1 1 8 8H4", key: "svv66n" }],
["path", { d: "m8 22-4-4 4-4", key: "6g7gki" }]
];
var IterationCw = createLucideIcon("iteration-cw", __iconNode816);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/japanese-yen.js
var __iconNode817 = [
["path", { d: "M12 9.5V21m0-11.5L6 3m6 6.5L18 3", key: "2ej80x" }],
["path", { d: "M6 15h12", key: "1hwgt5" }],
["path", { d: "M6 11h12", key: "wf4gp6" }]
];
var JapaneseYen = createLucideIcon("japanese-yen", __iconNode817);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/joystick.js
var __iconNode818 = [
[
"path",
{
d: "M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z",
key: "jg2n2t"
}
],
["path", { d: "M6 15v-2", key: "gd6mvg" }],
["path", { d: "M12 15V9", key: "8c7uyn" }],
["circle", { cx: "12", cy: "6", r: "3", key: "1gm2ql" }]
];
var Joystick = createLucideIcon("joystick", __iconNode818);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/kanban.js
var __iconNode819 = [
["path", { d: "M6 5v11", key: "mdvv1e" }],
["path", { d: "M12 5v6", key: "14ar3b" }],
["path", { d: "M18 5v14", key: "7ji314" }]
];
var Kanban = createLucideIcon("kanban", __iconNode819);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/key-round.js
var __iconNode820 = [
[
"path",
{
d: "M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z",
key: "1s6t7t"
}
],
["circle", { cx: "16.5", cy: "7.5", r: ".5", fill: "currentColor", key: "w0ekpg" }]
];
var KeyRound = createLucideIcon("key-round", __iconNode820);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/key-square.js
var __iconNode821 = [
[
"path",
{
d: "M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z",
key: "165ttr"
}
],
["path", { d: "m14 7 3 3", key: "1r5n42" }],
[
"path",
{
d: "m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814",
key: "1ubxi2"
}
]
];
var KeySquare = createLucideIcon("key-square", __iconNode821);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/key.js
var __iconNode822 = [
["path", { 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", key: "g0fldk" }],
["path", { d: "m21 2-9.6 9.6", key: "1j0ho8" }],
["circle", { cx: "7.5", cy: "15.5", r: "5.5", key: "yqb3hr" }]
];
var Key = createLucideIcon("key", __iconNode822);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/keyboard-off.js
var __iconNode823 = [
["path", { d: "M 20 4 A2 2 0 0 1 22 6", key: "1g1fkt" }],
["path", { d: "M 22 6 L 22 16.41", key: "1qjg3w" }],
["path", { d: "M 7 16 L 16 16", key: "n0yqwb" }],
["path", { d: "M 9.69 4 L 20 4", key: "kbpcgx" }],
["path", { d: "M14 8h.01", key: "1primd" }],
["path", { d: "M18 8h.01", key: "emo2bl" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2", key: "s23sx2" }],
["path", { d: "M6 8h.01", key: "x9i8wu" }],
["path", { d: "M8 12h.01", key: "czm47f" }]
];
var KeyboardOff = createLucideIcon("keyboard-off", __iconNode823);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/keyboard-music.js
var __iconNode824 = [
["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2", key: "18n3k1" }],
["path", { d: "M6 8h4", key: "utf9t1" }],
["path", { d: "M14 8h.01", key: "1primd" }],
["path", { d: "M18 8h.01", key: "emo2bl" }],
["path", { d: "M2 12h20", key: "9i4pu4" }],
["path", { d: "M6 12v4", key: "dy92yo" }],
["path", { d: "M10 12v4", key: "1fxnav" }],
["path", { d: "M14 12v4", key: "1hft58" }],
["path", { d: "M18 12v4", key: "tjjnbz" }]
];
var KeyboardMusic = createLucideIcon("keyboard-music", __iconNode824);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lamp-ceiling.js
var __iconNode825 = [
["path", { d: "M12 2v5", key: "nd4vlx" }],
["path", { d: "M14.829 15.998a3 3 0 1 1-5.658 0", key: "1pybiy" }],
[
"path",
{
d: "M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z",
key: "ma1wor"
}
]
];
var LampCeiling = createLucideIcon("lamp-ceiling", __iconNode825);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/keyboard.js
var __iconNode826 = [
["path", { d: "M10 8h.01", key: "1r9ogq" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }],
["path", { d: "M14 8h.01", key: "1primd" }],
["path", { d: "M16 12h.01", key: "1l6xoz" }],
["path", { d: "M18 8h.01", key: "emo2bl" }],
["path", { d: "M6 8h.01", key: "x9i8wu" }],
["path", { d: "M7 16h10", key: "wp8him" }],
["path", { d: "M8 12h.01", key: "czm47f" }],
["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2", key: "18n3k1" }]
];
var Keyboard = createLucideIcon("keyboard", __iconNode826);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lamp-desk.js
var __iconNode827 = [
[
"path",
{
d: "M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z",
key: "sb8slu"
}
],
["path", { d: "m14.207 4.793-3.414 3.414", key: "m2x3oj" }],
[
"path",
{ d: "M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z", key: "8b3myj" }
],
["path", { d: "m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18", key: "43s6cu" }]
];
var LampDesk = createLucideIcon("lamp-desk", __iconNode827);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lamp-floor.js
var __iconNode828 = [
["path", { d: "M12 10v12", key: "6ubwww" }],
[
"path",
{
d: "M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z",
key: "1o95gh"
}
],
["path", { d: "M9 22h6", key: "1rlq3v" }]
];
var LampFloor = createLucideIcon("lamp-floor", __iconNode828);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lamp-wall-down.js
var __iconNode829 = [
[
"path",
{
d: "M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z",
key: "u4w2d7"
}
],
[
"path",
{ d: "M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z", key: "15356w" }
],
["path", { d: "M8 6h4a2 2 0 0 1 2 2v5", key: "1m6m7x" }]
];
var LampWallDown = createLucideIcon("lamp-wall-down", __iconNode829);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lamp-wall-up.js
var __iconNode830 = [
[
"path",
{
d: "M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z",
key: "1uvrbf"
}
],
[
"path",
{ d: "M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z", key: "154r2a" }
],
["path", { d: "M8 18h4a2 2 0 0 0 2-2v-5", key: "z9mbu0" }]
];
var LampWallUp = createLucideIcon("lamp-wall-up", __iconNode830);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lamp.js
var __iconNode831 = [
["path", { d: "M12 12v6", key: "3ahymv" }],
[
"path",
{
d: "M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z",
key: "1l7kg2"
}
],
[
"path",
{ d: "M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z", key: "1mmzpi" }
]
];
var Lamp = createLucideIcon("lamp", __iconNode831);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/land-plot.js
var __iconNode832 = [
["path", { d: "m12 8 6-3-6-3v10", key: "mvpnpy" }],
[
"path",
{
d: "m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12",
key: "ek95tt"
}
],
["path", { d: "m6.49 12.85 11.02 6.3", key: "1kt42w" }],
["path", { d: "M17.51 12.85 6.5 19.15", key: "v55bdg" }]
];
var LandPlot = createLucideIcon("land-plot", __iconNode832);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/landmark.js
var __iconNode833 = [
["path", { d: "M10 18v-7", key: "wt116b" }],
[
"path",
{
d: "M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z",
key: "1m329m"
}
],
["path", { d: "M14 18v-7", key: "vav6t3" }],
["path", { d: "M18 18v-7", key: "aexdmj" }],
["path", { d: "M3 22h18", key: "8prr45" }],
["path", { d: "M6 18v-7", key: "1ivflk" }]
];
var Landmark = createLucideIcon("landmark", __iconNode833);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/languages.js
var __iconNode834 = [
["path", { d: "m5 8 6 6", key: "1wu5hv" }],
["path", { d: "m4 14 6-6 2-3", key: "1k1g8d" }],
["path", { d: "M2 5h12", key: "or177f" }],
["path", { d: "M7 2h1", key: "1t2jsx" }],
["path", { d: "m22 22-5-10-5 10", key: "don7ne" }],
["path", { d: "M14 18h6", key: "1m8k6r" }]
];
var Languages = createLucideIcon("languages", __iconNode834);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/laptop-minimal-check.js
var __iconNode835 = [
["path", { d: "M2 20h20", key: "owomy5" }],
["path", { d: "m9 10 2 2 4-4", key: "1gnqz4" }],
["rect", { x: "3", y: "4", width: "18", height: "12", rx: "2", key: "8ur36m" }]
];
var LaptopMinimalCheck = createLucideIcon("laptop-minimal-check", __iconNode835);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/laptop-minimal.js
var __iconNode836 = [
["rect", { width: "18", height: "12", x: "3", y: "4", rx: "2", ry: "2", key: "1qhy41" }],
["line", { x1: "2", x2: "22", y1: "20", y2: "20", key: "ni3hll" }]
];
var LaptopMinimal = createLucideIcon("laptop-minimal", __iconNode836);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/laptop.js
var __iconNode837 = [
[
"path",
{
d: "M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z",
key: "1pdavp"
}
],
["path", { d: "M20.054 15.987H3.946", key: "14rxg9" }]
];
var Laptop = createLucideIcon("laptop", __iconNode837);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lasso-select.js
var __iconNode838 = [
["path", { d: "M7 22a5 5 0 0 1-2-4", key: "umushi" }],
["path", { d: "M7 16.93c.96.43 1.96.74 2.99.91", key: "ybbtv3" }],
[
"path",
{
d: "M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2",
key: "gt5e1w"
}
],
["path", { d: "M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z", key: "bq3ynw" }],
[
"path",
{
d: "M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z",
key: "72q637"
}
]
];
var LassoSelect = createLucideIcon("lasso-select", __iconNode838);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lasso.js
var __iconNode839 = [
["path", { d: "M7 22a5 5 0 0 1-2-4", key: "umushi" }],
[
"path",
{
d: "M3.3 14A6.8 6.8 0 0 1 2 10c0-4.4 4.5-8 10-8s10 3.6 10 8-4.5 8-10 8a12 12 0 0 1-5-1",
key: "146dds"
}
],
["path", { d: "M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z", key: "bq3ynw" }]
];
var Lasso = createLucideIcon("lasso", __iconNode839);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/layers-2.js
var __iconNode840 = [
[
"path",
{
d: "M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z",
key: "15q6uc"
}
],
[
"path",
{
d: "m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845",
key: "byia6g"
}
]
];
var Layers2 = createLucideIcon("layers-2", __iconNode840);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/laugh.js
var __iconNode841 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z", key: "b2q4dd" }],
["line", { x1: "9", x2: "9.01", y1: "9", y2: "9", key: "yxxnd0" }],
["line", { x1: "15", x2: "15.01", y1: "9", y2: "9", key: "1p4y9e" }]
];
var Laugh = createLucideIcon("laugh", __iconNode841);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/layers.js
var __iconNode842 = [
[
"path",
{
d: "M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z",
key: "zw3jo"
}
],
[
"path",
{
d: "M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12",
key: "1wduqc"
}
],
[
"path",
{
d: "M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17",
key: "kqbvx6"
}
]
];
var Layers = createLucideIcon("layers", __iconNode842);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/layout-dashboard.js
var __iconNode843 = [
["rect", { width: "7", height: "9", x: "3", y: "3", rx: "1", key: "10lvy0" }],
["rect", { width: "7", height: "5", x: "14", y: "3", rx: "1", key: "16une8" }],
["rect", { width: "7", height: "9", x: "14", y: "12", rx: "1", key: "1hutg5" }],
["rect", { width: "7", height: "5", x: "3", y: "16", rx: "1", key: "ldoo1y" }]
];
var LayoutDashboard = createLucideIcon("layout-dashboard", __iconNode843);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/layout-list.js
var __iconNode844 = [
["rect", { width: "7", height: "7", x: "3", y: "3", rx: "1", key: "1g98yp" }],
["rect", { width: "7", height: "7", x: "3", y: "14", rx: "1", key: "1bb6yr" }],
["path", { d: "M14 4h7", key: "3xa0d5" }],
["path", { d: "M14 9h7", key: "1icrd9" }],
["path", { d: "M14 15h7", key: "1mj8o2" }],
["path", { d: "M14 20h7", key: "11slyb" }]
];
var LayoutList = createLucideIcon("layout-list", __iconNode844);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/layout-grid.js
var __iconNode845 = [
["rect", { width: "7", height: "7", x: "3", y: "3", rx: "1", key: "1g98yp" }],
["rect", { width: "7", height: "7", x: "14", y: "3", rx: "1", key: "6d4xhi" }],
["rect", { width: "7", height: "7", x: "14", y: "14", rx: "1", key: "nxv5o0" }],
["rect", { width: "7", height: "7", x: "3", y: "14", rx: "1", key: "1bb6yr" }]
];
var LayoutGrid = createLucideIcon("layout-grid", __iconNode845);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/layout-panel-left.js
var __iconNode846 = [
["rect", { width: "7", height: "18", x: "3", y: "3", rx: "1", key: "2obqm" }],
["rect", { width: "7", height: "7", x: "14", y: "3", rx: "1", key: "6d4xhi" }],
["rect", { width: "7", height: "7", x: "14", y: "14", rx: "1", key: "nxv5o0" }]
];
var LayoutPanelLeft = createLucideIcon("layout-panel-left", __iconNode846);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/layout-panel-top.js
var __iconNode847 = [
["rect", { width: "18", height: "7", x: "3", y: "3", rx: "1", key: "f1a2em" }],
["rect", { width: "7", height: "7", x: "3", y: "14", rx: "1", key: "1bb6yr" }],
["rect", { width: "7", height: "7", x: "14", y: "14", rx: "1", key: "nxv5o0" }]
];
var LayoutPanelTop = createLucideIcon("layout-panel-top", __iconNode847);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/layout-template.js
var __iconNode848 = [
["rect", { width: "18", height: "7", x: "3", y: "3", rx: "1", key: "f1a2em" }],
["rect", { width: "9", height: "7", x: "3", y: "14", rx: "1", key: "jqznyg" }],
["rect", { width: "5", height: "7", x: "16", y: "14", rx: "1", key: "q5h2i8" }]
];
var LayoutTemplate = createLucideIcon("layout-template", __iconNode848);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/leaf.js
var __iconNode849 = [
[
"path",
{
d: "M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z",
key: "nnexq3"
}
],
["path", { d: "M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12", key: "mt58a7" }]
];
var Leaf = createLucideIcon("leaf", __iconNode849);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/leafy-green.js
var __iconNode850 = [
[
"path",
{
d: "M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22",
key: "1134nt"
}
],
["path", { d: "M2 22 17 7", key: "1q7jp2" }]
];
var LeafyGreen = createLucideIcon("leafy-green", __iconNode850);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lectern.js
var __iconNode851 = [
[
"path",
{
d: "M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3",
key: "13jjxg"
}
],
["path", { d: "M18 6V3a1 1 0 0 0-1-1h-3", key: "1550fe" }],
["rect", { width: "8", height: "12", x: "8", y: "10", rx: "1", key: "qmu8b6" }]
];
var Lectern = createLucideIcon("lectern", __iconNode851);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/letter-text.js
var __iconNode852 = [
["path", { d: "M15 12h6", key: "upa0zy" }],
["path", { d: "M15 6h6", key: "1jlkvy" }],
["path", { d: "m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13", key: "blevx4" }],
["path", { d: "M3 18h18", key: "1h113x" }],
["path", { d: "M3.92 11h6.16", key: "1bqo8m" }]
];
var LetterText = createLucideIcon("letter-text", __iconNode852);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/library-big.js
var __iconNode853 = [
["rect", { width: "8", height: "18", x: "3", y: "3", rx: "1", key: "oynpb5" }],
["path", { d: "M7 3v18", key: "bbkbws" }],
[
"path",
{
d: "M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z",
key: "1qboyk"
}
]
];
var LibraryBig = createLucideIcon("library-big", __iconNode853);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/library.js
var __iconNode854 = [
["path", { d: "m16 6 4 14", key: "ji33uf" }],
["path", { d: "M12 6v14", key: "1n7gus" }],
["path", { d: "M8 8v12", key: "1gg7y9" }],
["path", { d: "M4 4v16", key: "6qkkli" }]
];
var Library = createLucideIcon("library", __iconNode854);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/life-buoy.js
var __iconNode855 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "m4.93 4.93 4.24 4.24", key: "1ymg45" }],
["path", { d: "m14.83 9.17 4.24-4.24", key: "1cb5xl" }],
["path", { d: "m14.83 14.83 4.24 4.24", key: "q42g0n" }],
["path", { d: "m9.17 14.83-4.24 4.24", key: "bqpfvv" }],
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }]
];
var LifeBuoy = createLucideIcon("life-buoy", __iconNode855);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ligature.js
var __iconNode856 = [
["path", { d: "M14 12h2v8", key: "c1fccl" }],
["path", { d: "M14 20h4", key: "lzx1xo" }],
["path", { d: "M6 12h4", key: "a4o3ry" }],
["path", { d: "M6 20h4", key: "1i6q5t" }],
["path", { d: "M8 20V8a4 4 0 0 1 7.464-2", key: "wk9t6r" }]
];
var Ligature = createLucideIcon("ligature", __iconNode856);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lightbulb.js
var __iconNode857 = [
[
"path",
{
d: "M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5",
key: "1gvzjb"
}
],
["path", { d: "M9 18h6", key: "x1upvd" }],
["path", { d: "M10 22h4", key: "ceow96" }]
];
var Lightbulb = createLucideIcon("lightbulb", __iconNode857);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lightbulb-off.js
var __iconNode858 = [
["path", { d: "M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5", key: "1fkcox" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5", key: "10m8kw" }],
["path", { d: "M9 18h6", key: "x1upvd" }],
["path", { d: "M10 22h4", key: "ceow96" }]
];
var LightbulbOff = createLucideIcon("lightbulb-off", __iconNode858);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/line-squiggle.js
var __iconNode859 = [
[
"path",
{
d: "M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2",
key: "1lrphd"
}
]
];
var LineSquiggle = createLucideIcon("line-squiggle", __iconNode859);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/link-2-off.js
var __iconNode860 = [
["path", { d: "M9 17H7A5 5 0 0 1 7 7", key: "10o201" }],
["path", { d: "M15 7h2a5 5 0 0 1 4 8", key: "1d3206" }],
["line", { x1: "8", x2: "12", y1: "12", y2: "12", key: "rvw6j4" }],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var Link2Off = createLucideIcon("link-2-off", __iconNode860);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/link-2.js
var __iconNode861 = [
["path", { d: "M9 17H7A5 5 0 0 1 7 7h2", key: "8i5ue5" }],
["path", { d: "M15 7h2a5 5 0 1 1 0 10h-2", key: "1b9ql8" }],
["line", { x1: "8", x2: "16", y1: "12", y2: "12", key: "1jonct" }]
];
var Link2 = createLucideIcon("link-2", __iconNode861);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/link.js
var __iconNode862 = [
["path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71", key: "1cjeqo" }],
["path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71", key: "19qd67" }]
];
var Link = createLucideIcon("link", __iconNode862);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-check.js
var __iconNode863 = [
["path", { d: "M11 18H3", key: "n3j2dh" }],
["path", { d: "m15 18 2 2 4-4", key: "1szwhi" }],
["path", { d: "M16 12H3", key: "1a2rj7" }],
["path", { d: "M16 6H3", key: "1wxfjs" }]
];
var ListCheck = createLucideIcon("list-check", __iconNode863);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/linkedin.js
var __iconNode864 = [
[
"path",
{
d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z",
key: "c2jq9f"
}
],
["rect", { width: "4", height: "12", x: "2", y: "9", key: "mk3on5" }],
["circle", { cx: "4", cy: "4", r: "2", key: "bt5ra8" }]
];
var Linkedin = createLucideIcon("linkedin", __iconNode864);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-checks.js
var __iconNode865 = [
["path", { d: "m3 17 2 2 4-4", key: "1jhpwq" }],
["path", { d: "m3 7 2 2 4-4", key: "1obspn" }],
["path", { d: "M13 6h8", key: "15sg57" }],
["path", { d: "M13 12h8", key: "h98zly" }],
["path", { d: "M13 18h8", key: "oe0vm4" }]
];
var ListChecks = createLucideIcon("list-checks", __iconNode865);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-collapse.js
var __iconNode866 = [
["path", { d: "M10 12h11", key: "6m4ad9" }],
["path", { d: "M10 18h11", key: "11hvi2" }],
["path", { d: "M10 6h11", key: "c7qv1k" }],
["path", { d: "m3 10 3-3-3-3", key: "i7pm08" }],
["path", { d: "m3 20 3-3-3-3", key: "20gx1n" }]
];
var ListCollapse = createLucideIcon("list-collapse", __iconNode866);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-end.js
var __iconNode867 = [
["path", { d: "M16 12H3", key: "1a2rj7" }],
["path", { d: "M16 6H3", key: "1wxfjs" }],
["path", { d: "M10 18H3", key: "13769t" }],
["path", { d: "M21 6v10a2 2 0 0 1-2 2h-5", key: "ilrcs8" }],
["path", { d: "m16 16-2 2 2 2", key: "kkc6pm" }]
];
var ListEnd = createLucideIcon("list-end", __iconNode867);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-filter-plus.js
var __iconNode868 = [
["path", { d: "M10 18h4", key: "1ulq68" }],
["path", { d: "M11 6H3", key: "1u26ik" }],
["path", { d: "M15 6h6", key: "1jlkvy" }],
["path", { d: "M18 9V3", key: "xwwp7m" }],
["path", { d: "M7 12h8", key: "7a1bxv" }]
];
var ListFilterPlus = createLucideIcon("list-filter-plus", __iconNode868);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-filter.js
var __iconNode869 = [
["path", { d: "M3 6h18", key: "d0wm0j" }],
["path", { d: "M7 12h10", key: "b7w52i" }],
["path", { d: "M10 18h4", key: "1ulq68" }]
];
var ListFilter = createLucideIcon("list-filter", __iconNode869);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-minus.js
var __iconNode870 = [
["path", { d: "M11 12H3", key: "51ecnj" }],
["path", { d: "M16 6H3", key: "1wxfjs" }],
["path", { d: "M16 18H3", key: "12xzn7" }],
["path", { d: "M21 12h-6", key: "bt1uis" }]
];
var ListMinus = createLucideIcon("list-minus", __iconNode870);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-music.js
var __iconNode871 = [
["path", { d: "M21 15V6", key: "h1cx4g" }],
["path", { d: "M18.5 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z", key: "8saifv" }],
["path", { d: "M12 12H3", key: "18klou" }],
["path", { d: "M16 6H3", key: "1wxfjs" }],
["path", { d: "M12 18H3", key: "11ftsu" }]
];
var ListMusic = createLucideIcon("list-music", __iconNode871);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-ordered.js
var __iconNode872 = [
["path", { d: "M10 12h11", key: "6m4ad9" }],
["path", { d: "M10 18h11", key: "11hvi2" }],
["path", { d: "M10 6h11", key: "c7qv1k" }],
["path", { d: "M4 10h2", key: "16xx2s" }],
["path", { d: "M4 6h1v4", key: "cnovpq" }],
["path", { d: "M6 18H4c0-1 2-2 2-3s-1-1.5-2-1", key: "m9a95d" }]
];
var ListOrdered = createLucideIcon("list-ordered", __iconNode872);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-plus.js
var __iconNode873 = [
["path", { d: "M11 12H3", key: "51ecnj" }],
["path", { d: "M16 6H3", key: "1wxfjs" }],
["path", { d: "M16 18H3", key: "12xzn7" }],
["path", { d: "M18 9v6", key: "1twb98" }],
["path", { d: "M21 12h-6", key: "bt1uis" }]
];
var ListPlus = createLucideIcon("list-plus", __iconNode873);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-restart.js
var __iconNode874 = [
["path", { d: "M21 6H3", key: "1jwq7v" }],
["path", { d: "M7 12H3", key: "13ou7f" }],
["path", { d: "M7 18H3", key: "1sijw9" }],
[
"path",
{
d: "M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14",
key: "qth677"
}
],
["path", { d: "M11 10v4h4", key: "172dkj" }]
];
var ListRestart = createLucideIcon("list-restart", __iconNode874);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-start.js
var __iconNode875 = [
["path", { d: "M16 12H3", key: "1a2rj7" }],
["path", { d: "M16 18H3", key: "12xzn7" }],
["path", { d: "M10 6H3", key: "lf8lx7" }],
["path", { d: "M21 18V8a2 2 0 0 0-2-2h-5", key: "1hghli" }],
["path", { d: "m16 8-2-2 2-2", key: "160uvd" }]
];
var ListStart = createLucideIcon("list-start", __iconNode875);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-todo.js
var __iconNode876 = [
["rect", { x: "3", y: "5", width: "6", height: "6", rx: "1", key: "1defrl" }],
["path", { d: "m3 17 2 2 4-4", key: "1jhpwq" }],
["path", { d: "M13 6h8", key: "15sg57" }],
["path", { d: "M13 12h8", key: "h98zly" }],
["path", { d: "M13 18h8", key: "oe0vm4" }]
];
var ListTodo = createLucideIcon("list-todo", __iconNode876);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-tree.js
var __iconNode877 = [
["path", { d: "M21 12h-8", key: "1bmf0i" }],
["path", { d: "M21 6H8", key: "1pqkrb" }],
["path", { d: "M21 18h-8", key: "1tm79t" }],
["path", { d: "M3 6v4c0 1.1.9 2 2 2h3", key: "1ywdgy" }],
["path", { d: "M3 10v6c0 1.1.9 2 2 2h3", key: "2wc746" }]
];
var ListTree = createLucideIcon("list-tree", __iconNode877);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-video.js
var __iconNode878 = [
["path", { d: "M12 12H3", key: "18klou" }],
["path", { d: "M16 6H3", key: "1wxfjs" }],
["path", { d: "M12 18H3", key: "11ftsu" }],
["path", { d: "m16 12 5 3-5 3v-6Z", key: "zpskkp" }]
];
var ListVideo = createLucideIcon("list-video", __iconNode878);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-x.js
var __iconNode879 = [
["path", { d: "M11 12H3", key: "51ecnj" }],
["path", { d: "M16 6H3", key: "1wxfjs" }],
["path", { d: "M16 18H3", key: "12xzn7" }],
["path", { d: "m19 10-4 4", key: "1tz659" }],
["path", { d: "m15 10 4 4", key: "1n7nei" }]
];
var ListX = createLucideIcon("list-x", __iconNode879);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list.js
var __iconNode880 = [
["path", { d: "M3 12h.01", key: "nlz23k" }],
["path", { d: "M3 18h.01", key: "1tta3j" }],
["path", { d: "M3 6h.01", key: "1rqtza" }],
["path", { d: "M8 12h13", key: "1za7za" }],
["path", { d: "M8 18h13", key: "1lx6n3" }],
["path", { d: "M8 6h13", key: "ik3vkj" }]
];
var List = createLucideIcon("list", __iconNode880);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-circle.js
var __iconNode881 = [["path", { d: "M21 12a9 9 0 1 1-6.219-8.56", key: "13zald" }]];
var LoaderCircle = createLucideIcon("loader-circle", __iconNode881);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-pinwheel.js
var __iconNode882 = [
["path", { d: "M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0", key: "1lzz15" }],
["path", { d: "M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6", key: "1gnrpi" }],
["path", { d: "M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6", key: "u9yy5q" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var LoaderPinwheel = createLucideIcon("loader-pinwheel", __iconNode882);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader.js
var __iconNode883 = [
["path", { d: "M12 2v4", key: "3427ic" }],
["path", { d: "m16.2 7.8 2.9-2.9", key: "r700ao" }],
["path", { d: "M18 12h4", key: "wj9ykh" }],
["path", { d: "m16.2 16.2 2.9 2.9", key: "1bxg5t" }],
["path", { d: "M12 18v4", key: "jadmvz" }],
["path", { d: "m4.9 19.1 2.9-2.9", key: "bwix9q" }],
["path", { d: "M2 12h4", key: "j09sii" }],
["path", { d: "m4.9 4.9 2.9 2.9", key: "giyufr" }]
];
var Loader = createLucideIcon("loader", __iconNode883);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/locate-off.js
var __iconNode884 = [
["path", { d: "M12 19v3", key: "npa21l" }],
["path", { d: "M12 2v3", key: "qbqxhf" }],
["path", { d: "M18.89 13.24a7 7 0 0 0-8.13-8.13", key: "1v9jrh" }],
["path", { d: "M19 12h3", key: "osuazr" }],
["path", { d: "M2 12h3", key: "1wrr53" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M7.05 7.05a7 7 0 0 0 9.9 9.9", key: "rc5l2e" }]
];
var LocateOff = createLucideIcon("locate-off", __iconNode884);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/locate-fixed.js
var __iconNode885 = [
["line", { x1: "2", x2: "5", y1: "12", y2: "12", key: "bvdh0s" }],
["line", { x1: "19", x2: "22", y1: "12", y2: "12", key: "1tbv5k" }],
["line", { x1: "12", x2: "12", y1: "2", y2: "5", key: "11lu5j" }],
["line", { x1: "12", x2: "12", y1: "19", y2: "22", key: "x3vr5v" }],
["circle", { cx: "12", cy: "12", r: "7", key: "fim9np" }],
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
];
var LocateFixed = createLucideIcon("locate-fixed", __iconNode885);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/locate.js
var __iconNode886 = [
["line", { x1: "2", x2: "5", y1: "12", y2: "12", key: "bvdh0s" }],
["line", { x1: "19", x2: "22", y1: "12", y2: "12", key: "1tbv5k" }],
["line", { x1: "12", x2: "12", y1: "2", y2: "5", key: "11lu5j" }],
["line", { x1: "12", x2: "12", y1: "19", y2: "22", key: "x3vr5v" }],
["circle", { cx: "12", cy: "12", r: "7", key: "fim9np" }]
];
var Locate = createLucideIcon("locate", __iconNode886);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/location-edit.js
var __iconNode887 = [
["path", { d: "M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468", key: "1fahp3" }],
[
"path",
{
d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "1817ys"
}
],
["circle", { cx: "10", cy: "10", r: "3", key: "1ns7v1" }]
];
var LocationEdit = createLucideIcon("location-edit", __iconNode887);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lock-keyhole-open.js
var __iconNode888 = [
["circle", { cx: "12", cy: "16", r: "1", key: "1au0dj" }],
["rect", { width: "18", height: "12", x: "3", y: "10", rx: "2", key: "l0tzu3" }],
["path", { d: "M7 10V7a5 5 0 0 1 9.33-2.5", key: "car5b7" }]
];
var LockKeyholeOpen = createLucideIcon("lock-keyhole-open", __iconNode888);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lock-keyhole.js
var __iconNode889 = [
["circle", { cx: "12", cy: "16", r: "1", key: "1au0dj" }],
["rect", { x: "3", y: "10", width: "18", height: "12", rx: "2", key: "6s8ecr" }],
["path", { d: "M7 10V7a5 5 0 0 1 10 0v3", key: "1pqi11" }]
];
var LockKeyhole = createLucideIcon("lock-keyhole", __iconNode889);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lock-open.js
var __iconNode890 = [
["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2", key: "1w4ew1" }],
["path", { d: "M7 11V7a5 5 0 0 1 9.9-1", key: "1mm8w8" }]
];
var LockOpen = createLucideIcon("lock-open", __iconNode890);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/log-in.js
var __iconNode891 = [
["path", { d: "m10 17 5-5-5-5", key: "1bsop3" }],
["path", { d: "M15 12H3", key: "6jk70r" }],
["path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4", key: "u53s6r" }]
];
var LogIn = createLucideIcon("log-in", __iconNode891);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lock.js
var __iconNode892 = [
["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2", key: "1w4ew1" }],
["path", { d: "M7 11V7a5 5 0 0 1 10 0v4", key: "fwvmzm" }]
];
var Lock = createLucideIcon("lock", __iconNode892);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/log-out.js
var __iconNode893 = [
["path", { d: "m16 17 5-5-5-5", key: "1bji2h" }],
["path", { d: "M21 12H9", key: "dn1m92" }],
["path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4", key: "1uf3rs" }]
];
var LogOut = createLucideIcon("log-out", __iconNode893);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/logs.js
var __iconNode894 = [
["path", { d: "M13 12h8", key: "h98zly" }],
["path", { d: "M13 18h8", key: "oe0vm4" }],
["path", { d: "M13 6h8", key: "15sg57" }],
["path", { d: "M3 12h1", key: "lp3yf2" }],
["path", { d: "M3 18h1", key: "1eiwyy" }],
["path", { d: "M3 6h1", key: "rgxa97" }],
["path", { d: "M8 12h1", key: "1con00" }],
["path", { d: "M8 18h1", key: "13wk12" }],
["path", { d: "M8 6h1", key: "tn6mkg" }]
];
var Logs = createLucideIcon("logs", __iconNode894);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/lollipop.js
var __iconNode895 = [
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }],
["path", { d: "M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0", key: "107gwy" }]
];
var Lollipop = createLucideIcon("lollipop", __iconNode895);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/luggage.js
var __iconNode896 = [
[
"path",
{ d: "M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2", key: "1m57jg" }
],
["path", { d: "M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14", key: "1l99gc" }],
["path", { d: "M10 20h4", key: "ni2waw" }],
["circle", { cx: "16", cy: "20", r: "2", key: "1vifvg" }],
["circle", { cx: "8", cy: "20", r: "2", key: "ckkr5m" }]
];
var Luggage = createLucideIcon("luggage", __iconNode896);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/magnet.js
var __iconNode897 = [
[
"path",
{
d: "m6 15-4-4 6.75-6.77a7.79 7.79 0 0 1 11 11L13 22l-4-4 6.39-6.36a2.14 2.14 0 0 0-3-3L6 15",
key: "1i3lhw"
}
],
["path", { d: "m5 8 4 4", key: "j6kj7e" }],
["path", { d: "m12 15 4 4", key: "lnac28" }]
];
var Magnet = createLucideIcon("magnet", __iconNode897);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mail-check.js
var __iconNode898 = [
["path", { d: "M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8", key: "12jkf8" }],
["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7", key: "1ocrg3" }],
["path", { d: "m16 19 2 2 4-4", key: "1b14m6" }]
];
var MailCheck = createLucideIcon("mail-check", __iconNode898);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mail-minus.js
var __iconNode899 = [
["path", { d: "M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8", key: "fuxbkv" }],
["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7", key: "1ocrg3" }],
["path", { d: "M16 19h6", key: "xwg31i" }]
];
var MailMinus = createLucideIcon("mail-minus", __iconNode899);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mail-open.js
var __iconNode900 = [
[
"path",
{
d: "M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z",
key: "1jhwl8"
}
],
["path", { d: "m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10", key: "1qfld7" }]
];
var MailOpen = createLucideIcon("mail-open", __iconNode900);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mail-plus.js
var __iconNode901 = [
["path", { d: "M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8", key: "12jkf8" }],
["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7", key: "1ocrg3" }],
["path", { d: "M19 16v6", key: "tddt3s" }],
["path", { d: "M16 19h6", key: "xwg31i" }]
];
var MailPlus = createLucideIcon("mail-plus", __iconNode901);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mail-question-mark.js
var __iconNode902 = [
["path", { d: "M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5", key: "e61zoh" }],
["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7", key: "1ocrg3" }],
[
"path",
{
d: "M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2",
key: "7z9rxb"
}
],
["path", { d: "M20 22v.01", key: "12bgn6" }]
];
var MailQuestionMark = createLucideIcon("mail-question-mark", __iconNode902);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mail-search.js
var __iconNode903 = [
["path", { d: "M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5", key: "w80f2v" }],
["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7", key: "1ocrg3" }],
["path", { d: "M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", key: "8lzu5m" }],
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }],
["path", { d: "m22 22-1.5-1.5", key: "1x83k4" }]
];
var MailSearch = createLucideIcon("mail-search", __iconNode903);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mail-warning.js
var __iconNode904 = [
["path", { d: "M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5", key: "e61zoh" }],
["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7", key: "1ocrg3" }],
["path", { d: "M20 14v4", key: "1hm744" }],
["path", { d: "M20 22v.01", key: "12bgn6" }]
];
var MailWarning = createLucideIcon("mail-warning", __iconNode904);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mail-x.js
var __iconNode905 = [
["path", { d: "M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9", key: "1j9vog" }],
["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7", key: "1ocrg3" }],
["path", { d: "m17 17 4 4", key: "1b3523" }],
["path", { d: "m21 17-4 4", key: "uinynz" }]
];
var MailX = createLucideIcon("mail-x", __iconNode905);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mail.js
var __iconNode906 = [
["path", { d: "m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7", key: "132q7q" }],
["rect", { x: "2", y: "4", width: "20", height: "16", rx: "2", key: "izxlao" }]
];
var Mail = createLucideIcon("mail", __iconNode906);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mailbox.js
var __iconNode907 = [
[
"path",
{
d: "M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z",
key: "1lbycx"
}
],
["polyline", { points: "15,9 18,9 18,11", key: "1pm9c0" }],
["path", { d: "M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2", key: "15i455" }],
["line", { x1: "6", x2: "7", y1: "10", y2: "10", key: "1e2scm" }]
];
var Mailbox = createLucideIcon("mailbox", __iconNode907);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mails.js
var __iconNode908 = [
["rect", { width: "16", height: "13", x: "6", y: "4", rx: "2", key: "1drq3f" }],
["path", { d: "m22 7-7.1 3.78c-.57.3-1.23.3-1.8 0L6 7", key: "xn252p" }],
["path", { d: "M2 8v11c0 1.1.9 2 2 2h14", key: "n13cji" }]
];
var Mails = createLucideIcon("mails", __iconNode908);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-check-inside.js
var __iconNode909 = [
[
"path",
{
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
key: "1r0f0z"
}
],
["path", { d: "m9 10 2 2 4-4", key: "1gnqz4" }]
];
var MapPinCheckInside = createLucideIcon("map-pin-check-inside", __iconNode909);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-check.js
var __iconNode910 = [
[
"path",
{
d: "M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728",
key: "1dq61d"
}
],
["circle", { cx: "12", cy: "10", r: "3", key: "ilqhr7" }],
["path", { d: "m16 18 2 2 4-4", key: "1mkfmb" }]
];
var MapPinCheck = createLucideIcon("map-pin-check", __iconNode910);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-house.js
var __iconNode911 = [
[
"path",
{
d: "M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z",
key: "1p1rcz"
}
],
[
"path",
{
d: "M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2",
key: "mcbcs9"
}
],
["path", { d: "M18 22v-3", key: "1t1ugv" }],
["circle", { cx: "10", cy: "10", r: "3", key: "1ns7v1" }]
];
var MapPinHouse = createLucideIcon("map-pin-house", __iconNode911);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-minus-inside.js
var __iconNode912 = [
[
"path",
{
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
key: "1r0f0z"
}
],
["path", { d: "M9 10h6", key: "9gxzsh" }]
];
var MapPinMinusInside = createLucideIcon("map-pin-minus-inside", __iconNode912);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-minus.js
var __iconNode913 = [
[
"path",
{
d: "M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",
key: "11uxia"
}
],
["circle", { cx: "12", cy: "10", r: "3", key: "ilqhr7" }],
["path", { d: "M16 18h6", key: "987eiv" }]
];
var MapPinMinus = createLucideIcon("map-pin-minus", __iconNode913);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-off.js
var __iconNode914 = [
["path", { d: "M12.75 7.09a3 3 0 0 1 2.16 2.16", key: "1d4wjd" }],
[
"path",
{
d: "M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568",
key: "12yil7"
}
],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533", key: "lhrkcz" }],
["path", { d: "M9.13 9.13a3 3 0 0 0 3.74 3.74", key: "13wojd" }]
];
var MapPinOff = createLucideIcon("map-pin-off", __iconNode914);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-plus-inside.js
var __iconNode915 = [
[
"path",
{
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
key: "1r0f0z"
}
],
["path", { d: "M12 7v6", key: "lw1j43" }],
["path", { d: "M9 10h6", key: "9gxzsh" }]
];
var MapPinPlusInside = createLucideIcon("map-pin-plus-inside", __iconNode915);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-plus.js
var __iconNode916 = [
[
"path",
{
d: "M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",
key: "fcdtly"
}
],
["circle", { cx: "12", cy: "10", r: "3", key: "ilqhr7" }],
["path", { d: "M16 18h6", key: "987eiv" }],
["path", { d: "M19 15v6", key: "10aioa" }]
];
var MapPinPlus = createLucideIcon("map-pin-plus", __iconNode916);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-x-inside.js
var __iconNode917 = [
[
"path",
{
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
key: "1r0f0z"
}
],
["path", { d: "m14.5 7.5-5 5", key: "3lb6iw" }],
["path", { d: "m9.5 7.5 5 5", key: "ko136h" }]
];
var MapPinXInside = createLucideIcon("map-pin-x-inside", __iconNode917);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin-x.js
var __iconNode918 = [
[
"path",
{
d: "M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077",
key: "y0ewhp"
}
],
["circle", { cx: "12", cy: "10", r: "3", key: "ilqhr7" }],
["path", { d: "m21.5 15.5-5 5", key: "11iqnx" }],
["path", { d: "m21.5 20.5-5-5", key: "1bylgx" }]
];
var MapPinX = createLucideIcon("map-pin-x", __iconNode918);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pin.js
var __iconNode919 = [
[
"path",
{
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
key: "1r0f0z"
}
],
["circle", { cx: "12", cy: "10", r: "3", key: "ilqhr7" }]
];
var MapPin = createLucideIcon("map-pin", __iconNode919);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-pinned.js
var __iconNode920 = [
[
"path",
{
d: "M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0",
key: "11u0oz"
}
],
["circle", { cx: "12", cy: "8", r: "2", key: "1822b1" }],
[
"path",
{
d: "M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712",
key: "q8zwxj"
}
]
];
var MapPinned = createLucideIcon("map-pinned", __iconNode920);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map-plus.js
var __iconNode921 = [
[
"path",
{
d: "m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12",
key: "svfegj"
}
],
["path", { d: "M15 5.764V12", key: "1ocw4k" }],
["path", { d: "M18 15v6", key: "9wciyi" }],
["path", { d: "M21 18h-6", key: "139f0c" }],
["path", { d: "M9 3.236v15", key: "1uimfh" }]
];
var MapPlus = createLucideIcon("map-plus", __iconNode921);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/map.js
var __iconNode922 = [
[
"path",
{
d: "M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z",
key: "169xi5"
}
],
["path", { d: "M15 5.764v15", key: "1pn4in" }],
["path", { d: "M9 3.236v15", key: "1uimfh" }]
];
var Map2 = createLucideIcon("map", __iconNode922);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mars-stroke.js
var __iconNode923 = [
["path", { d: "m14 6 4 4", key: "1q72g9" }],
["path", { d: "M17 3h4v4", key: "19p9u1" }],
["path", { d: "m21 3-7.75 7.75", key: "1cjbfd" }],
["circle", { cx: "9", cy: "15", r: "6", key: "bx5svt" }]
];
var MarsStroke = createLucideIcon("mars-stroke", __iconNode923);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mars.js
var __iconNode924 = [
["path", { d: "M16 3h5v5", key: "1806ms" }],
["path", { d: "m21 3-6.75 6.75", key: "pv0uzu" }],
["circle", { cx: "10", cy: "14", r: "6", key: "1qwbdc" }]
];
var Mars = createLucideIcon("mars", __iconNode924);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/maximize-2.js
var __iconNode925 = [
["path", { d: "M15 3h6v6", key: "1q9fwt" }],
["path", { d: "m21 3-7 7", key: "1l2asr" }],
["path", { d: "m3 21 7-7", key: "tjx5ai" }],
["path", { d: "M9 21H3v-6", key: "wtvkvv" }]
];
var Maximize2 = createLucideIcon("maximize-2", __iconNode925);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/martini.js
var __iconNode926 = [
["path", { d: "M8 22h8", key: "rmew8v" }],
["path", { d: "M12 11v11", key: "ur9y6a" }],
["path", { d: "m19 3-7 8-7-8Z", key: "1sgpiw" }]
];
var Martini = createLucideIcon("martini", __iconNode926);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/maximize.js
var __iconNode927 = [
["path", { d: "M8 3H5a2 2 0 0 0-2 2v3", key: "1dcmit" }],
["path", { d: "M21 8V5a2 2 0 0 0-2-2h-3", key: "1e4gt3" }],
["path", { d: "M3 16v3a2 2 0 0 0 2 2h3", key: "wsl5sc" }],
["path", { d: "M16 21h3a2 2 0 0 0 2-2v-3", key: "18trek" }]
];
var Maximize = createLucideIcon("maximize", __iconNode927);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/medal.js
var __iconNode928 = [
[
"path",
{
d: "M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15",
key: "143lza"
}
],
["path", { d: "M11 12 5.12 2.2", key: "qhuxz6" }],
["path", { d: "m13 12 5.88-9.8", key: "hbye0f" }],
["path", { d: "M8 7h8", key: "i86dvs" }],
["circle", { cx: "12", cy: "17", r: "5", key: "qbz8iq" }],
["path", { d: "M12 18v-2h-.5", key: "fawc4q" }]
];
var Medal = createLucideIcon("medal", __iconNode928);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/megaphone-off.js
var __iconNode929 = [
["path", { d: "M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344", key: "bycexp" }],
[
"path",
{ d: "M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1", key: "1t17s6" }
],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14", key: "1853fq" }],
["path", { d: "M8 8v6", key: "aieo6v" }]
];
var MegaphoneOff = createLucideIcon("megaphone-off", __iconNode929);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/megaphone.js
var __iconNode930 = [
[
"path",
{
d: "M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",
key: "q8bfy3"
}
],
["path", { d: "M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14", key: "1853fq" }],
["path", { d: "M8 6v8", key: "15ugcq" }]
];
var Megaphone = createLucideIcon("megaphone", __iconNode930);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/meh.js
var __iconNode931 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["line", { x1: "8", x2: "16", y1: "15", y2: "15", key: "1xb1d9" }],
["line", { x1: "9", x2: "9.01", y1: "9", y2: "9", key: "yxxnd0" }],
["line", { x1: "15", x2: "15.01", y1: "9", y2: "9", key: "1p4y9e" }]
];
var Meh = createLucideIcon("meh", __iconNode931);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/memory-stick.js
var __iconNode932 = [
["path", { d: "M6 19v-3", key: "1nvgqn" }],
["path", { d: "M10 19v-3", key: "iu8nkm" }],
["path", { d: "M14 19v-3", key: "kcehxu" }],
["path", { d: "M18 19v-3", key: "1vh91z" }],
["path", { d: "M8 11V9", key: "63erz4" }],
["path", { d: "M16 11V9", key: "fru6f3" }],
["path", { d: "M12 11V9", key: "ha00sb" }],
["path", { d: "M2 15h20", key: "16ne18" }],
[
"path",
{
d: "M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z",
key: "lhddv3"
}
]
];
var MemoryStick = createLucideIcon("memory-stick", __iconNode932);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/menu.js
var __iconNode933 = [
["path", { d: "M4 12h16", key: "1lakjw" }],
["path", { d: "M4 18h16", key: "19g7jn" }],
["path", { d: "M4 6h16", key: "1o0s65" }]
];
var Menu2 = createLucideIcon("menu", __iconNode933);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/merge.js
var __iconNode934 = [
["path", { d: "m8 6 4-4 4 4", key: "ybng9g" }],
["path", { d: "M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22", key: "1hyw0i" }],
["path", { d: "m20 22-5-5", key: "1m27yz" }]
];
var Merge = createLucideIcon("merge", __iconNode934);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-code.js
var __iconNode935 = [
["path", { d: "M10 9.5 8 12l2 2.5", key: "3mjy60" }],
["path", { d: "m14 9.5 2 2.5-2 2.5", key: "1bir2l" }],
["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22z", key: "k85zhp" }]
];
var MessageCircleCode = createLucideIcon("message-circle-code", __iconNode935);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-heart.js
var __iconNode936 = [
["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z", key: "vv11sd" }],
[
"path",
{
d: "M15.8 9.2a2.5 2.5 0 0 0-3.5 0l-.3.4-.35-.3a2.42 2.42 0 1 0-3.2 3.6l3.6 3.5 3.6-3.5c1.2-1.2 1.1-2.7.2-3.7",
key: "43lnbm"
}
]
];
var MessageCircleHeart = createLucideIcon("message-circle-heart", __iconNode936);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-dashed.js
var __iconNode937 = [
["path", { d: "M13.5 3.1c-.5 0-1-.1-1.5-.1s-1 .1-1.5.1", key: "16ll65" }],
["path", { d: "M19.3 6.8a10.45 10.45 0 0 0-2.1-2.1", key: "1nq77a" }],
["path", { d: "M20.9 13.5c.1-.5.1-1 .1-1.5s-.1-1-.1-1.5", key: "1sf7wn" }],
["path", { d: "M17.2 19.3a10.45 10.45 0 0 0 2.1-2.1", key: "x1hs5g" }],
["path", { d: "M10.5 20.9c.5.1 1 .1 1.5.1s1-.1 1.5-.1", key: "19m18z" }],
["path", { d: "M3.5 17.5 2 22l4.5-1.5", key: "1f36qi" }],
["path", { d: "M3.1 10.5c0 .5-.1 1-.1 1.5s.1 1 .1 1.5", key: "1vz3ju" }],
["path", { d: "M6.8 4.7a10.45 10.45 0 0 0-2.1 2.1", key: "19f9do" }]
];
var MessageCircleDashed = createLucideIcon("message-circle-dashed", __iconNode937);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-more.js
var __iconNode938 = [
["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z", key: "vv11sd" }],
["path", { d: "M8 12h.01", key: "czm47f" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }],
["path", { d: "M16 12h.01", key: "1l6xoz" }]
];
var MessageCircleMore = createLucideIcon("message-circle-more", __iconNode938);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-off.js
var __iconNode939 = [
["path", { d: "M20.5 14.9A9 9 0 0 0 9.1 3.5", key: "1iebmn" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M5.6 5.6C3 8.3 2.2 12.5 4 16l-2 6 6-2c3.4 1.8 7.6 1.1 10.3-1.7", key: "1ov8ce" }]
];
var MessageCircleOff = createLucideIcon("message-circle-off", __iconNode939);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-plus.js
var __iconNode940 = [
["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z", key: "vv11sd" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
["path", { d: "M12 8v8", key: "napkw2" }]
];
var MessageCirclePlus = createLucideIcon("message-circle-plus", __iconNode940);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-question-mark.js
var __iconNode941 = [
["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z", key: "vv11sd" }],
["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3", key: "1u773s" }],
["path", { d: "M12 17h.01", key: "p32p05" }]
];
var MessageCircleQuestionMark = createLucideIcon("message-circle-question-mark", __iconNode941);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-reply.js
var __iconNode942 = [
["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z", key: "vv11sd" }],
["path", { d: "m10 15-3-3 3-3", key: "1pgupc" }],
["path", { d: "M7 12h7a2 2 0 0 1 2 2v1", key: "1gheu4" }]
];
var MessageCircleReply = createLucideIcon("message-circle-reply", __iconNode942);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-warning.js
var __iconNode943 = [
["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z", key: "vv11sd" }],
["path", { d: "M12 8v4", key: "1got3b" }],
["path", { d: "M12 16h.01", key: "1drbdi" }]
];
var MessageCircleWarning = createLucideIcon("message-circle-warning", __iconNode943);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-x.js
var __iconNode944 = [
["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z", key: "vv11sd" }],
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
["path", { d: "m9 9 6 6", key: "z0biqf" }]
];
var MessageCircleX = createLucideIcon("message-circle-x", __iconNode944);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle.js
var __iconNode945 = [
["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z", key: "vv11sd" }]
];
var MessageCircle = createLucideIcon("message-circle", __iconNode945);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-code.js
var __iconNode946 = [
["path", { d: "M10 7.5 8 10l2 2.5", key: "xb17xw" }],
["path", { d: "m14 7.5 2 2.5-2 2.5", key: "5rap1v" }],
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }]
];
var MessageSquareCode = createLucideIcon("message-square-code", __iconNode946);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-dashed.js
var __iconNode947 = [
["path", { d: "M10 17H7l-4 4v-7", key: "1r71xu" }],
["path", { d: "M14 17h1", key: "nufu4t" }],
["path", { d: "M14 3h1", key: "1ec4yj" }],
["path", { d: "M19 3a2 2 0 0 1 2 2", key: "18rm91" }],
["path", { d: "M21 14v1a2 2 0 0 1-2 2", key: "29akq3" }],
["path", { d: "M21 9v1", key: "mxsmne" }],
["path", { d: "M3 9v1", key: "1r0deq" }],
["path", { d: "M5 3a2 2 0 0 0-2 2", key: "y57alp" }],
["path", { d: "M9 3h1", key: "1yesri" }]
];
var MessageSquareDashed = createLucideIcon("message-square-dashed", __iconNode947);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-diff.js
var __iconNode948 = [
["path", { d: "m5 19-2 2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2", key: "1xuzuj" }],
["path", { d: "M9 10h6", key: "9gxzsh" }],
["path", { d: "M12 7v6", key: "lw1j43" }],
["path", { d: "M9 17h6", key: "r8uit2" }]
];
var MessageSquareDiff = createLucideIcon("message-square-diff", __iconNode948);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-dot.js
var __iconNode949 = [
["path", { d: "M11.7 3H5a2 2 0 0 0-2 2v16l4-4h12a2 2 0 0 0 2-2v-2.7", key: "uodpkb" }],
["circle", { cx: "18", cy: "6", r: "3", key: "1h7g24" }]
];
var MessageSquareDot = createLucideIcon("message-square-dot", __iconNode949);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-heart.js
var __iconNode950 = [
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }],
[
"path",
{
d: "M14.8 7.5a1.84 1.84 0 0 0-2.6 0l-.2.3-.3-.3a1.84 1.84 0 1 0-2.4 2.8L12 13l2.7-2.7c.9-.9.8-2.1.1-2.8",
key: "1blaws"
}
]
];
var MessageSquareHeart = createLucideIcon("message-square-heart", __iconNode950);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-lock.js
var __iconNode951 = [
["path", { d: "M19 15v-2a2 2 0 1 0-4 0v2", key: "h3d1vz" }],
["path", { d: "M9 17H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3.5", key: "xsnnhn" }],
["rect", { x: "13", y: "15", width: "8", height: "5", rx: "1", key: "1ccwuk" }]
];
var MessageSquareLock = createLucideIcon("message-square-lock", __iconNode951);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-more.js
var __iconNode952 = [
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }],
["path", { d: "M8 10h.01", key: "19clt8" }],
["path", { d: "M12 10h.01", key: "1nrarc" }],
["path", { d: "M16 10h.01", key: "1m94wz" }]
];
var MessageSquareMore = createLucideIcon("message-square-more", __iconNode952);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-off.js
var __iconNode953 = [
["path", { d: "M21 15V5a2 2 0 0 0-2-2H9", key: "43el77" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M3.6 3.6c-.4.3-.6.8-.6 1.4v16l4-4h10", key: "pwpm4a" }]
];
var MessageSquareOff = createLucideIcon("message-square-off", __iconNode953);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js
var __iconNode954 = [
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }],
["path", { d: "M12 7v6", key: "lw1j43" }],
["path", { d: "M9 10h6", key: "9gxzsh" }]
];
var MessageSquarePlus = createLucideIcon("message-square-plus", __iconNode954);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-quote.js
var __iconNode955 = [
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }],
["path", { d: "M8 12a2 2 0 0 0 2-2V8H8", key: "1jfesj" }],
["path", { d: "M14 12a2 2 0 0 0 2-2V8h-2", key: "1dq9mh" }]
];
var MessageSquareQuote = createLucideIcon("message-square-quote", __iconNode955);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-reply.js
var __iconNode956 = [
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }],
["path", { d: "m10 7-3 3 3 3", key: "1eugdv" }],
["path", { d: "M17 13v-1a2 2 0 0 0-2-2H7", key: "ernfh3" }]
];
var MessageSquareReply = createLucideIcon("message-square-reply", __iconNode956);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-share.js
var __iconNode957 = [
["path", { d: "M21 12v3a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h7", key: "tqtdkg" }],
["path", { d: "M16 3h5v5", key: "1806ms" }],
["path", { d: "m16 8 5-5", key: "15mbrl" }]
];
var MessageSquareShare = createLucideIcon("message-square-share", __iconNode957);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-text.js
var __iconNode958 = [
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }],
["path", { d: "M13 8H7", key: "14i4kc" }],
["path", { d: "M17 12H7", key: "16if0g" }]
];
var MessageSquareText = createLucideIcon("message-square-text", __iconNode958);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-warning.js
var __iconNode959 = [
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }],
["path", { d: "M12 7v2", key: "stiyo7" }],
["path", { d: "M12 13h.01", key: "y0uutt" }]
];
var MessageSquareWarning = createLucideIcon("message-square-warning", __iconNode959);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-x.js
var __iconNode960 = [
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }],
["path", { d: "m14.5 7.5-5 5", key: "3lb6iw" }],
["path", { d: "m9.5 7.5 5 5", key: "ko136h" }]
];
var MessageSquareX = createLucideIcon("message-square-x", __iconNode960);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square.js
var __iconNode961 = [
["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z", key: "1lielz" }]
];
var MessageSquare = createLucideIcon("message-square", __iconNode961);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/messages-square.js
var __iconNode962 = [
["path", { d: "M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z", key: "p1xzt8" }],
["path", { d: "M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1", key: "1cx29u" }]
];
var MessagesSquare = createLucideIcon("messages-square", __iconNode962);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mic-off.js
var __iconNode963 = [
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }],
["path", { d: "M18.89 13.23A7.12 7.12 0 0 0 19 12v-2", key: "80xlxr" }],
["path", { d: "M5 10v2a7 7 0 0 0 12 5", key: "p2k8kg" }],
["path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33", key: "1gzdoj" }],
["path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12", key: "r2i35w" }],
["line", { x1: "12", x2: "12", y1: "19", y2: "22", key: "x3vr5v" }]
];
var MicOff = createLucideIcon("mic-off", __iconNode963);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mic-vocal.js
var __iconNode964 = [
[
"path",
{
d: "m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12",
key: "80a601"
}
],
[
"path",
{
d: "M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5",
key: "j0ngtp"
}
],
["circle", { cx: "16", cy: "7", r: "5", key: "d08jfb" }]
];
var MicVocal = createLucideIcon("mic-vocal", __iconNode964);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mic.js
var __iconNode965 = [
["path", { d: "M12 19v3", key: "npa21l" }],
["path", { d: "M19 10v2a7 7 0 0 1-14 0v-2", key: "1vc78b" }],
["rect", { x: "9", y: "2", width: "6", height: "13", rx: "3", key: "s6n7sd" }]
];
var Mic = createLucideIcon("mic", __iconNode965);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/microchip.js
var __iconNode966 = [
["path", { d: "M18 12h2", key: "quuxs7" }],
["path", { d: "M18 16h2", key: "zsn3lv" }],
["path", { d: "M18 20h2", key: "9x5y9y" }],
["path", { d: "M18 4h2", key: "1luxfb" }],
["path", { d: "M18 8h2", key: "nxqzg" }],
["path", { d: "M4 12h2", key: "1ltxp0" }],
["path", { d: "M4 16h2", key: "8a5zha" }],
["path", { d: "M4 20h2", key: "27dk57" }],
["path", { d: "M4 4h2", key: "10groj" }],
["path", { d: "M4 8h2", key: "18vq6w" }],
[
"path",
{
d: "M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z",
key: "1681fp"
}
]
];
var Microchip = createLucideIcon("microchip", __iconNode966);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/microscope.js
var __iconNode967 = [
["path", { d: "M6 18h8", key: "1borvv" }],
["path", { d: "M3 22h18", key: "8prr45" }],
["path", { d: "M14 22a7 7 0 1 0 0-14h-1", key: "1jwaiy" }],
["path", { d: "M9 14h2", key: "197e7h" }],
["path", { d: "M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z", key: "1bmzmy" }],
["path", { d: "M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3", key: "1drr47" }]
];
var Microscope = createLucideIcon("microscope", __iconNode967);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/microwave.js
var __iconNode968 = [
["rect", { width: "20", height: "15", x: "2", y: "4", rx: "2", key: "2no95f" }],
["rect", { width: "8", height: "7", x: "6", y: "8", rx: "1", key: "zh9wx" }],
["path", { d: "M18 8v7", key: "o5zi4n" }],
["path", { d: "M6 19v2", key: "1loha6" }],
["path", { d: "M18 19v2", key: "1dawf0" }]
];
var Microwave = createLucideIcon("microwave", __iconNode968);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/milestone.js
var __iconNode969 = [
["path", { d: "M12 13v8", key: "1l5pq0" }],
["path", { d: "M12 3v3", key: "1n5kay" }],
[
"path",
{
d: "M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z",
key: "1btarq"
}
]
];
var Milestone = createLucideIcon("milestone", __iconNode969);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/milk-off.js
var __iconNode970 = [
["path", { d: "M8 2h8", key: "1ssgc1" }],
[
"path",
{
d: "M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3",
key: "y0ejgx"
}
],
["path", { d: "M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435", key: "iaxqsy" }],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var MilkOff = createLucideIcon("milk-off", __iconNode970);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/milk.js
var __iconNode971 = [
["path", { d: "M8 2h8", key: "1ssgc1" }],
[
"path",
{
d: "M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2",
key: "qtp12x"
}
],
["path", { d: "M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0", key: "ygeh44" }]
];
var Milk = createLucideIcon("milk", __iconNode971);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/minimize-2.js
var __iconNode972 = [
["path", { d: "m14 10 7-7", key: "oa77jy" }],
["path", { d: "M20 10h-6V4", key: "mjg0md" }],
["path", { d: "m3 21 7-7", key: "tjx5ai" }],
["path", { d: "M4 14h6v6", key: "rmj7iw" }]
];
var Minimize2 = createLucideIcon("minimize-2", __iconNode972);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/minimize.js
var __iconNode973 = [
["path", { d: "M8 3v3a2 2 0 0 1-2 2H3", key: "hohbtr" }],
["path", { d: "M21 8h-3a2 2 0 0 1-2-2V3", key: "5jw1f3" }],
["path", { d: "M3 16h3a2 2 0 0 1 2 2v3", key: "198tvr" }],
["path", { d: "M16 21v-3a2 2 0 0 1 2-2h3", key: "ph8mxp" }]
];
var Minimize = createLucideIcon("minimize", __iconNode973);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/minus.js
var __iconNode974 = [["path", { d: "M5 12h14", key: "1ays0h" }]];
var Minus = createLucideIcon("minus", __iconNode974);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-check.js
var __iconNode975 = [
["path", { d: "m9 10 2 2 4-4", key: "1gnqz4" }],
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "M8 21h8", key: "1ev6f3" }]
];
var MonitorCheck = createLucideIcon("monitor-check", __iconNode975);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-cog.js
var __iconNode976 = [
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "m14.305 7.53.923-.382", key: "1mlnsw" }],
["path", { d: "m15.228 4.852-.923-.383", key: "82mpwg" }],
["path", { d: "m16.852 3.228-.383-.924", key: "ln4sir" }],
["path", { d: "m16.852 8.772-.383.923", key: "1dejw0" }],
["path", { d: "m19.148 3.228.383-.924", key: "192kgf" }],
["path", { d: "m19.53 9.696-.382-.924", key: "fiavlr" }],
["path", { d: "m20.772 4.852.924-.383", key: "1j8mgp" }],
["path", { d: "m20.772 7.148.924.383", key: "zix9be" }],
["path", { d: "M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7", key: "1tnzv8" }],
["path", { d: "M8 21h8", key: "1ev6f3" }],
["circle", { cx: "18", cy: "6", r: "3", key: "1h7g24" }]
];
var MonitorCog = createLucideIcon("monitor-cog", __iconNode976);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-dot.js
var __iconNode977 = [
["circle", { cx: "19", cy: "6", r: "3", key: "108a5v" }],
["path", { d: "M22 12v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9", key: "1fet9y" }],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "M8 21h8", key: "1ev6f3" }]
];
var MonitorDot = createLucideIcon("monitor-dot", __iconNode977);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-down.js
var __iconNode978 = [
["path", { d: "M12 13V7", key: "h0r20n" }],
["path", { d: "m15 10-3 3-3-3", key: "lzhmyn" }],
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "M8 21h8", key: "1ev6f3" }]
];
var MonitorDown = createLucideIcon("monitor-down", __iconNode978);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-off.js
var __iconNode979 = [
["path", { d: "M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2", key: "k0q8oc" }],
["path", { d: "M22 15V5a2 2 0 0 0-2-2H9", key: "cp1ac0" }],
["path", { d: "M8 21h8", key: "1ev6f3" }],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var MonitorOff = createLucideIcon("monitor-off", __iconNode979);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-pause.js
var __iconNode980 = [
["path", { d: "M10 13V7", key: "1u13u9" }],
["path", { d: "M14 13V7", key: "1vj9om" }],
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "M8 21h8", key: "1ev6f3" }]
];
var MonitorPause = createLucideIcon("monitor-pause", __iconNode980);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-play.js
var __iconNode981 = [
[
"path",
{
d: "M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z",
key: "1pctta"
}
],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "M8 21h8", key: "1ev6f3" }],
["rect", { x: "2", y: "3", width: "20", height: "14", rx: "2", key: "x3v2xh" }]
];
var MonitorPlay = createLucideIcon("monitor-play", __iconNode981);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-smartphone.js
var __iconNode982 = [
["path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8", key: "10dyio" }],
["path", { d: "M10 19v-3.96 3.15", key: "1irgej" }],
["path", { d: "M7 19h5", key: "qswx4l" }],
["rect", { width: "6", height: "10", x: "16", y: "12", rx: "2", key: "1egngj" }]
];
var MonitorSmartphone = createLucideIcon("monitor-smartphone", __iconNode982);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-stop.js
var __iconNode983 = [
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "M8 21h8", key: "1ev6f3" }],
["rect", { x: "2", y: "3", width: "20", height: "14", rx: "2", key: "x3v2xh" }],
["rect", { x: "9", y: "7", width: "6", height: "6", rx: "1", key: "5m2oou" }]
];
var MonitorStop = createLucideIcon("monitor-stop", __iconNode983);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-up.js
var __iconNode984 = [
["path", { d: "m9 10 3-3 3 3", key: "11gsxs" }],
["path", { d: "M12 13V7", key: "h0r20n" }],
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "M8 21h8", key: "1ev6f3" }]
];
var MonitorUp = createLucideIcon("monitor-up", __iconNode984);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-speaker.js
var __iconNode985 = [
["path", { d: "M5.5 20H8", key: "1k40s5" }],
["path", { d: "M17 9h.01", key: "1j24nn" }],
["rect", { width: "10", height: "16", x: "12", y: "4", rx: "2", key: "ixliua" }],
["path", { d: "M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4", key: "1mp6e1" }],
["circle", { cx: "17", cy: "15", r: "1", key: "tqvash" }]
];
var MonitorSpeaker = createLucideIcon("monitor-speaker", __iconNode985);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor-x.js
var __iconNode986 = [
["path", { d: "m14.5 12.5-5-5", key: "1jahn5" }],
["path", { d: "m9.5 12.5 5-5", key: "1k2t7b" }],
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "M8 21h8", key: "1ev6f3" }]
];
var MonitorX = createLucideIcon("monitor-x", __iconNode986);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor.js
var __iconNode987 = [
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
["line", { x1: "8", x2: "16", y1: "21", y2: "21", key: "1svkeh" }],
["line", { x1: "12", x2: "12", y1: "17", y2: "21", key: "vw1qmm" }]
];
var Monitor = createLucideIcon("monitor", __iconNode987);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/moon-star.js
var __iconNode988 = [
["path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9", key: "4ay0iu" }],
["path", { d: "M20 3v4", key: "1olli1" }],
["path", { d: "M22 5h-4", key: "1gvqau" }]
];
var MoonStar = createLucideIcon("moon-star", __iconNode988);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/moon.js
var __iconNode989 = [
["path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z", key: "a7tn18" }]
];
var Moon = createLucideIcon("moon", __iconNode989);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mountain-snow.js
var __iconNode990 = [
["path", { d: "m8 3 4 8 5-5 5 15H2L8 3z", key: "otkl63" }],
[
"path",
{ d: "M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19", key: "1pvmmp" }
]
];
var MountainSnow = createLucideIcon("mountain-snow", __iconNode990);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mountain.js
var __iconNode991 = [["path", { d: "m8 3 4 8 5-5 5 15H2L8 3z", key: "otkl63" }]];
var Mountain = createLucideIcon("mountain", __iconNode991);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mouse-off.js
var __iconNode992 = [
["path", { d: "M12 6v.343", key: "1gyhex" }],
["path", { d: "M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218", key: "ukzz01" }],
["path", { d: "M19 13.343V9A7 7 0 0 0 8.56 2.902", key: "104jy9" }],
["path", { d: "M22 22 2 2", key: "1r8tn9" }]
];
var MouseOff = createLucideIcon("mouse-off", __iconNode992);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mouse-pointer-2.js
var __iconNode993 = [
[
"path",
{
d: "M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z",
key: "edeuup"
}
]
];
var MousePointer2 = createLucideIcon("mouse-pointer-2", __iconNode993);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mouse-pointer-click.js
var __iconNode994 = [
["path", { d: "M14 4.1 12 6", key: "ita8i4" }],
["path", { d: "m5.1 8-2.9-.8", key: "1go3kf" }],
["path", { d: "m6 12-1.9 2", key: "mnht97" }],
["path", { d: "M7.2 2.2 8 5.1", key: "1cfko1" }],
[
"path",
{
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",
key: "s0h3yz"
}
]
];
var MousePointerClick = createLucideIcon("mouse-pointer-click", __iconNode994);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mouse-pointer-ban.js
var __iconNode995 = [
[
"path",
{
d: "M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z",
key: "11pp1i"
}
],
["circle", { cx: "16", cy: "16", r: "6", key: "qoo3c4" }],
["path", { d: "m11.8 11.8 8.4 8.4", key: "oogvdj" }]
];
var MousePointerBan = createLucideIcon("mouse-pointer-ban", __iconNode995);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mouse-pointer.js
var __iconNode996 = [
["path", { d: "M12.586 12.586 19 19", key: "ea5xo7" }],
[
"path",
{
d: "M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z",
key: "277e5u"
}
]
];
var MousePointer = createLucideIcon("mouse-pointer", __iconNode996);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/mouse.js
var __iconNode997 = [
["rect", { x: "5", y: "2", width: "14", height: "20", rx: "7", key: "11ol66" }],
["path", { d: "M12 6v4", key: "16clxf" }]
];
var Mouse = createLucideIcon("mouse", __iconNode997);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-3d.js
var __iconNode998 = [
["path", { d: "M5 3v16h16", key: "1mqmf9" }],
["path", { d: "m5 19 6-6", key: "jh6hbb" }],
["path", { d: "m2 6 3-3 3 3", key: "tkyvxa" }],
["path", { d: "m18 16 3 3-3 3", key: "1d4glt" }]
];
var Move3d = createLucideIcon("move-3d", __iconNode998);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-diagonal-2.js
var __iconNode999 = [
["path", { d: "M19 13v6h-6", key: "1hxl6d" }],
["path", { d: "M5 11V5h6", key: "12e2xe" }],
["path", { d: "m5 5 14 14", key: "11anup" }]
];
var MoveDiagonal2 = createLucideIcon("move-diagonal-2", __iconNode999);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-diagonal.js
var __iconNode1000 = [
["path", { d: "M11 19H5v-6", key: "8awifj" }],
["path", { d: "M13 5h6v6", key: "7voy1q" }],
["path", { d: "M19 5 5 19", key: "wwaj1z" }]
];
var MoveDiagonal = createLucideIcon("move-diagonal", __iconNode1000);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-down-left.js
var __iconNode1001 = [
["path", { d: "M11 19H5V13", key: "1akmht" }],
["path", { d: "M19 5L5 19", key: "72u4yj" }]
];
var MoveDownLeft = createLucideIcon("move-down-left", __iconNode1001);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-down-right.js
var __iconNode1002 = [
["path", { d: "M19 13V19H13", key: "10vkzq" }],
["path", { d: "M5 5L19 19", key: "5zm2fv" }]
];
var MoveDownRight = createLucideIcon("move-down-right", __iconNode1002);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-down.js
var __iconNode1003 = [
["path", { d: "M8 18L12 22L16 18", key: "cskvfv" }],
["path", { d: "M12 2V22", key: "r89rzk" }]
];
var MoveDown = createLucideIcon("move-down", __iconNode1003);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-horizontal.js
var __iconNode1004 = [
["path", { d: "m18 8 4 4-4 4", key: "1ak13k" }],
["path", { d: "M2 12h20", key: "9i4pu4" }],
["path", { d: "m6 8-4 4 4 4", key: "15zrgr" }]
];
var MoveHorizontal = createLucideIcon("move-horizontal", __iconNode1004);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-left.js
var __iconNode1005 = [
["path", { d: "M6 8L2 12L6 16", key: "kyvwex" }],
["path", { d: "M2 12H22", key: "1m8cig" }]
];
var MoveLeft = createLucideIcon("move-left", __iconNode1005);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-up-left.js
var __iconNode1006 = [
["path", { d: "M5 11V5H11", key: "3q78g9" }],
["path", { d: "M5 5L19 19", key: "5zm2fv" }]
];
var MoveUpLeft = createLucideIcon("move-up-left", __iconNode1006);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-right.js
var __iconNode1007 = [
["path", { d: "M18 8L22 12L18 16", key: "1r0oui" }],
["path", { d: "M2 12H22", key: "1m8cig" }]
];
var MoveRight = createLucideIcon("move-right", __iconNode1007);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-up-right.js
var __iconNode1008 = [
["path", { d: "M13 5H19V11", key: "1n1gyv" }],
["path", { d: "M19 5L5 19", key: "72u4yj" }]
];
var MoveUpRight = createLucideIcon("move-up-right", __iconNode1008);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-up.js
var __iconNode1009 = [
["path", { d: "M8 6L12 2L16 6", key: "1yvkyx" }],
["path", { d: "M12 2V22", key: "r89rzk" }]
];
var MoveUp = createLucideIcon("move-up", __iconNode1009);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move-vertical.js
var __iconNode1010 = [
["path", { d: "M12 2v20", key: "t6zp3m" }],
["path", { d: "m8 18 4 4 4-4", key: "bh5tu3" }],
["path", { d: "m8 6 4-4 4 4", key: "ybng9g" }]
];
var MoveVertical = createLucideIcon("move-vertical", __iconNode1010);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/move.js
var __iconNode1011 = [
["path", { d: "M12 2v20", key: "t6zp3m" }],
["path", { d: "m15 19-3 3-3-3", key: "11eu04" }],
["path", { d: "m19 9 3 3-3 3", key: "1mg7y2" }],
["path", { d: "M2 12h20", key: "9i4pu4" }],
["path", { d: "m5 9-3 3 3 3", key: "j64kie" }],
["path", { d: "m9 5 3-3 3 3", key: "l8vdw6" }]
];
var Move = createLucideIcon("move", __iconNode1011);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/music-2.js
var __iconNode1012 = [
["circle", { cx: "8", cy: "18", r: "4", key: "1fc0mg" }],
["path", { d: "M12 18V2l7 4", key: "g04rme" }]
];
var Music2 = createLucideIcon("music-2", __iconNode1012);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/music-3.js
var __iconNode1013 = [
["circle", { cx: "12", cy: "18", r: "4", key: "m3r9ws" }],
["path", { d: "M16 18V2", key: "40x2m5" }]
];
var Music3 = createLucideIcon("music-3", __iconNode1013);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/music-4.js
var __iconNode1014 = [
["path", { d: "M9 18V5l12-2v13", key: "1jmyc2" }],
["path", { d: "m9 9 12-2", key: "1e64n2" }],
["circle", { cx: "6", cy: "18", r: "3", key: "fqmcym" }],
["circle", { cx: "18", cy: "16", r: "3", key: "1hluhg" }]
];
var Music4 = createLucideIcon("music-4", __iconNode1014);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/music.js
var __iconNode1015 = [
["path", { d: "M9 18V5l12-2v13", key: "1jmyc2" }],
["circle", { cx: "6", cy: "18", r: "3", key: "fqmcym" }],
["circle", { cx: "18", cy: "16", r: "3", key: "1hluhg" }]
];
var Music = createLucideIcon("music", __iconNode1015);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/navigation-2-off.js
var __iconNode1016 = [
["path", { d: "M9.31 9.31 5 21l7-4 7 4-1.17-3.17", key: "qoq2o2" }],
["path", { d: "M14.53 8.88 12 2l-1.17 3.17", key: "k3sjzy" }],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var Navigation2Off = createLucideIcon("navigation-2-off", __iconNode1016);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/navigation-2.js
var __iconNode1017 = [
["polygon", { points: "12 2 19 21 12 17 5 21 12 2", key: "x8c0qg" }]
];
var Navigation2 = createLucideIcon("navigation-2", __iconNode1017);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/navigation-off.js
var __iconNode1018 = [
["path", { d: "M8.43 8.43 3 11l8 2 2 8 2.57-5.43", key: "1vdtb7" }],
["path", { d: "M17.39 11.73 22 2l-9.73 4.61", key: "tya3r6" }],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var NavigationOff = createLucideIcon("navigation-off", __iconNode1018);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/navigation.js
var __iconNode1019 = [
["polygon", { points: "3 11 22 2 13 21 11 13 3 11", key: "1ltx0t" }]
];
var Navigation = createLucideIcon("navigation", __iconNode1019);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/network.js
var __iconNode1020 = [
["rect", { x: "16", y: "16", width: "6", height: "6", rx: "1", key: "4q2zg0" }],
["rect", { x: "2", y: "16", width: "6", height: "6", rx: "1", key: "8cvhb9" }],
["rect", { x: "9", y: "2", width: "6", height: "6", rx: "1", key: "1egb70" }],
["path", { d: "M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3", key: "1jsf9p" }],
["path", { d: "M12 12V8", key: "2874zd" }]
];
var Network = createLucideIcon("network", __iconNode1020);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/newspaper.js
var __iconNode1021 = [
["path", { d: "M15 18h-5", key: "95g1m2" }],
["path", { d: "M18 14h-8", key: "sponae" }],
[
"path",
{
d: "M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2",
key: "39pd36"
}
],
["rect", { width: "8", height: "4", x: "10", y: "6", rx: "1", key: "aywv1n" }]
];
var Newspaper = createLucideIcon("newspaper", __iconNode1021);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/nfc.js
var __iconNode1022 = [
["path", { d: "M6 8.32a7.43 7.43 0 0 1 0 7.36", key: "9iaqei" }],
["path", { d: "M9.46 6.21a11.76 11.76 0 0 1 0 11.58", key: "1yha7l" }],
["path", { d: "M12.91 4.1a15.91 15.91 0 0 1 .01 15.8", key: "4iu2gk" }],
["path", { d: "M16.37 2a20.16 20.16 0 0 1 0 20", key: "sap9u2" }]
];
var Nfc = createLucideIcon("nfc", __iconNode1022);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/non-binary.js
var __iconNode1023 = [
["path", { d: "M12 2v10", key: "mnfbl" }],
["path", { d: "m8.5 4 7 4", key: "m1xjk3" }],
["path", { d: "m8.5 8 7-4", key: "t0m5j6" }],
["circle", { cx: "12", cy: "17", r: "5", key: "qbz8iq" }]
];
var NonBinary = createLucideIcon("non-binary", __iconNode1023);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/notebook-pen.js
var __iconNode1024 = [
["path", { d: "M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4", key: "re6nr2" }],
["path", { d: "M2 6h4", key: "aawbzj" }],
["path", { d: "M2 10h4", key: "l0bgd4" }],
["path", { d: "M2 14h4", key: "1gsvsf" }],
["path", { d: "M2 18h4", key: "1bu2t1" }],
[
"path",
{
d: "M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "pqwjuv"
}
]
];
var NotebookPen = createLucideIcon("notebook-pen", __iconNode1024);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/notebook-tabs.js
var __iconNode1025 = [
["path", { d: "M2 6h4", key: "aawbzj" }],
["path", { d: "M2 10h4", key: "l0bgd4" }],
["path", { d: "M2 14h4", key: "1gsvsf" }],
["path", { d: "M2 18h4", key: "1bu2t1" }],
["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", key: "1nb95v" }],
["path", { d: "M15 2v20", key: "dcj49h" }],
["path", { d: "M15 7h5", key: "1xj5lc" }],
["path", { d: "M15 12h5", key: "w5shd9" }],
["path", { d: "M15 17h5", key: "1qaofu" }]
];
var NotebookTabs = createLucideIcon("notebook-tabs", __iconNode1025);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/notebook-text.js
var __iconNode1026 = [
["path", { d: "M2 6h4", key: "aawbzj" }],
["path", { d: "M2 10h4", key: "l0bgd4" }],
["path", { d: "M2 14h4", key: "1gsvsf" }],
["path", { d: "M2 18h4", key: "1bu2t1" }],
["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", key: "1nb95v" }],
["path", { d: "M9.5 8h5", key: "11mslq" }],
["path", { d: "M9.5 12H16", key: "ktog6x" }],
["path", { d: "M9.5 16H14", key: "p1seyn" }]
];
var NotebookText = createLucideIcon("notebook-text", __iconNode1026);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/notebook.js
var __iconNode1027 = [
["path", { d: "M2 6h4", key: "aawbzj" }],
["path", { d: "M2 10h4", key: "l0bgd4" }],
["path", { d: "M2 14h4", key: "1gsvsf" }],
["path", { d: "M2 18h4", key: "1bu2t1" }],
["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", key: "1nb95v" }],
["path", { d: "M16 2v20", key: "rotuqe" }]
];
var Notebook = createLucideIcon("notebook", __iconNode1027);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/notepad-text-dashed.js
var __iconNode1028 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M12 2v4", key: "3427ic" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["path", { d: "M16 4h2a2 2 0 0 1 2 2v2", key: "j91f56" }],
["path", { d: "M20 12v2", key: "w8o0tu" }],
["path", { d: "M20 18v2a2 2 0 0 1-2 2h-1", key: "1c9ggx" }],
["path", { d: "M13 22h-2", key: "191ugt" }],
["path", { d: "M7 22H6a2 2 0 0 1-2-2v-2", key: "1rt9px" }],
["path", { d: "M4 14v-2", key: "1v0sqh" }],
["path", { d: "M4 8V6a2 2 0 0 1 2-2h2", key: "1mwabg" }],
["path", { d: "M8 10h6", key: "3oa6kw" }],
["path", { d: "M8 14h8", key: "1fgep2" }],
["path", { d: "M8 18h5", key: "17enja" }]
];
var NotepadTextDashed = createLucideIcon("notepad-text-dashed", __iconNode1028);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/notepad-text.js
var __iconNode1029 = [
["path", { d: "M8 2v4", key: "1cmpym" }],
["path", { d: "M12 2v4", key: "3427ic" }],
["path", { d: "M16 2v4", key: "4m81vk" }],
["rect", { width: "16", height: "18", x: "4", y: "4", rx: "2", key: "1u9h20" }],
["path", { d: "M8 10h6", key: "3oa6kw" }],
["path", { d: "M8 14h8", key: "1fgep2" }],
["path", { d: "M8 18h5", key: "17enja" }]
];
var NotepadText = createLucideIcon("notepad-text", __iconNode1029);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/nut-off.js
var __iconNode1030 = [
["path", { d: "M12 4V2", key: "1k5q1u" }],
[
"path",
{
d: "M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939",
key: "1xcvy9"
}
],
["path", { d: "M19 10v3.343", key: "163tfc" }],
[
"path",
{
d: "M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192",
key: "17914v"
}
],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var NutOff = createLucideIcon("nut-off", __iconNode1030);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/nut.js
var __iconNode1031 = [
["path", { d: "M12 4V2", key: "1k5q1u" }],
[
"path",
{
d: "M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4",
key: "1tgyif"
}
],
[
"path",
{
d: "M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z",
key: "tnsqj"
}
]
];
var Nut = createLucideIcon("nut", __iconNode1031);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/octagon-alert.js
var __iconNode1032 = [
["path", { d: "M12 16h.01", key: "1drbdi" }],
["path", { d: "M12 8v4", key: "1got3b" }],
[
"path",
{
d: "M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z",
key: "1fd625"
}
]
];
var OctagonAlert = createLucideIcon("octagon-alert", __iconNode1032);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/octagon-minus.js
var __iconNode1033 = [
[
"path",
{
d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",
key: "2d38gg"
}
],
["path", { d: "M8 12h8", key: "1wcyev" }]
];
var OctagonMinus = createLucideIcon("octagon-minus", __iconNode1033);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/octagon-pause.js
var __iconNode1034 = [
["path", { d: "M10 15V9", key: "1lckn7" }],
["path", { d: "M14 15V9", key: "1muqhk" }],
[
"path",
{
d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",
key: "2d38gg"
}
]
];
var OctagonPause = createLucideIcon("octagon-pause", __iconNode1034);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/octagon-x.js
var __iconNode1035 = [
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
[
"path",
{
d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",
key: "2d38gg"
}
],
["path", { d: "m9 9 6 6", key: "z0biqf" }]
];
var OctagonX = createLucideIcon("octagon-x", __iconNode1035);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/octagon.js
var __iconNode1036 = [
[
"path",
{
d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",
key: "2d38gg"
}
]
];
var Octagon = createLucideIcon("octagon", __iconNode1036);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/omega.js
var __iconNode1037 = [
[
"path",
{
d: "M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21",
key: "1x94xo"
}
]
];
var Omega = createLucideIcon("omega", __iconNode1037);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/option.js
var __iconNode1038 = [
["path", { d: "M3 3h6l6 18h6", key: "ph9rgk" }],
["path", { d: "M14 3h7", key: "16f0ms" }]
];
var Option = createLucideIcon("option", __iconNode1038);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/orbit.js
var __iconNode1039 = [
["path", { d: "M20.341 6.484A10 10 0 0 1 10.266 21.85", key: "1enhxb" }],
["path", { d: "M3.659 17.516A10 10 0 0 1 13.74 2.152", key: "1crzgf" }],
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }],
["circle", { cx: "19", cy: "5", r: "2", key: "mhkx31" }],
["circle", { cx: "5", cy: "19", r: "2", key: "v8kfzx" }]
];
var Orbit = createLucideIcon("orbit", __iconNode1039);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/origami.js
var __iconNode1040 = [
["path", { d: "M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025", key: "1bx4vc" }],
[
"path",
{
d: "m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009",
key: "1h3km6"
}
],
[
"path",
{
d: "m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027",
key: "1hj4wg"
}
]
];
var Origami = createLucideIcon("origami", __iconNode1040);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package-2.js
var __iconNode1041 = [
["path", { d: "M12 3v6", key: "1holv5" }],
[
"path",
{
d: "M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z",
key: "187q7i"
}
],
["path", { d: "M3.054 9.013h17.893", key: "grwhos" }]
];
var Package2 = createLucideIcon("package-2", __iconNode1041);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package-check.js
var __iconNode1042 = [
["path", { d: "m16 16 2 2 4-4", key: "gfu2re" }],
[
"path",
{
d: "M21 10V8a2 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 0l2-1.14",
key: "e7tb2h"
}
],
["path", { d: "m7.5 4.27 9 5.15", key: "1c824w" }],
["polyline", { points: "3.29 7 12 12 20.71 7", key: "ousv84" }],
["line", { x1: "12", x2: "12", y1: "22", y2: "12", key: "a4e8g8" }]
];
var PackageCheck = createLucideIcon("package-check", __iconNode1042);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package-minus.js
var __iconNode1043 = [
["path", { d: "M16 16h6", key: "100bgy" }],
[
"path",
{
d: "M21 10V8a2 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 0l2-1.14",
key: "e7tb2h"
}
],
["path", { d: "m7.5 4.27 9 5.15", key: "1c824w" }],
["polyline", { points: "3.29 7 12 12 20.71 7", key: "ousv84" }],
["line", { x1: "12", x2: "12", y1: "22", y2: "12", key: "a4e8g8" }]
];
var PackageMinus = createLucideIcon("package-minus", __iconNode1043);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package-open.js
var __iconNode1044 = [
["path", { d: "M12 22v-9", key: "x3hkom" }],
[
"path",
{
d: "M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z",
key: "2ntwy6"
}
],
[
"path",
{
d: "M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13",
key: "1pmm1c"
}
],
[
"path",
{
d: "M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z",
key: "12ttoo"
}
]
];
var PackageOpen = createLucideIcon("package-open", __iconNode1044);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package-plus.js
var __iconNode1045 = [
["path", { d: "M16 16h6", key: "100bgy" }],
["path", { d: "M19 13v6", key: "85cyf1" }],
[
"path",
{
d: "M21 10V8a2 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 0l2-1.14",
key: "e7tb2h"
}
],
["path", { d: "m7.5 4.27 9 5.15", key: "1c824w" }],
["polyline", { points: "3.29 7 12 12 20.71 7", key: "ousv84" }],
["line", { x1: "12", x2: "12", y1: "22", y2: "12", key: "a4e8g8" }]
];
var PackagePlus = createLucideIcon("package-plus", __iconNode1045);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package-search.js
var __iconNode1046 = [
[
"path",
{
d: "M21 10V8a2 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 0l2-1.14",
key: "e7tb2h"
}
],
["path", { d: "m7.5 4.27 9 5.15", key: "1c824w" }],
["polyline", { points: "3.29 7 12 12 20.71 7", key: "ousv84" }],
["line", { x1: "12", x2: "12", y1: "22", y2: "12", key: "a4e8g8" }],
["circle", { cx: "18.5", cy: "15.5", r: "2.5", key: "b5zd12" }],
["path", { d: "M20.27 17.27 22 19", key: "1l4muz" }]
];
var PackageSearch = createLucideIcon("package-search", __iconNode1046);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package-x.js
var __iconNode1047 = [
[
"path",
{
d: "M21 10V8a2 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 0l2-1.14",
key: "e7tb2h"
}
],
["path", { d: "m7.5 4.27 9 5.15", key: "1c824w" }],
["polyline", { points: "3.29 7 12 12 20.71 7", key: "ousv84" }],
["line", { x1: "12", x2: "12", y1: "22", y2: "12", key: "a4e8g8" }],
["path", { d: "m17 13 5 5m-5 0 5-5", key: "im3w4b" }]
];
var PackageX = createLucideIcon("package-x", __iconNode1047);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package.js
var __iconNode1048 = [
[
"path",
{
d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 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.73z",
key: "1a0edw"
}
],
["path", { d: "M12 22V12", key: "d0xqtd" }],
["polyline", { points: "3.29 7 12 12 20.71 7", key: "ousv84" }],
["path", { d: "m7.5 4.27 9 5.15", key: "1c824w" }]
];
var Package = createLucideIcon("package", __iconNode1048);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paint-bucket.js
var __iconNode1049 = [
[
"path",
{ d: "m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z", key: "irua1i" }
],
["path", { d: "m5 2 5 5", key: "1lls2c" }],
["path", { d: "M2 13h15", key: "1hkzvu" }],
["path", { d: "M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z", key: "xk76lq" }]
];
var PaintBucket = createLucideIcon("paint-bucket", __iconNode1049);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paint-roller.js
var __iconNode1050 = [
["rect", { width: "16", height: "6", x: "2", y: "2", rx: "2", key: "jcyz7m" }],
["path", { d: "M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2", key: "1b9h7c" }],
["rect", { width: "4", height: "6", x: "8", y: "16", rx: "1", key: "d6e7yl" }]
];
var PaintRoller = createLucideIcon("paint-roller", __iconNode1050);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paintbrush-vertical.js
var __iconNode1051 = [
["path", { d: "M10 2v2", key: "7u0qdc" }],
["path", { d: "M14 2v4", key: "qmzblu" }],
["path", { d: "M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z", key: "ycvu00" }],
[
"path",
{
d: "M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1",
key: "iw4wnp"
}
]
];
var PaintbrushVertical = createLucideIcon("paintbrush-vertical", __iconNode1051);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paintbrush.js
var __iconNode1052 = [
["path", { d: "m14.622 17.897-10.68-2.913", key: "vj2p1u" }],
[
"path",
{
d: "M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z",
key: "18tc5c"
}
],
[
"path",
{
d: "M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15",
key: "ytzfxy"
}
]
];
var Paintbrush = createLucideIcon("paintbrush", __iconNode1052);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/palette.js
var __iconNode1053 = [
[
"path",
{
d: "M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z",
key: "e79jfc"
}
],
["circle", { cx: "13.5", cy: "6.5", r: ".5", fill: "currentColor", key: "1okk4w" }],
["circle", { cx: "17.5", cy: "10.5", r: ".5", fill: "currentColor", key: "f64h9f" }],
["circle", { cx: "6.5", cy: "12.5", r: ".5", fill: "currentColor", key: "qy21gx" }],
["circle", { cx: "8.5", cy: "7.5", r: ".5", fill: "currentColor", key: "fotxhn" }]
];
var Palette = createLucideIcon("palette", __iconNode1053);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panda.js
var __iconNode1054 = [
["path", { d: "M11.25 17.25h1.5L12 18z", key: "1wmwwj" }],
["path", { d: "m15 12 2 2", key: "k60wz4" }],
["path", { d: "M18 6.5a.5.5 0 0 0-.5-.5", key: "1ch4h4" }],
[
"path",
{
d: "M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83",
key: "1c660l"
}
],
["path", { d: "M6 6.5a.495.495 0 0 1 .5-.5", key: "eviuep" }],
["path", { d: "m9 12-2 2", key: "326nkw" }]
];
var Panda = createLucideIcon("panda", __iconNode1054);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-bottom-close.js
var __iconNode1055 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 15h18", key: "5xshup" }],
["path", { d: "m15 8-3 3-3-3", key: "1oxy1z" }]
];
var PanelBottomClose = createLucideIcon("panel-bottom-close", __iconNode1055);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-bottom-dashed.js
var __iconNode1056 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M14 15h1", key: "171nev" }],
["path", { d: "M19 15h2", key: "1vnucp" }],
["path", { d: "M3 15h2", key: "8bym0q" }],
["path", { d: "M9 15h1", key: "1tg3ks" }]
];
var PanelBottomDashed = createLucideIcon("panel-bottom-dashed", __iconNode1056);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-bottom-open.js
var __iconNode1057 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 15h18", key: "5xshup" }],
["path", { d: "m9 10 3-3 3 3", key: "11gsxs" }]
];
var PanelBottomOpen = createLucideIcon("panel-bottom-open", __iconNode1057);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-bottom.js
var __iconNode1058 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 15h18", key: "5xshup" }]
];
var PanelBottom = createLucideIcon("panel-bottom", __iconNode1058);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-left-dashed.js
var __iconNode1059 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M9 14v1", key: "askpd8" }],
["path", { d: "M9 19v2", key: "16tejx" }],
["path", { d: "M9 3v2", key: "1noubl" }],
["path", { d: "M9 9v1", key: "19ebxg" }]
];
var PanelLeftDashed = createLucideIcon("panel-left-dashed", __iconNode1059);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-left-close.js
var __iconNode1060 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M9 3v18", key: "fh3hqa" }],
["path", { d: "m16 15-3-3 3-3", key: "14y99z" }]
];
var PanelLeftClose = createLucideIcon("panel-left-close", __iconNode1060);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-left-open.js
var __iconNode1061 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M9 3v18", key: "fh3hqa" }],
["path", { d: "m14 9 3 3-3 3", key: "8010ee" }]
];
var PanelLeftOpen = createLucideIcon("panel-left-open", __iconNode1061);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-left.js
var __iconNode1062 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M9 3v18", key: "fh3hqa" }]
];
var PanelLeft = createLucideIcon("panel-left", __iconNode1062);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-right-close.js
var __iconNode1063 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M15 3v18", key: "14nvp0" }],
["path", { d: "m8 9 3 3-3 3", key: "12hl5m" }]
];
var PanelRightClose = createLucideIcon("panel-right-close", __iconNode1063);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-right-dashed.js
var __iconNode1064 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M15 14v1", key: "ilsfch" }],
["path", { d: "M15 19v2", key: "1fst2f" }],
["path", { d: "M15 3v2", key: "z204g4" }],
["path", { d: "M15 9v1", key: "z2a8b1" }]
];
var PanelRightDashed = createLucideIcon("panel-right-dashed", __iconNode1064);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-right-open.js
var __iconNode1065 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M15 3v18", key: "14nvp0" }],
["path", { d: "m10 15-3-3 3-3", key: "1pgupc" }]
];
var PanelRightOpen = createLucideIcon("panel-right-open", __iconNode1065);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-right.js
var __iconNode1066 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M15 3v18", key: "14nvp0" }]
];
var PanelRight = createLucideIcon("panel-right", __iconNode1066);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-top-close.js
var __iconNode1067 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 9h18", key: "1pudct" }],
["path", { d: "m9 16 3-3 3 3", key: "1idcnm" }]
];
var PanelTopClose = createLucideIcon("panel-top-close", __iconNode1067);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-top-dashed.js
var __iconNode1068 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M14 9h1", key: "l0svgy" }],
["path", { d: "M19 9h2", key: "te2zfg" }],
["path", { d: "M3 9h2", key: "1h4ldw" }],
["path", { d: "M9 9h1", key: "15jzuz" }]
];
var PanelTopDashed = createLucideIcon("panel-top-dashed", __iconNode1068);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-top-open.js
var __iconNode1069 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 9h18", key: "1pudct" }],
["path", { d: "m15 14-3 3-3-3", key: "g215vf" }]
];
var PanelTopOpen = createLucideIcon("panel-top-open", __iconNode1069);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panel-top.js
var __iconNode1070 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 9h18", key: "1pudct" }]
];
var PanelTop = createLucideIcon("panel-top", __iconNode1070);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panels-left-bottom.js
var __iconNode1071 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M9 3v18", key: "fh3hqa" }],
["path", { d: "M9 15h12", key: "5ijen5" }]
];
var PanelsLeftBottom = createLucideIcon("panels-left-bottom", __iconNode1071);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panels-right-bottom.js
var __iconNode1072 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 15h12", key: "1wkqb3" }],
["path", { d: "M15 3v18", key: "14nvp0" }]
];
var PanelsRightBottom = createLucideIcon("panels-right-bottom", __iconNode1072);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/panels-top-left.js
var __iconNode1073 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 9h18", key: "1pudct" }],
["path", { d: "M9 21V9", key: "1oto5p" }]
];
var PanelsTopLeft = createLucideIcon("panels-top-left", __iconNode1073);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paperclip.js
var __iconNode1074 = [
[
"path",
{
d: "m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551",
key: "1miecu"
}
]
];
var Paperclip = createLucideIcon("paperclip", __iconNode1074);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/parentheses.js
var __iconNode1075 = [
["path", { d: "M8 21s-4-3-4-9 4-9 4-9", key: "uto9ud" }],
["path", { d: "M16 3s4 3 4 9-4 9-4 9", key: "4w2vsq" }]
];
var Parentheses = createLucideIcon("parentheses", __iconNode1075);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/parking-meter.js
var __iconNode1076 = [
["path", { d: "M11 15h2", key: "199qp6" }],
["path", { d: "M12 12v3", key: "158kv8" }],
["path", { d: "M12 19v3", key: "npa21l" }],
[
"path",
{
d: "M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z",
key: "1jofit"
}
],
["path", { d: "M9 9a3 3 0 1 1 6 0", key: "jdoeu8" }]
];
var ParkingMeter = createLucideIcon("parking-meter", __iconNode1076);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/party-popper.js
var __iconNode1077 = [
["path", { d: "M5.8 11.3 2 22l10.7-3.79", key: "gwxi1d" }],
["path", { d: "M4 3h.01", key: "1vcuye" }],
["path", { d: "M22 8h.01", key: "1mrtc2" }],
["path", { d: "M15 2h.01", key: "1cjtqr" }],
["path", { d: "M22 20h.01", key: "1mrys2" }],
[
"path",
{
d: "m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10",
key: "hbicv8"
}
],
[
"path",
{ d: "m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17", key: "1i94pl" }
],
["path", { d: "m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7", key: "1cofks" }],
[
"path",
{
d: "M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z",
key: "4kbmks"
}
]
];
var PartyPopper = createLucideIcon("party-popper", __iconNode1077);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pause.js
var __iconNode1078 = [
["rect", { x: "14", y: "4", width: "4", height: "16", rx: "1", key: "zuxfzm" }],
["rect", { x: "6", y: "4", width: "4", height: "16", rx: "1", key: "1okwgv" }]
];
var Pause = createLucideIcon("pause", __iconNode1078);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paw-print.js
var __iconNode1079 = [
["circle", { cx: "11", cy: "4", r: "2", key: "vol9p0" }],
["circle", { cx: "18", cy: "8", r: "2", key: "17gozi" }],
["circle", { cx: "20", cy: "16", r: "2", key: "1v9bxh" }],
[
"path",
{
d: "M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z",
key: "1ydw1z"
}
]
];
var PawPrint = createLucideIcon("paw-print", __iconNode1079);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pc-case.js
var __iconNode1080 = [
["rect", { width: "14", height: "20", x: "5", y: "2", rx: "2", key: "1uq1d7" }],
["path", { d: "M15 14h.01", key: "1kp3bh" }],
["path", { d: "M9 6h6", key: "dgm16u" }],
["path", { d: "M9 10h6", key: "9gxzsh" }]
];
var PcCase = createLucideIcon("pc-case", __iconNode1080);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-off.js
var __iconNode1081 = [
[
"path",
{
d: "m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",
key: "bjo8r8"
}
],
["path", { d: "m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353", key: "16h5ne" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var PenOff = createLucideIcon("pen-off", __iconNode1081);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-line.js
var __iconNode1082 = [
["path", { d: "M12 20h9", key: "t2du7b" }],
[
"path",
{
d: "M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z",
key: "1ykcvy"
}
]
];
var PenLine = createLucideIcon("pen-line", __iconNode1082);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-tool.js
var __iconNode1083 = [
[
"path",
{
d: "M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z",
key: "nt11vn"
}
],
[
"path",
{
d: "m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18",
key: "15qc1e"
}
],
["path", { d: "m2.3 2.3 7.286 7.286", key: "1wuzzi" }],
["circle", { cx: "11", cy: "11", r: "2", key: "xmgehs" }]
];
var PenTool = createLucideIcon("pen-tool", __iconNode1083);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen.js
var __iconNode1084 = [
[
"path",
{
d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",
key: "1a8usu"
}
]
];
var Pen = createLucideIcon("pen", __iconNode1084);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pencil-off.js
var __iconNode1085 = [
[
"path",
{
d: "m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",
key: "bjo8r8"
}
],
["path", { d: "m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353", key: "16h5ne" }],
["path", { d: "m15 5 4 4", key: "1mk7zo" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var PencilOff = createLucideIcon("pencil-off", __iconNode1085);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pencil-line.js
var __iconNode1086 = [
["path", { d: "M12 20h9", key: "t2du7b" }],
[
"path",
{
d: "M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z",
key: "1ykcvy"
}
],
["path", { d: "m15 5 3 3", key: "1w25hb" }]
];
var PencilLine = createLucideIcon("pencil-line", __iconNode1086);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pencil-ruler.js
var __iconNode1087 = [
[
"path",
{ d: "M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13", key: "orapub" }
],
["path", { d: "m8 6 2-2", key: "115y1s" }],
["path", { d: "m18 16 2-2", key: "ee94s4" }],
[
"path",
{
d: "m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17",
key: "cfq27r"
}
],
[
"path",
{
d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",
key: "1a8usu"
}
],
["path", { d: "m15 5 4 4", key: "1mk7zo" }]
];
var PencilRuler = createLucideIcon("pencil-ruler", __iconNode1087);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pencil.js
var __iconNode1088 = [
[
"path",
{
d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",
key: "1a8usu"
}
],
["path", { d: "m15 5 4 4", key: "1mk7zo" }]
];
var Pencil = createLucideIcon("pencil", __iconNode1088);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pentagon.js
var __iconNode1089 = [
[
"path",
{
d: "M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z",
key: "2hea0t"
}
]
];
var Pentagon = createLucideIcon("pentagon", __iconNode1089);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/percent.js
var __iconNode1090 = [
["line", { x1: "19", x2: "5", y1: "5", y2: "19", key: "1x9vlm" }],
["circle", { cx: "6.5", cy: "6.5", r: "2.5", key: "4mh3h7" }],
["circle", { cx: "17.5", cy: "17.5", r: "2.5", key: "1mdrzq" }]
];
var Percent = createLucideIcon("percent", __iconNode1090);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/person-standing.js
var __iconNode1091 = [
["circle", { cx: "12", cy: "5", r: "1", key: "gxeob9" }],
["path", { d: "m9 20 3-6 3 6", key: "se2kox" }],
["path", { d: "m6 8 6 2 6-2", key: "4o3us4" }],
["path", { d: "M12 10v4", key: "1kjpxc" }]
];
var PersonStanding = createLucideIcon("person-standing", __iconNode1091);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/philippine-peso.js
var __iconNode1092 = [
["path", { d: "M20 11H4", key: "6ut86h" }],
["path", { d: "M20 7H4", key: "zbl0bi" }],
["path", { d: "M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7", key: "1ana5r" }]
];
var PhilippinePeso = createLucideIcon("philippine-peso", __iconNode1092);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/phone-call.js
var __iconNode1093 = [
["path", { d: "M13 2a9 9 0 0 1 9 9", key: "1itnx2" }],
["path", { d: "M13 6a5 5 0 0 1 5 5", key: "11nki7" }],
[
"path",
{
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
key: "9njp5v"
}
]
];
var PhoneCall = createLucideIcon("phone-call", __iconNode1093);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/phone-forwarded.js
var __iconNode1094 = [
["path", { d: "M14 6h8", key: "yd68k4" }],
["path", { d: "m18 2 4 4-4 4", key: "pucp1d" }],
[
"path",
{
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
key: "9njp5v"
}
]
];
var PhoneForwarded = createLucideIcon("phone-forwarded", __iconNode1094);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/phone-incoming.js
var __iconNode1095 = [
["path", { d: "M16 2v6h6", key: "1mfrl5" }],
["path", { d: "m22 2-6 6", key: "6f0sa0" }],
[
"path",
{
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
key: "9njp5v"
}
]
];
var PhoneIncoming = createLucideIcon("phone-incoming", __iconNode1095);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/phone-missed.js
var __iconNode1096 = [
["path", { d: "m16 2 6 6", key: "1gw87d" }],
["path", { d: "m22 2-6 6", key: "6f0sa0" }],
[
"path",
{
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
key: "9njp5v"
}
]
];
var PhoneMissed = createLucideIcon("phone-missed", __iconNode1096);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/phone-off.js
var __iconNode1097 = [
[
"path",
{
d: "M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272",
key: "1wngk7"
}
],
["path", { d: "M22 2 2 22", key: "y4kqgn" }],
[
"path",
{
d: "M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473",
key: "10hv5p"
}
]
];
var PhoneOff = createLucideIcon("phone-off", __iconNode1097);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/phone-outgoing.js
var __iconNode1098 = [
["path", { d: "m16 8 6-6", key: "oawc05" }],
["path", { d: "M22 8V2h-6", key: "oqy2zc" }],
[
"path",
{
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
key: "9njp5v"
}
]
];
var PhoneOutgoing = createLucideIcon("phone-outgoing", __iconNode1098);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/phone.js
var __iconNode1099 = [
[
"path",
{
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
key: "9njp5v"
}
]
];
var Phone = createLucideIcon("phone", __iconNode1099);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pi.js
var __iconNode1100 = [
["line", { x1: "9", x2: "9", y1: "4", y2: "20", key: "ovs5a5" }],
["path", { d: "M4 7c0-1.7 1.3-3 3-3h13", key: "10pag4" }],
["path", { d: "M18 20c-1.7 0-3-1.3-3-3V4", key: "1gaosr" }]
];
var Pi = createLucideIcon("pi", __iconNode1100);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/piano.js
var __iconNode1101 = [
[
"path",
{
d: "M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8",
key: "lag0yf"
}
],
["path", { d: "M2 14h20", key: "myj16y" }],
["path", { d: "M6 14v4", key: "9ng0ue" }],
["path", { d: "M10 14v4", key: "1v8uk5" }],
["path", { d: "M14 14v4", key: "1tqops" }],
["path", { d: "M18 14v4", key: "18uqwm" }]
];
var Piano = createLucideIcon("piano", __iconNode1101);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pickaxe.js
var __iconNode1102 = [
["path", { d: "M14.531 12.469 6.619 20.38a1 1 0 1 1-3-3l7.912-7.912", key: "we99rg" }],
[
"path",
{
d: "M15.686 4.314A12.5 12.5 0 0 0 5.461 2.958 1 1 0 0 0 5.58 4.71a22 22 0 0 1 6.318 3.393",
key: "1w6hck"
}
],
[
"path",
{
d: "M17.7 3.7a1 1 0 0 0-1.4 0l-4.6 4.6a1 1 0 0 0 0 1.4l2.6 2.6a1 1 0 0 0 1.4 0l4.6-4.6a1 1 0 0 0 0-1.4z",
key: "15hgfx"
}
],
[
"path",
{
d: "M19.686 8.314a12.501 12.501 0 0 1 1.356 10.225 1 1 0 0 1-1.751-.119 22 22 0 0 0-3.393-6.319",
key: "452b4h"
}
]
];
var Pickaxe = createLucideIcon("pickaxe", __iconNode1102);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/picture-in-picture-2.js
var __iconNode1103 = [
["path", { d: "M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4", key: "daa4of" }],
["rect", { width: "10", height: "7", x: "12", y: "13", rx: "2", key: "1nb8gs" }]
];
var PictureInPicture2 = createLucideIcon("picture-in-picture-2", __iconNode1103);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/picture-in-picture.js
var __iconNode1104 = [
["path", { d: "M2 10h6V4", key: "zwrco" }],
["path", { d: "m2 4 6 6", key: "ug085t" }],
["path", { d: "M21 10V7a2 2 0 0 0-2-2h-7", key: "git5jr" }],
["path", { d: "M3 14v2a2 2 0 0 0 2 2h3", key: "1f7fh3" }],
["rect", { x: "12", y: "14", width: "10", height: "7", rx: "1", key: "1wjs3o" }]
];
var PictureInPicture = createLucideIcon("picture-in-picture", __iconNode1104);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/piggy-bank.js
var __iconNode1105 = [
[
"path",
{
d: "M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z",
key: "1piglc"
}
],
["path", { d: "M16 10h.01", key: "1m94wz" }],
["path", { d: "M2 8v1a2 2 0 0 0 2 2h1", key: "1env43" }]
];
var PiggyBank = createLucideIcon("piggy-bank", __iconNode1105);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pilcrow-left.js
var __iconNode1106 = [
["path", { d: "M14 3v11", key: "mlfb7b" }],
["path", { d: "M14 9h-3a3 3 0 0 1 0-6h9", key: "1ulc19" }],
["path", { d: "M18 3v11", key: "1phi0r" }],
["path", { d: "M22 18H2l4-4", key: "yt65j9" }],
["path", { d: "m6 22-4-4", key: "6jgyf5" }]
];
var PilcrowLeft = createLucideIcon("pilcrow-left", __iconNode1106);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pilcrow-right.js
var __iconNode1107 = [
["path", { d: "M10 3v11", key: "o3l5kj" }],
["path", { d: "M10 9H7a1 1 0 0 1 0-6h8", key: "1wb1nc" }],
["path", { d: "M14 3v11", key: "mlfb7b" }],
["path", { d: "m18 14 4 4H2", key: "4r8io1" }],
["path", { d: "m22 18-4 4", key: "1hjjrd" }]
];
var PilcrowRight = createLucideIcon("pilcrow-right", __iconNode1107);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pilcrow.js
var __iconNode1108 = [
["path", { d: "M13 4v16", key: "8vvj80" }],
["path", { d: "M17 4v16", key: "7dpous" }],
["path", { d: "M19 4H9.5a4.5 4.5 0 0 0 0 9H13", key: "sh4n9v" }]
];
var Pilcrow = createLucideIcon("pilcrow", __iconNode1108);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pill-bottle.js
var __iconNode1109 = [
["path", { d: "M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4", key: "17ldeb" }],
["path", { d: "M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7", key: "nc37y6" }],
["rect", { width: "16", height: "5", x: "4", y: "2", rx: "1", key: "3jeezo" }]
];
var PillBottle = createLucideIcon("pill-bottle", __iconNode1109);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pill.js
var __iconNode1110 = [
[
"path",
{ d: "m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z", key: "wa1lgi" }
],
["path", { d: "m8.5 8.5 7 7", key: "rvfmvr" }]
];
var Pill = createLucideIcon("pill", __iconNode1110);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pin-off.js
var __iconNode1111 = [
["path", { d: "M12 17v5", key: "bb1du9" }],
["path", { d: "M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89", key: "znwnzq" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
[
"path",
{
d: "M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11",
key: "c9qhm2"
}
]
];
var PinOff = createLucideIcon("pin-off", __iconNode1111);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pin.js
var __iconNode1112 = [
["path", { d: "M12 17v5", key: "bb1du9" }],
[
"path",
{
d: "M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",
key: "1nkz8b"
}
]
];
var Pin = createLucideIcon("pin", __iconNode1112);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pipette.js
var __iconNode1113 = [
[
"path",
{
d: "m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12",
key: "1y3wsu"
}
],
[
"path",
{
d: "m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z",
key: "110lr1"
}
],
["path", { d: "m2 22 .414-.414", key: "jhxm08" }]
];
var Pipette = createLucideIcon("pipette", __iconNode1113);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pizza.js
var __iconNode1114 = [
["path", { d: "m12 14-1 1", key: "11onhr" }],
["path", { d: "m13.75 18.25-1.25 1.42", key: "1yisr3" }],
["path", { d: "M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12", key: "1qtqk6" }],
["path", { d: "M18.8 9.3a1 1 0 0 0 2.1 7.7", key: "fbbbr2" }],
[
"path",
{
d: "M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z",
key: "1hyfdd"
}
]
];
var Pizza = createLucideIcon("pizza", __iconNode1114);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plane-landing.js
var __iconNode1115 = [
["path", { d: "M2 22h20", key: "272qi7" }],
[
"path",
{
d: "M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z",
key: "1ma21e"
}
]
];
var PlaneLanding = createLucideIcon("plane-landing", __iconNode1115);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plane-takeoff.js
var __iconNode1116 = [
["path", { d: "M2 22h20", key: "272qi7" }],
[
"path",
{
d: "M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z",
key: "fkigj9"
}
]
];
var PlaneTakeoff = createLucideIcon("plane-takeoff", __iconNode1116);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plane.js
var __iconNode1117 = [
[
"path",
{
d: "M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z",
key: "1v9wt8"
}
]
];
var Plane = createLucideIcon("plane", __iconNode1117);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/play.js
var __iconNode1118 = [["polygon", { points: "6 3 20 12 6 21 6 3", key: "1oa8hb" }]];
var Play = createLucideIcon("play", __iconNode1118);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plug-2.js
var __iconNode1119 = [
["path", { d: "M9 2v6", key: "17ngun" }],
["path", { d: "M15 2v6", key: "s7yy2p" }],
["path", { d: "M12 17v5", key: "bb1du9" }],
["path", { d: "M5 8h14", key: "pcz4l3" }],
["path", { d: "M6 11V8h12v3a6 6 0 1 1-12 0Z", key: "wtfw2c" }]
];
var Plug2 = createLucideIcon("plug-2", __iconNode1119);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plug-zap.js
var __iconNode1120 = [
[
"path",
{ d: "M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z", key: "goz73y" }
],
["path", { d: "m2 22 3-3", key: "19mgm9" }],
["path", { d: "M7.5 13.5 10 11", key: "7xgeeb" }],
["path", { d: "M10.5 16.5 13 14", key: "10btkg" }],
["path", { d: "m18 3-4 4h6l-4 4", key: "16psg9" }]
];
var PlugZap = createLucideIcon("plug-zap", __iconNode1120);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plug.js
var __iconNode1121 = [
["path", { d: "M12 22v-5", key: "1ega77" }],
["path", { d: "M9 8V2", key: "14iosj" }],
["path", { d: "M15 8V2", key: "18g5xt" }],
["path", { d: "M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z", key: "osxo6l" }]
];
var Plug = createLucideIcon("plug", __iconNode1121);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plus.js
var __iconNode1122 = [
["path", { d: "M5 12h14", key: "1ays0h" }],
["path", { d: "M12 5v14", key: "s699le" }]
];
var Plus = createLucideIcon("plus", __iconNode1122);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pocket.js
var __iconNode1123 = [
["path", { d: "M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z", key: "1uodqw" }],
["path", { d: "m8 10 4 4 4-4", key: "1mxd5q" }]
];
var Pocket = createLucideIcon("pocket", __iconNode1123);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pocket-knife.js
var __iconNode1124 = [
["path", { d: "M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2", key: "19w3oe" }],
["path", { d: "M18 6h.01", key: "1v4wsw" }],
["path", { d: "M6 18h.01", key: "uhywen" }],
["path", { d: "M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z", key: "6fykxj" }],
["path", { d: "M18 11.66V22a4 4 0 0 0 4-4V6", key: "1utzek" }]
];
var PocketKnife = createLucideIcon("pocket-knife", __iconNode1124);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/podcast.js
var __iconNode1125 = [
["path", { d: "M16.85 18.58a9 9 0 1 0-9.7 0", key: "d71mpg" }],
["path", { d: "M8 14a5 5 0 1 1 8 0", key: "fc81rn" }],
["circle", { cx: "12", cy: "11", r: "1", key: "1gvufo" }],
["path", { d: "M13 17a1 1 0 1 0-2 0l.5 4.5a.5.5 0 1 0 1 0Z", key: "za5kbj" }]
];
var Podcast = createLucideIcon("podcast", __iconNode1125);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pointer-off.js
var __iconNode1126 = [
["path", { d: "M10 4.5V4a2 2 0 0 0-2.41-1.957", key: "jsi14n" }],
["path", { d: "M13.9 8.4a2 2 0 0 0-1.26-1.295", key: "hirc7f" }],
[
"path",
{ d: "M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158", key: "1jxb2e" }
],
[
"path",
{
d: "m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343",
key: "10r7hm"
}
],
["path", { d: "M6 6v8", key: "tv5xkp" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var PointerOff = createLucideIcon("pointer-off", __iconNode1126);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pointer.js
var __iconNode1127 = [
["path", { d: "M22 14a8 8 0 0 1-8 8", key: "56vcr3" }],
["path", { d: "M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2", key: "1agjmk" }],
["path", { d: "M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1", key: "wdbh2u" }],
["path", { d: "M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10", key: "1ibuk9" }],
[
"path",
{
d: "M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",
key: "g6ys72"
}
]
];
var Pointer = createLucideIcon("pointer", __iconNode1127);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/popcorn.js
var __iconNode1128 = [
[
"path",
{
d: "M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4",
key: "10td1f"
}
],
["path", { d: "M10 22 9 8", key: "yjptiv" }],
["path", { d: "m14 22 1-14", key: "8jwc8b" }],
[
"path",
{
d: "M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z",
key: "1qo33t"
}
]
];
var Popcorn = createLucideIcon("popcorn", __iconNode1128);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/popsicle.js
var __iconNode1129 = [
[
"path",
{
d: "M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z",
key: "1o68ps"
}
],
["path", { d: "m22 22-5.5-5.5", key: "17o70y" }]
];
var Popsicle = createLucideIcon("popsicle", __iconNode1129);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pound-sterling.js
var __iconNode1130 = [
["path", { d: "M18 7c0-5.333-8-5.333-8 0", key: "1prm2n" }],
["path", { d: "M10 7v14", key: "18tmcs" }],
["path", { d: "M6 21h12", key: "4dkmi1" }],
["path", { d: "M6 13h10", key: "ybwr4a" }]
];
var PoundSterling = createLucideIcon("pound-sterling", __iconNode1130);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/power-off.js
var __iconNode1131 = [
["path", { d: "M18.36 6.64A9 9 0 0 1 20.77 15", key: "dxknvb" }],
["path", { d: "M6.16 6.16a9 9 0 1 0 12.68 12.68", key: "1x7qb5" }],
["path", { d: "M12 2v4", key: "3427ic" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var PowerOff = createLucideIcon("power-off", __iconNode1131);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/power.js
var __iconNode1132 = [
["path", { d: "M12 2v10", key: "mnfbl" }],
["path", { d: "M18.4 6.6a9 9 0 1 1-12.77.04", key: "obofu9" }]
];
var Power = createLucideIcon("power", __iconNode1132);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/presentation.js
var __iconNode1133 = [
["path", { d: "M2 3h20", key: "91anmk" }],
["path", { d: "M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3", key: "2k9sn8" }],
["path", { d: "m7 21 5-5 5 5", key: "bip4we" }]
];
var Presentation = createLucideIcon("presentation", __iconNode1133);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/printer-check.js
var __iconNode1134 = [
["path", { d: "M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5", key: "qeb09x" }],
["path", { d: "m16 19 2 2 4-4", key: "1b14m6" }],
["path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2", key: "1md90i" }],
["path", { d: "M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6", key: "1itne7" }]
];
var PrinterCheck = createLucideIcon("printer-check", __iconNode1134);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/printer.js
var __iconNode1135 = [
[
"path",
{
d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",
key: "143wyd"
}
],
["path", { d: "M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6", key: "1itne7" }],
["rect", { x: "6", y: "14", width: "12", height: "8", rx: "1", key: "1ue0tg" }]
];
var Printer = createLucideIcon("printer", __iconNode1135);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/projector.js
var __iconNode1136 = [
["path", { d: "M5 7 3 5", key: "1yys58" }],
["path", { d: "M9 6V3", key: "1ptz9u" }],
["path", { d: "m13 7 2-2", key: "1w3vmq" }],
["circle", { cx: "9", cy: "13", r: "3", key: "1mma13" }],
[
"path",
{
d: "M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17",
key: "2frwzc"
}
],
["path", { d: "M16 16h2", key: "dnq2od" }]
];
var Projector = createLucideIcon("projector", __iconNode1136);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/proportions.js
var __iconNode1137 = [
["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2", key: "18n3k1" }],
["path", { d: "M12 9v11", key: "1fnkrn" }],
["path", { d: "M2 9h13a2 2 0 0 1 2 2v9", key: "11z3ex" }]
];
var Proportions = createLucideIcon("proportions", __iconNode1137);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/puzzle.js
var __iconNode1138 = [
[
"path",
{
d: "M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z",
key: "w46dr5"
}
]
];
var Puzzle = createLucideIcon("puzzle", __iconNode1138);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pyramid.js
var __iconNode1139 = [
[
"path",
{
d: "M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z",
key: "aenxs0"
}
],
["path", { d: "M12 2v20", key: "t6zp3m" }]
];
var Pyramid = createLucideIcon("pyramid", __iconNode1139);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/qr-code.js
var __iconNode1140 = [
["rect", { width: "5", height: "5", x: "3", y: "3", rx: "1", key: "1tu5fj" }],
["rect", { width: "5", height: "5", x: "16", y: "3", rx: "1", key: "1v8r4q" }],
["rect", { width: "5", height: "5", x: "3", y: "16", rx: "1", key: "1x03jg" }],
["path", { d: "M21 16h-3a2 2 0 0 0-2 2v3", key: "177gqh" }],
["path", { d: "M21 21v.01", key: "ents32" }],
["path", { d: "M12 7v3a2 2 0 0 1-2 2H7", key: "8crl2c" }],
["path", { d: "M3 12h.01", key: "nlz23k" }],
["path", { d: "M12 3h.01", key: "n36tog" }],
["path", { d: "M12 16v.01", key: "133mhm" }],
["path", { d: "M16 12h1", key: "1slzba" }],
["path", { d: "M21 12v.01", key: "1lwtk9" }],
["path", { d: "M12 21v-1", key: "1880an" }]
];
var QrCode = createLucideIcon("qr-code", __iconNode1140);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/quote.js
var __iconNode1141 = [
[
"path",
{
d: "M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",
key: "rib7q0"
}
],
[
"path",
{
d: "M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",
key: "1ymkrd"
}
]
];
var Quote = createLucideIcon("quote", __iconNode1141);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rabbit.js
var __iconNode1142 = [
["path", { d: "M13 16a3 3 0 0 1 2.24 5", key: "1epib5" }],
["path", { d: "M18 12h.01", key: "yjnet6" }],
[
"path",
{
d: "M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3",
key: "ue9ozu"
}
],
["path", { d: "M20 8.54V4a2 2 0 1 0-4 0v3", key: "49iql8" }],
["path", { d: "M7.612 12.524a3 3 0 1 0-1.6 4.3", key: "1e33i0" }]
];
var Rabbit = createLucideIcon("rabbit", __iconNode1142);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/radar.js
var __iconNode1143 = [
["path", { d: "M19.07 4.93A10 10 0 0 0 6.99 3.34", key: "z3du51" }],
["path", { d: "M4 6h.01", key: "oypzma" }],
["path", { d: "M2.29 9.62A10 10 0 1 0 21.31 8.35", key: "qzzz0" }],
["path", { d: "M16.24 7.76A6 6 0 1 0 8.23 16.67", key: "1yjesh" }],
["path", { d: "M12 18h.01", key: "mhygvu" }],
["path", { d: "M17.99 11.66A6 6 0 0 1 15.77 16.67", key: "1u2y91" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }],
["path", { d: "m13.41 10.59 5.66-5.66", key: "mhq4k0" }]
];
var Radar = createLucideIcon("radar", __iconNode1143);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/radical.js
var __iconNode1144 = [
[
"path",
{
d: "M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21",
key: "1mqj8i"
}
]
];
var Radical = createLucideIcon("radical", __iconNode1144);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/radiation.js
var __iconNode1145 = [
["path", { d: "M12 12h.01", key: "1mp3jc" }],
[
"path",
{
d: "M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z",
key: "1y4lzb"
}
],
[
"path",
{
d: "M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z",
key: "163ggk"
}
],
[
"path",
{
d: "M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z",
key: "1l9i0b"
}
]
];
var Radiation = createLucideIcon("radiation", __iconNode1145);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/radio-receiver.js
var __iconNode1146 = [
["path", { d: "M5 16v2", key: "g5qcv5" }],
["path", { d: "M19 16v2", key: "1gbaio" }],
["rect", { width: "20", height: "8", x: "2", y: "8", rx: "2", key: "vjsjur" }],
["path", { d: "M18 12h.01", key: "yjnet6" }]
];
var RadioReceiver = createLucideIcon("radio-receiver", __iconNode1146);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/radio-tower.js
var __iconNode1147 = [
["path", { d: "M4.9 16.1C1 12.2 1 5.8 4.9 1.9", key: "s0qx1y" }],
["path", { d: "M7.8 4.7a6.14 6.14 0 0 0-.8 7.5", key: "1idnkw" }],
["circle", { cx: "12", cy: "9", r: "2", key: "1092wv" }],
["path", { d: "M16.2 4.8c2 2 2.26 5.11.8 7.47", key: "ojru2q" }],
["path", { d: "M19.1 1.9a9.96 9.96 0 0 1 0 14.1", key: "rhi7fg" }],
["path", { d: "M9.5 18h5", key: "mfy3pd" }],
["path", { d: "m8 22 4-11 4 11", key: "25yftu" }]
];
var RadioTower = createLucideIcon("radio-tower", __iconNode1147);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/radius.js
var __iconNode1148 = [
["path", { d: "M20.34 17.52a10 10 0 1 0-2.82 2.82", key: "fydyku" }],
["circle", { cx: "19", cy: "19", r: "2", key: "17f5cg" }],
["path", { d: "m13.41 13.41 4.18 4.18", key: "1gqbwc" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
];
var Radius = createLucideIcon("radius", __iconNode1148);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/radio.js
var __iconNode1149 = [
["path", { d: "M16.247 7.761a6 6 0 0 1 0 8.478", key: "1fwjs5" }],
["path", { d: "M19.075 4.933a10 10 0 0 1 0 14.134", key: "ehdyv1" }],
["path", { d: "M4.925 19.067a10 10 0 0 1 0-14.134", key: "1q22gi" }],
["path", { d: "M7.753 16.239a6 6 0 0 1 0-8.478", key: "r2q7qm" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
];
var Radio = createLucideIcon("radio", __iconNode1149);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rail-symbol.js
var __iconNode1150 = [
["path", { d: "M5 15h14", key: "m0yey3" }],
["path", { d: "M5 9h14", key: "7tsvo6" }],
["path", { d: "m14 20-5-5 6-6-5-5", key: "1jo42i" }]
];
var RailSymbol = createLucideIcon("rail-symbol", __iconNode1150);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rainbow.js
var __iconNode1151 = [
["path", { d: "M22 17a10 10 0 0 0-20 0", key: "ozegv" }],
["path", { d: "M6 17a6 6 0 0 1 12 0", key: "5giftw" }],
["path", { d: "M10 17a2 2 0 0 1 4 0", key: "gnsikk" }]
];
var Rainbow = createLucideIcon("rainbow", __iconNode1151);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rat.js
var __iconNode1152 = [
["path", { d: "M13 22H4a2 2 0 0 1 0-4h12", key: "bt3f23" }],
["path", { d: "M13.236 18a3 3 0 0 0-2.2-5", key: "1tbvmo" }],
["path", { d: "M16 9h.01", key: "1bdo4e" }],
[
"path",
{
d: "M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3",
key: "9ch7kn"
}
],
["path", { d: "M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18", key: "3s7e9i" }]
];
var Rat = createLucideIcon("rat", __iconNode1152);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ratio.js
var __iconNode1153 = [
["rect", { width: "12", height: "20", x: "6", y: "2", rx: "2", key: "1oxtiu" }],
["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2", key: "9lu3g6" }]
];
var Ratio = createLucideIcon("ratio", __iconNode1153);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/receipt-euro.js
var __iconNode1154 = [
[
"path",
{ d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z", key: "q3az6g" }
],
["path", { d: "M8 12h5", key: "1g6qi8" }],
["path", { d: "M16 9.5a4 4 0 1 0 0 5.2", key: "b2px4r" }]
];
var ReceiptEuro = createLucideIcon("receipt-euro", __iconNode1154);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/receipt-cent.js
var __iconNode1155 = [
[
"path",
{ d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z", key: "q3az6g" }
],
["path", { d: "M12 6.5v11", key: "ecfhkf" }],
["path", { d: "M15 9.4a4 4 0 1 0 0 5.2", key: "1makmb" }]
];
var ReceiptCent = createLucideIcon("receipt-cent", __iconNode1155);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/receipt-indian-rupee.js
var __iconNode1156 = [
[
"path",
{ d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z", key: "q3az6g" }
],
["path", { d: "M8 7h8", key: "i86dvs" }],
["path", { d: "M12 17.5 8 15h1a4 4 0 0 0 0-8", key: "grpkl4" }],
["path", { d: "M8 11h8", key: "vwpz6n" }]
];
var ReceiptIndianRupee = createLucideIcon("receipt-indian-rupee", __iconNode1156);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/receipt-japanese-yen.js
var __iconNode1157 = [
[
"path",
{ d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z", key: "q3az6g" }
],
["path", { d: "m12 10 3-3", key: "1mc12w" }],
["path", { d: "m9 7 3 3v7.5", key: "39i0xv" }],
["path", { d: "M9 11h6", key: "1fldmi" }],
["path", { d: "M9 15h6", key: "cctwl0" }]
];
var ReceiptJapaneseYen = createLucideIcon("receipt-japanese-yen", __iconNode1157);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/receipt-pound-sterling.js
var __iconNode1158 = [
[
"path",
{ d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z", key: "q3az6g" }
],
["path", { d: "M8 13h5", key: "1k9z8w" }],
["path", { d: "M10 17V9.5a2.5 2.5 0 0 1 5 0", key: "1dzgp0" }],
["path", { d: "M8 17h7", key: "8mjdqu" }]
];
var ReceiptPoundSterling = createLucideIcon("receipt-pound-sterling", __iconNode1158);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/receipt-russian-ruble.js
var __iconNode1159 = [
[
"path",
{ d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z", key: "q3az6g" }
],
["path", { d: "M8 15h5", key: "vxg57a" }],
["path", { d: "M8 11h5a2 2 0 1 0 0-4h-3v10", key: "1usi5u" }]
];
var ReceiptRussianRuble = createLucideIcon("receipt-russian-ruble", __iconNode1159);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/receipt-swiss-franc.js
var __iconNode1160 = [
[
"path",
{ d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z", key: "q3az6g" }
],
["path", { d: "M10 17V7h5", key: "k7jq18" }],
["path", { d: "M10 11h4", key: "1i0mka" }],
["path", { d: "M8 15h5", key: "vxg57a" }]
];
var ReceiptSwissFranc = createLucideIcon("receipt-swiss-franc", __iconNode1160);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/receipt-text.js
var __iconNode1161 = [
[
"path",
{ d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z", key: "q3az6g" }
],
["path", { d: "M14 8H8", key: "1l3xfs" }],
["path", { d: "M16 12H8", key: "1fr5h0" }],
["path", { d: "M13 16H8", key: "wsln4y" }]
];
var ReceiptText = createLucideIcon("receipt-text", __iconNode1161);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rectangle-circle.js
var __iconNode1162 = [
["path", { d: "M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z", key: "1m5n7q" }],
["circle", { cx: "14", cy: "12", r: "8", key: "1pag6k" }]
];
var RectangleCircle = createLucideIcon("rectangle-circle", __iconNode1162);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/receipt.js
var __iconNode1163 = [
[
"path",
{ d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z", key: "q3az6g" }
],
["path", { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8", key: "1h4pet" }],
["path", { d: "M12 17.5v-11", key: "1jc1ny" }]
];
var Receipt = createLucideIcon("receipt", __iconNode1163);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rectangle-ellipsis.js
var __iconNode1164 = [
["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2", key: "9lu3g6" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }],
["path", { d: "M17 12h.01", key: "1m0b6t" }],
["path", { d: "M7 12h.01", key: "eqddd0" }]
];
var RectangleEllipsis = createLucideIcon("rectangle-ellipsis", __iconNode1164);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rectangle-goggles.js
var __iconNode1165 = [
[
"path",
{
d: "M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",
key: "d5y1f"
}
]
];
var RectangleGoggles = createLucideIcon("rectangle-goggles", __iconNode1165);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rectangle-horizontal.js
var __iconNode1166 = [
["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2", key: "9lu3g6" }]
];
var RectangleHorizontal = createLucideIcon("rectangle-horizontal", __iconNode1166);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/recycle.js
var __iconNode1167 = [
[
"path",
{
d: "M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5",
key: "x6z5xu"
}
],
[
"path",
{
d: "M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12",
key: "1x4zh5"
}
],
["path", { d: "m14 16-3 3 3 3", key: "f6jyew" }],
["path", { d: "M8.293 13.596 7.196 9.5 3.1 10.598", key: "wf1obh" }],
[
"path",
{
d: "m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843",
key: "9tzpgr"
}
],
["path", { d: "m13.378 9.633 4.096 1.098 1.097-4.096", key: "1oe83g" }]
];
var Recycle = createLucideIcon("recycle", __iconNode1167);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rectangle-vertical.js
var __iconNode1168 = [
["rect", { width: "12", height: "20", x: "6", y: "2", rx: "2", key: "1oxtiu" }]
];
var RectangleVertical = createLucideIcon("rectangle-vertical", __iconNode1168);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/redo-dot.js
var __iconNode1169 = [
["circle", { cx: "12", cy: "17", r: "1", key: "1ixnty" }],
["path", { d: "M21 7v6h-6", key: "3ptur4" }],
["path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7", key: "1kgawr" }]
];
var RedoDot = createLucideIcon("redo-dot", __iconNode1169);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/redo-2.js
var __iconNode1170 = [
["path", { d: "m15 14 5-5-5-5", key: "12vg1m" }],
["path", { d: "M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13", key: "6uklza" }]
];
var Redo2 = createLucideIcon("redo-2", __iconNode1170);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/redo.js
var __iconNode1171 = [
["path", { d: "M21 7v6h-6", key: "3ptur4" }],
["path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7", key: "1kgawr" }]
];
var Redo = createLucideIcon("redo", __iconNode1171);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-ccw-dot.js
var __iconNode1172 = [
["path", { d: "M3 2v6h6", key: "18ldww" }],
["path", { d: "M21 12A9 9 0 0 0 6 5.3L3 8", key: "1pbrqz" }],
["path", { d: "M21 22v-6h-6", key: "usdfbe" }],
["path", { d: "M3 12a9 9 0 0 0 15 6.7l3-2.7", key: "1hosoe" }],
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }]
];
var RefreshCcwDot = createLucideIcon("refresh-ccw-dot", __iconNode1172);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-ccw.js
var __iconNode1173 = [
["path", { d: "M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8", key: "14sxne" }],
["path", { d: "M3 3v5h5", key: "1xhq8a" }],
["path", { d: "M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16", key: "1hlbsb" }],
["path", { d: "M16 16h5v5", key: "ccwih5" }]
];
var RefreshCcw = createLucideIcon("refresh-ccw", __iconNode1173);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw-off.js
var __iconNode1174 = [
["path", { d: "M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47", key: "1krf6h" }],
["path", { d: "M8 16H3v5", key: "1cv678" }],
["path", { d: "M3 12C3 9.51 4 7.26 5.64 5.64", key: "ruvoct" }],
["path", { d: "m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64", key: "19q130" }],
["path", { d: "M21 12c0 1-.16 1.97-.47 2.87", key: "4w8emr" }],
["path", { d: "M21 3v5h-5", key: "1q7to0" }],
["path", { d: "M22 22 2 2", key: "1r8tn9" }]
];
var RefreshCwOff = createLucideIcon("refresh-cw-off", __iconNode1174);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw.js
var __iconNode1175 = [
["path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8", key: "v9h5vc" }],
["path", { d: "M21 3v5h-5", key: "1q7to0" }],
["path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16", key: "3uifl3" }],
["path", { d: "M8 16H3v5", key: "1cv678" }]
];
var RefreshCw = createLucideIcon("refresh-cw", __iconNode1175);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refrigerator.js
var __iconNode1176 = [
[
"path",
{ d: "M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z", key: "fpq118" }
],
["path", { d: "M5 10h14", key: "elsbfy" }],
["path", { d: "M15 7v6", key: "1nx30x" }]
];
var Refrigerator = createLucideIcon("refrigerator", __iconNode1176);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/regex.js
var __iconNode1177 = [
["path", { d: "M17 3v10", key: "15fgeh" }],
["path", { d: "m12.67 5.5 8.66 5", key: "1gpheq" }],
["path", { d: "m12.67 10.5 8.66-5", key: "1dkfa6" }],
[
"path",
{ d: "M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z", key: "swwfx4" }
]
];
var Regex = createLucideIcon("regex", __iconNode1177);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/remove-formatting.js
var __iconNode1178 = [
["path", { d: "M4 7V4h16v3", key: "9msm58" }],
["path", { d: "M5 20h6", key: "1h6pxn" }],
["path", { d: "M13 4 8 20", key: "kqq6aj" }],
["path", { d: "m15 15 5 5", key: "me55sn" }],
["path", { d: "m20 15-5 5", key: "11p7ol" }]
];
var RemoveFormatting = createLucideIcon("remove-formatting", __iconNode1178);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/repeat-2.js
var __iconNode1179 = [
["path", { d: "m2 9 3-3 3 3", key: "1ltn5i" }],
["path", { d: "M13 18H7a2 2 0 0 1-2-2V6", key: "1r6tfw" }],
["path", { d: "m22 15-3 3-3-3", key: "4rnwn2" }],
["path", { d: "M11 6h6a2 2 0 0 1 2 2v10", key: "2f72bc" }]
];
var Repeat2 = createLucideIcon("repeat-2", __iconNode1179);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/repeat.js
var __iconNode1180 = [
["path", { d: "m17 2 4 4-4 4", key: "nntrym" }],
["path", { d: "M3 11v-1a4 4 0 0 1 4-4h14", key: "84bu3i" }],
["path", { d: "m7 22-4-4 4-4", key: "1wqhfi" }],
["path", { d: "M21 13v1a4 4 0 0 1-4 4H3", key: "1rx37r" }]
];
var Repeat = createLucideIcon("repeat", __iconNode1180);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/repeat-1.js
var __iconNode1181 = [
["path", { d: "m17 2 4 4-4 4", key: "nntrym" }],
["path", { d: "M3 11v-1a4 4 0 0 1 4-4h14", key: "84bu3i" }],
["path", { d: "m7 22-4-4 4-4", key: "1wqhfi" }],
["path", { d: "M21 13v1a4 4 0 0 1-4 4H3", key: "1rx37r" }],
["path", { d: "M11 10h1v4", key: "70cz1p" }]
];
var Repeat1 = createLucideIcon("repeat-1", __iconNode1181);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/replace-all.js
var __iconNode1182 = [
["path", { d: "M14 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2", key: "1yyzbs" }],
["path", { d: "M14 4a2 2 0 0 1 2-2", key: "1w2hp7" }],
["path", { d: "M16 10a2 2 0 0 1-2-2", key: "shjach" }],
["path", { d: "M20 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2", key: "zfj4xr" }],
["path", { d: "M20 2a2 2 0 0 1 2 2", key: "188mtx" }],
["path", { d: "M22 8a2 2 0 0 1-2 2", key: "ddf4tu" }],
["path", { d: "m3 7 3 3 3-3", key: "x25e72" }],
["path", { d: "M6 10V5a 3 3 0 0 1 3-3h1", key: "1ageje" }],
["rect", { x: "2", y: "14", width: "8", height: "8", rx: "2", key: "4rksxw" }]
];
var ReplaceAll = createLucideIcon("replace-all", __iconNode1182);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/replace.js
var __iconNode1183 = [
["path", { d: "M14 4a2 2 0 0 1 2-2", key: "1w2hp7" }],
["path", { d: "M16 10a2 2 0 0 1-2-2", key: "shjach" }],
["path", { d: "M20 2a2 2 0 0 1 2 2", key: "188mtx" }],
["path", { d: "M22 8a2 2 0 0 1-2 2", key: "ddf4tu" }],
["path", { d: "m3 7 3 3 3-3", key: "x25e72" }],
["path", { d: "M6 10V5a3 3 0 0 1 3-3h1", key: "3y3t5z" }],
["rect", { x: "2", y: "14", width: "8", height: "8", rx: "2", key: "4rksxw" }]
];
var Replace = createLucideIcon("replace", __iconNode1183);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/reply-all.js
var __iconNode1184 = [
["path", { d: "m12 17-5-5 5-5", key: "1s3y5u" }],
["path", { d: "M22 18v-2a4 4 0 0 0-4-4H7", key: "1fcyog" }],
["path", { d: "m7 17-5-5 5-5", key: "1ed8i2" }]
];
var ReplyAll = createLucideIcon("reply-all", __iconNode1184);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/reply.js
var __iconNode1185 = [
["path", { d: "M20 18v-2a4 4 0 0 0-4-4H4", key: "5vmcpk" }],
["path", { d: "m9 17-5-5 5-5", key: "nvlc11" }]
];
var Reply = createLucideIcon("reply", __iconNode1185);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rewind.js
var __iconNode1186 = [
["polygon", { points: "11 19 2 12 11 5 11 19", key: "14yba5" }],
["polygon", { points: "22 19 13 12 22 5 22 19", key: "1pi1cj" }]
];
var Rewind = createLucideIcon("rewind", __iconNode1186);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ribbon.js
var __iconNode1187 = [
[
"path",
{ d: "M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22", key: "1rnhq3" }
],
["path", { d: "m12 18 2.57-3.5", key: "116vt7" }],
["path", { d: "M6.243 9.016a7 7 0 0 1 11.507-.009", key: "10dq0b" }],
["path", { d: "M9.35 14.53 12 11.22", key: "tdsyp2" }],
[
"path",
{
d: "M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z",
key: "nmifey"
}
]
];
var Ribbon = createLucideIcon("ribbon", __iconNode1187);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rocket.js
var __iconNode1188 = [
[
"path",
{
d: "M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",
key: "m3kijz"
}
],
[
"path",
{
d: "m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",
key: "1fmvmk"
}
],
["path", { d: "M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0", key: "1f8sc4" }],
["path", { d: "M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5", key: "qeys4" }]
];
var Rocket = createLucideIcon("rocket", __iconNode1188);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rocking-chair.js
var __iconNode1189 = [
["polyline", { points: "3.5 2 6.5 12.5 18 12.5", key: "y3iy52" }],
["line", { x1: "9.5", x2: "5.5", y1: "12.5", y2: "20", key: "19vg5i" }],
["line", { x1: "15", x2: "18.5", y1: "12.5", y2: "20", key: "1inpmv" }],
["path", { d: "M2.75 18a13 13 0 0 0 18.5 0", key: "1nquas" }]
];
var RockingChair = createLucideIcon("rocking-chair", __iconNode1189);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/roller-coaster.js
var __iconNode1190 = [
["path", { d: "M6 19V5", key: "1r845m" }],
["path", { d: "M10 19V6.8", key: "9j2tfs" }],
["path", { d: "M14 19v-7.8", key: "10s8qv" }],
["path", { d: "M18 5v4", key: "1tajlv" }],
["path", { d: "M18 19v-6", key: "ielfq3" }],
["path", { d: "M22 19V9", key: "158nzp" }],
["path", { d: "M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65", key: "1930oh" }]
];
var RollerCoaster = createLucideIcon("roller-coaster", __iconNode1190);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-3d.js
var __iconNode1191 = [
[
"path",
{
d: "M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2",
key: "10n0gc"
}
],
["path", { d: "m15.194 13.707 3.814 1.86-1.86 3.814", key: "16shm9" }],
[
"path",
{
d: "M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4",
key: "1lxi77"
}
]
];
var Rotate3d = createLucideIcon("rotate-3d", __iconNode1191);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw-key.js
var __iconNode1192 = [
["path", { d: "m14.5 9.5 1 1", key: "159eiq" }],
["path", { d: "m15.5 8.5-4 4", key: "iirg3q" }],
["path", { d: "M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8", key: "g2jlw" }],
["path", { d: "M3 3v5h5", key: "1xhq8a" }],
["circle", { cx: "10", cy: "14", r: "2", key: "1239so" }]
];
var RotateCcwKey = createLucideIcon("rotate-ccw-key", __iconNode1192);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw-square.js
var __iconNode1193 = [
["path", { d: "M20 9V7a2 2 0 0 0-2-2h-6", key: "19z8uc" }],
["path", { d: "m15 2-3 3 3 3", key: "177bxs" }],
["path", { d: "M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2", key: "d36hnl" }]
];
var RotateCcwSquare = createLucideIcon("rotate-ccw-square", __iconNode1193);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js
var __iconNode1194 = [
["path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8", key: "1357e3" }],
["path", { d: "M3 3v5h5", key: "1xhq8a" }]
];
var RotateCcw = createLucideIcon("rotate-ccw", __iconNode1194);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-cw-square.js
var __iconNode1195 = [
["path", { d: "M12 5H6a2 2 0 0 0-2 2v3", key: "l96uqu" }],
["path", { d: "m9 8 3-3-3-3", key: "1gzgc3" }],
["path", { d: "M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2", key: "1w2k5h" }]
];
var RotateCwSquare = createLucideIcon("rotate-cw-square", __iconNode1195);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-cw.js
var __iconNode1196 = [
["path", { d: "M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8", key: "1p45f6" }],
["path", { d: "M21 3v5h-5", key: "1q7to0" }]
];
var RotateCw = createLucideIcon("rotate-cw", __iconNode1196);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/route-off.js
var __iconNode1197 = [
["circle", { cx: "6", cy: "19", r: "3", key: "1kj8tv" }],
["path", { d: "M9 19h8.5c.4 0 .9-.1 1.3-.2", key: "1effex" }],
["path", { d: "M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12", key: "k9y2ds" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M21 15.3a3.5 3.5 0 0 0-3.3-3.3", key: "11nlu2" }],
["path", { d: "M15 5h-4.3", key: "6537je" }],
["circle", { cx: "18", cy: "5", r: "3", key: "gq8acd" }]
];
var RouteOff = createLucideIcon("route-off", __iconNode1197);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/route.js
var __iconNode1198 = [
["circle", { cx: "6", cy: "19", r: "3", key: "1kj8tv" }],
["path", { d: "M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15", key: "1d8sl" }],
["circle", { cx: "18", cy: "5", r: "3", key: "gq8acd" }]
];
var Route = createLucideIcon("route", __iconNode1198);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/router.js
var __iconNode1199 = [
["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", key: "w68u3i" }],
["path", { d: "M6.01 18H6", key: "19vcac" }],
["path", { d: "M10.01 18H10", key: "uamcmx" }],
["path", { d: "M15 10v4", key: "qjz1xs" }],
["path", { d: "M17.84 7.17a4 4 0 0 0-5.66 0", key: "1rif40" }],
["path", { d: "M20.66 4.34a8 8 0 0 0-11.31 0", key: "6a5xfq" }]
];
var Router = createLucideIcon("router", __iconNode1199);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rows-2.js
var __iconNode1200 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 12h18", key: "1i2n21" }]
];
var Rows2 = createLucideIcon("rows-2", __iconNode1200);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rows-3.js
var __iconNode1201 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M21 9H3", key: "1338ky" }],
["path", { d: "M21 15H3", key: "9uk58r" }]
];
var Rows3 = createLucideIcon("rows-3", __iconNode1201);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rows-4.js
var __iconNode1202 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M21 7.5H3", key: "1hm9pq" }],
["path", { d: "M21 12H3", key: "2avoz0" }],
["path", { d: "M21 16.5H3", key: "n7jzkj" }]
];
var Rows4 = createLucideIcon("rows-4", __iconNode1202);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rss.js
var __iconNode1203 = [
["path", { d: "M4 11a9 9 0 0 1 9 9", key: "pv89mb" }],
["path", { d: "M4 4a16 16 0 0 1 16 16", key: "k0647b" }],
["circle", { cx: "5", cy: "19", r: "1", key: "bfqh0e" }]
];
var Rss = createLucideIcon("rss", __iconNode1203);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ruler-dimension-line.js
var __iconNode1204 = [
["path", { d: "M12 15v-3.014", key: "aw6ppf" }],
["path", { d: "M16 15v-3.014", key: "9e0vc7" }],
["path", { d: "M20 6H4", key: "1lfz86" }],
["path", { d: "M20 8V4", key: "1l2g47" }],
["path", { d: "M4 8V4", key: "sppxzt" }],
["path", { d: "M8 15v-3.014", key: "when08" }],
["rect", { x: "3", y: "12", width: "18", height: "7", rx: "1", key: "1ucwdz" }]
];
var RulerDimensionLine = createLucideIcon("ruler-dimension-line", __iconNode1204);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ruler.js
var __iconNode1205 = [
[
"path",
{
d: "M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z",
key: "icamh8"
}
],
["path", { d: "m14.5 12.5 2-2", key: "inckbg" }],
["path", { d: "m11.5 9.5 2-2", key: "fmmyf7" }],
["path", { d: "m8.5 6.5 2-2", key: "vc6u1g" }],
["path", { d: "m17.5 15.5 2-2", key: "wo5hmg" }]
];
var Ruler = createLucideIcon("ruler", __iconNode1205);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/russian-ruble.js
var __iconNode1206 = [
["path", { d: "M6 11h8a4 4 0 0 0 0-8H9v18", key: "18ai8t" }],
["path", { d: "M6 15h8", key: "1y8f6l" }]
];
var RussianRuble = createLucideIcon("russian-ruble", __iconNode1206);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sailboat.js
var __iconNode1207 = [
["path", { d: "M22 18H2a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4Z", key: "1404fh" }],
["path", { d: "M21 14 10 2 3 14h18Z", key: "1nzg7v" }],
["path", { d: "M10 2v16", key: "1labyt" }]
];
var Sailboat = createLucideIcon("sailboat", __iconNode1207);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/salad.js
var __iconNode1208 = [
["path", { d: "M7 21h10", key: "1b0cd5" }],
["path", { d: "M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z", key: "4rw317" }],
[
"path",
{
d: "M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1",
key: "10xrj0"
}
],
["path", { d: "m13 12 4-4", key: "1hckqy" }],
["path", { d: "M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2", key: "1p4srx" }]
];
var Salad = createLucideIcon("salad", __iconNode1208);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sandwich.js
var __iconNode1209 = [
["path", { d: "m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777", key: "f1wd0e" }],
["path", { d: "M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25", key: "1pfu07" }],
["path", { d: "M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9", key: "1oq9qw" }],
["path", { d: "m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2", key: "1fnwu5" }],
["rect", { width: "20", height: "4", x: "2", y: "11", rx: "1", key: "itshg" }]
];
var Sandwich = createLucideIcon("sandwich", __iconNode1209);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/satellite-dish.js
var __iconNode1210 = [
["path", { d: "M4 10a7.31 7.31 0 0 0 10 10Z", key: "1fzpp3" }],
["path", { d: "m9 15 3-3", key: "88sc13" }],
["path", { d: "M17 13a6 6 0 0 0-6-6", key: "15cc6u" }],
["path", { d: "M21 13A10 10 0 0 0 11 3", key: "11nf8s" }]
];
var SatelliteDish = createLucideIcon("satellite-dish", __iconNode1210);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/satellite.js
var __iconNode1211 = [
[
"path",
{
d: "m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5",
key: "dzhfyz"
}
],
["path", { d: "M16.5 7.5 19 5", key: "1ltcjm" }],
[
"path",
{
d: "m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5",
key: "nfoymv"
}
],
["path", { d: "M9 21a6 6 0 0 0-6-6", key: "1iajcf" }],
[
"path",
{
d: "M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z",
key: "nv9zqy"
}
]
];
var Satellite = createLucideIcon("satellite", __iconNode1211);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/saudi-riyal.js
var __iconNode1212 = [
["path", { d: "m20 19.5-5.5 1.2", key: "1aenhr" }],
["path", { d: "M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2", key: "2rtezt" }],
["path", { d: "m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2", key: "1kbm92" }],
["path", { d: "M20 10 4 13.5", key: "8nums9" }]
];
var SaudiRiyal = createLucideIcon("saudi-riyal", __iconNode1212);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/save-all.js
var __iconNode1213 = [
["path", { d: "M10 2v3a1 1 0 0 0 1 1h5", key: "1xspal" }],
["path", { d: "M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6", key: "1ra60u" }],
["path", { d: "M18 22H4a2 2 0 0 1-2-2V6", key: "pblm9e" }],
[
"path",
{
d: "M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z",
key: "1yve0x"
}
]
];
var SaveAll = createLucideIcon("save-all", __iconNode1213);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/save-off.js
var __iconNode1214 = [
["path", { d: "M13 13H8a1 1 0 0 0-1 1v7", key: "h8g396" }],
["path", { d: "M14 8h1", key: "1lfen6" }],
["path", { d: "M17 21v-4", key: "1yknxs" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
[
"path",
{ d: "M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41", key: "1t4vdl" }
],
["path", { d: "M29.5 11.5s5 5 4 5", key: "zzn4i6" }],
["path", { d: "M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15", key: "24cby9" }]
];
var SaveOff = createLucideIcon("save-off", __iconNode1214);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/save.js
var __iconNode1215 = [
[
"path",
{
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",
key: "1c8476"
}
],
["path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7", key: "1ydtos" }],
["path", { d: "M7 3v4a1 1 0 0 0 1 1h7", key: "t51u73" }]
];
var Save = createLucideIcon("save", __iconNode1215);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scale-3d.js
var __iconNode1216 = [
["path", { d: "M5 7v11a1 1 0 0 0 1 1h11", key: "13dt1j" }],
["path", { d: "M5.293 18.707 11 13", key: "ezgbsx" }],
["circle", { cx: "19", cy: "19", r: "2", key: "17f5cg" }],
["circle", { cx: "5", cy: "5", r: "2", key: "1gwv83" }]
];
var Scale3d = createLucideIcon("scale-3d", __iconNode1216);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scale.js
var __iconNode1217 = [
["path", { d: "m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z", key: "7g6ntu" }],
["path", { d: "m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z", key: "ijws7r" }],
["path", { d: "M7 21h10", key: "1b0cd5" }],
["path", { d: "M12 3v18", key: "108xh3" }],
["path", { d: "M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2", key: "3gwbw2" }]
];
var Scale = createLucideIcon("scale", __iconNode1217);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scaling.js
var __iconNode1218 = [
["path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7", key: "1m0v6g" }],
["path", { d: "M14 15H9v-5", key: "pi4jk9" }],
["path", { d: "M16 3h5v5", key: "1806ms" }],
["path", { d: "M21 3 9 15", key: "15kdhq" }]
];
var Scaling = createLucideIcon("scaling", __iconNode1218);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scan-barcode.js
var __iconNode1219 = [
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }],
["path", { d: "M8 7v10", key: "23sfjj" }],
["path", { d: "M12 7v10", key: "jspqdw" }],
["path", { d: "M17 7v10", key: "578dap" }]
];
var ScanBarcode = createLucideIcon("scan-barcode", __iconNode1219);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scan-eye.js
var __iconNode1220 = [
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }],
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
[
"path",
{
d: "M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",
key: "11ak4c"
}
]
];
var ScanEye = createLucideIcon("scan-eye", __iconNode1220);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scan-face.js
var __iconNode1221 = [
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }],
["path", { d: "M8 14s1.5 2 4 2 4-2 4-2", key: "1y1vjs" }],
["path", { d: "M9 9h.01", key: "1q5me6" }],
["path", { d: "M15 9h.01", key: "x1ddxp" }]
];
var ScanFace = createLucideIcon("scan-face", __iconNode1221);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scan-heart.js
var __iconNode1222 = [
[
"path",
{
d: "M11.246 16.657a1 1 0 0 0 1.508 0l3.57-4.101A2.75 2.75 0 1 0 12 9.168a2.75 2.75 0 1 0-4.324 3.388z",
key: "1algrk"
}
],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }]
];
var ScanHeart = createLucideIcon("scan-heart", __iconNode1222);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scan-line.js
var __iconNode1223 = [
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }],
["path", { d: "M7 12h10", key: "b7w52i" }]
];
var ScanLine = createLucideIcon("scan-line", __iconNode1223);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scan-qr-code.js
var __iconNode1224 = [
["path", { d: "M17 12v4a1 1 0 0 1-1 1h-4", key: "uk4fdo" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M17 8V7", key: "q2g9wo" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M7 17h.01", key: "19xn7k" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }],
["rect", { x: "7", y: "7", width: "5", height: "5", rx: "1", key: "m9kyts" }]
];
var ScanQrCode = createLucideIcon("scan-qr-code", __iconNode1224);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scan-search.js
var __iconNode1225 = [
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }],
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }],
["path", { d: "m16 16-1.9-1.9", key: "1dq9hf" }]
];
var ScanSearch = createLucideIcon("scan-search", __iconNode1225);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scan-text.js
var __iconNode1226 = [
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }],
["path", { d: "M7 8h8", key: "1jbsf9" }],
["path", { d: "M7 12h10", key: "b7w52i" }],
["path", { d: "M7 16h6", key: "1vyc9m" }]
];
var ScanText = createLucideIcon("scan-text", __iconNode1226);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scan.js
var __iconNode1227 = [
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }]
];
var Scan = createLucideIcon("scan", __iconNode1227);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/school.js
var __iconNode1228 = [
["path", { d: "M14 22v-4a2 2 0 1 0-4 0v4", key: "hhkicm" }],
[
"path",
{
d: "m18 10 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7.382a1 1 0 0 1 .553-.894L6 10",
key: "1xqip1"
}
],
["path", { d: "M18 5v17", key: "1sw6gf" }],
["path", { d: "m4 6 7.106-3.553a2 2 0 0 1 1.788 0L20 6", key: "9d2mlk" }],
["path", { d: "M6 5v17", key: "1xfsm0" }],
["circle", { cx: "12", cy: "9", r: "2", key: "1092wv" }]
];
var School = createLucideIcon("school", __iconNode1228);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scissors-line-dashed.js
var __iconNode1229 = [
["path", { d: "M5.42 9.42 8 12", key: "12pkuq" }],
["circle", { cx: "4", cy: "8", r: "2", key: "107mxr" }],
["path", { d: "m14 6-8.58 8.58", key: "gvzu5l" }],
["circle", { cx: "4", cy: "16", r: "2", key: "1ehqvc" }],
["path", { d: "M10.8 14.8 14 18", key: "ax7m9r" }],
["path", { d: "M16 12h-2", key: "10asgb" }],
["path", { d: "M22 12h-2", key: "14jgyd" }]
];
var ScissorsLineDashed = createLucideIcon("scissors-line-dashed", __iconNode1229);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scissors.js
var __iconNode1230 = [
["circle", { cx: "6", cy: "6", r: "3", key: "1lh9wr" }],
["path", { d: "M8.12 8.12 12 12", key: "1alkpv" }],
["path", { d: "M20 4 8.12 15.88", key: "xgtan2" }],
["circle", { cx: "6", cy: "18", r: "3", key: "fqmcym" }],
["path", { d: "M14.8 14.8 20 20", key: "ptml3r" }]
];
var Scissors = createLucideIcon("scissors", __iconNode1230);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/screen-share-off.js
var __iconNode1231 = [
["path", { d: "M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3", key: "i8wdob" }],
["path", { d: "M8 21h8", key: "1ev6f3" }],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "m22 3-5 5", key: "12jva0" }],
["path", { d: "m17 3 5 5", key: "k36vhe" }]
];
var ScreenShareOff = createLucideIcon("screen-share-off", __iconNode1231);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/screen-share.js
var __iconNode1232 = [
["path", { d: "M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3", key: "i8wdob" }],
["path", { d: "M8 21h8", key: "1ev6f3" }],
["path", { d: "M12 17v4", key: "1riwvh" }],
["path", { d: "m17 8 5-5", key: "fqif7o" }],
["path", { d: "M17 3h5v5", key: "1o3tu8" }]
];
var ScreenShare = createLucideIcon("screen-share", __iconNode1232);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scroll-text.js
var __iconNode1233 = [
["path", { d: "M15 12h-5", key: "r7krc0" }],
["path", { d: "M15 8h-5", key: "1khuty" }],
["path", { d: "M19 17V5a2 2 0 0 0-2-2H4", key: "zz82l3" }],
[
"path",
{
d: "M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",
key: "1ph1d7"
}
]
];
var ScrollText = createLucideIcon("scroll-text", __iconNode1233);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/scroll.js
var __iconNode1234 = [
["path", { d: "M19 17V5a2 2 0 0 0-2-2H4", key: "zz82l3" }],
[
"path",
{
d: "M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",
key: "1ph1d7"
}
]
];
var Scroll = createLucideIcon("scroll", __iconNode1234);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search-check.js
var __iconNode1235 = [
["path", { d: "m8 11 2 2 4-4", key: "1sed1v" }],
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
];
var SearchCheck = createLucideIcon("search-check", __iconNode1235);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search-code.js
var __iconNode1236 = [
["path", { d: "m13 13.5 2-2.5-2-2.5", key: "1rvxrh" }],
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }],
["path", { d: "M9 8.5 7 11l2 2.5", key: "6ffwbx" }],
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }]
];
var SearchCode = createLucideIcon("search-code", __iconNode1236);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search-slash.js
var __iconNode1237 = [
["path", { d: "m13.5 8.5-5 5", key: "1cs55j" }],
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
];
var SearchSlash = createLucideIcon("search-slash", __iconNode1237);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search-x.js
var __iconNode1238 = [
["path", { d: "m13.5 8.5-5 5", key: "1cs55j" }],
["path", { d: "m8.5 8.5 5 5", key: "a8mexj" }],
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
];
var SearchX = createLucideIcon("search-x", __iconNode1238);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search.js
var __iconNode1239 = [
["path", { d: "m21 21-4.34-4.34", key: "14j7rj" }],
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }]
];
var Search = createLucideIcon("search", __iconNode1239);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/section.js
var __iconNode1240 = [
["path", { d: "M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0", key: "vqan6v" }],
["path", { d: "M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0", key: "wdjd8o" }]
];
var Section = createLucideIcon("section", __iconNode1240);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send-horizontal.js
var __iconNode1241 = [
[
"path",
{
d: "M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z",
key: "117uat"
}
],
["path", { d: "M6 12h16", key: "s4cdu5" }]
];
var SendHorizontal = createLucideIcon("send-horizontal", __iconNode1241);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send-to-back.js
var __iconNode1242 = [
["rect", { x: "14", y: "14", width: "8", height: "8", rx: "2", key: "1b0bso" }],
["rect", { x: "2", y: "2", width: "8", height: "8", rx: "2", key: "1x09vl" }],
["path", { d: "M7 14v1a2 2 0 0 0 2 2h1", key: "pao6x6" }],
["path", { d: "M14 7h1a2 2 0 0 1 2 2v1", key: "19tdru" }]
];
var SendToBack = createLucideIcon("send-to-back", __iconNode1242);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send.js
var __iconNode1243 = [
[
"path",
{
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",
key: "1ffxy3"
}
],
["path", { d: "m21.854 2.147-10.94 10.939", key: "12cjpa" }]
];
var Send = createLucideIcon("send", __iconNode1243);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/separator-horizontal.js
var __iconNode1244 = [
["path", { d: "m16 16-4 4-4-4", key: "3dv8je" }],
["path", { d: "M3 12h18", key: "1i2n21" }],
["path", { d: "m8 8 4-4 4 4", key: "2bscm2" }]
];
var SeparatorHorizontal = createLucideIcon("separator-horizontal", __iconNode1244);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/separator-vertical.js
var __iconNode1245 = [
["path", { d: "M12 3v18", key: "108xh3" }],
["path", { d: "m16 16 4-4-4-4", key: "1js579" }],
["path", { d: "m8 8-4 4 4 4", key: "1whems" }]
];
var SeparatorVertical = createLucideIcon("separator-vertical", __iconNode1245);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server-cog.js
var __iconNode1246 = [
["path", { d: "m10.852 14.772-.383.923", key: "11vil6" }],
["path", { d: "M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923", key: "1v3clb" }],
["path", { d: "m13.148 9.228.383-.923", key: "t2zzyc" }],
["path", { d: "m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544", key: "1bxfiv" }],
["path", { d: "m14.772 10.852.923-.383", key: "k9m8cz" }],
["path", { d: "m14.772 13.148.923.383", key: "1xvhww" }],
[
"path",
{
d: "M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5",
key: "tn8das"
}
],
[
"path",
{
d: "M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5",
key: "1g2pve"
}
],
["path", { d: "M6 18h.01", key: "uhywen" }],
["path", { d: "M6 6h.01", key: "1utrut" }],
["path", { d: "m9.228 10.852-.923-.383", key: "1wtb30" }],
["path", { d: "m9.228 13.148-.923.383", key: "1a830x" }]
];
var ServerCog = createLucideIcon("server-cog", __iconNode1246);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server-crash.js
var __iconNode1247 = [
[
"path",
{
d: "M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2",
key: "4b9dqc"
}
],
[
"path",
{
d: "M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2",
key: "22nnkd"
}
],
["path", { d: "M6 6h.01", key: "1utrut" }],
["path", { d: "M6 18h.01", key: "uhywen" }],
["path", { d: "m13 6-4 6h6l-4 6", key: "14hqih" }]
];
var ServerCrash = createLucideIcon("server-crash", __iconNode1247);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server-off.js
var __iconNode1248 = [
["path", { d: "M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5", key: "bt2siv" }],
["path", { d: "M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z", key: "1hjrv1" }],
["path", { d: "M22 17v-1a2 2 0 0 0-2-2h-1", key: "1iynyr" }],
["path", { d: "M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z", key: "161ggg" }],
["path", { d: "M6 18h.01", key: "uhywen" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var ServerOff = createLucideIcon("server-off", __iconNode1248);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server.js
var __iconNode1249 = [
["rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2", key: "ngkwjq" }],
["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2", key: "iecqi9" }],
["line", { x1: "6", x2: "6.01", y1: "6", y2: "6", key: "16zg32" }],
["line", { x1: "6", x2: "6.01", y1: "18", y2: "18", key: "nzw8ys" }]
];
var Server = createLucideIcon("server", __iconNode1249);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings-2.js
var __iconNode1250 = [
["path", { d: "M14 17H5", key: "gfn3mx" }],
["path", { d: "M19 7h-9", key: "6i9tg" }],
["circle", { cx: "17", cy: "17", r: "3", key: "18b49y" }],
["circle", { cx: "7", cy: "7", r: "3", key: "dfmy0x" }]
];
var Settings2 = createLucideIcon("settings-2", __iconNode1250);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings.js
var __iconNode1251 = [
[
"path",
{
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",
key: "1qme2f"
}
],
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
];
var Settings = createLucideIcon("settings", __iconNode1251);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shapes.js
var __iconNode1252 = [
[
"path",
{
d: "M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z",
key: "1bo67w"
}
],
["rect", { x: "3", y: "14", width: "7", height: "7", rx: "1", key: "1bkyp8" }],
["circle", { cx: "17.5", cy: "17.5", r: "3.5", key: "w3z12y" }]
];
var Shapes = createLucideIcon("shapes", __iconNode1252);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/share-2.js
var __iconNode1253 = [
["circle", { cx: "18", cy: "5", r: "3", key: "gq8acd" }],
["circle", { cx: "6", cy: "12", r: "3", key: "w7nqdw" }],
["circle", { cx: "18", cy: "19", r: "3", key: "1xt0gg" }],
["line", { x1: "8.59", x2: "15.42", y1: "13.51", y2: "17.49", key: "47mynk" }],
["line", { x1: "15.41", x2: "8.59", y1: "6.51", y2: "10.49", key: "1n3mei" }]
];
var Share2 = createLucideIcon("share-2", __iconNode1253);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/share.js
var __iconNode1254 = [
["path", { d: "M12 2v13", key: "1km8f5" }],
["path", { d: "m16 6-4-4-4 4", key: "13yo43" }],
["path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8", key: "1b2hhj" }]
];
var Share = createLucideIcon("share", __iconNode1254);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sheet.js
var __iconNode1255 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["line", { x1: "3", x2: "21", y1: "9", y2: "9", key: "1vqk6q" }],
["line", { x1: "3", x2: "21", y1: "15", y2: "15", key: "o2sbyz" }],
["line", { x1: "9", x2: "9", y1: "9", y2: "21", key: "1ib60c" }],
["line", { x1: "15", x2: "15", y1: "9", y2: "21", key: "1n26ft" }]
];
var Sheet = createLucideIcon("sheet", __iconNode1255);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shell.js
var __iconNode1256 = [
[
"path",
{
d: "M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44",
key: "1cn552"
}
]
];
var Shell = createLucideIcon("shell", __iconNode1256);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-alert.js
var __iconNode1257 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "M12 8v4", key: "1got3b" }],
["path", { d: "M12 16h.01", key: "1drbdi" }]
];
var ShieldAlert = createLucideIcon("shield-alert", __iconNode1257);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-ban.js
var __iconNode1258 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "m4.243 5.21 14.39 12.472", key: "1c9a7c" }]
];
var ShieldBan = createLucideIcon("shield-ban", __iconNode1258);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-check.js
var __iconNode1259 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
];
var ShieldCheck = createLucideIcon("shield-check", __iconNode1259);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-half.js
var __iconNode1260 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "M12 22V2", key: "zs6s6o" }]
];
var ShieldHalf = createLucideIcon("shield-half", __iconNode1260);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-ellipsis.js
var __iconNode1261 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "M8 12h.01", key: "czm47f" }],
["path", { d: "M12 12h.01", key: "1mp3jc" }],
["path", { d: "M16 12h.01", key: "1l6xoz" }]
];
var ShieldEllipsis = createLucideIcon("shield-ellipsis", __iconNode1261);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-minus.js
var __iconNode1262 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "M9 12h6", key: "1c52cq" }]
];
var ShieldMinus = createLucideIcon("shield-minus", __iconNode1262);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-off.js
var __iconNode1263 = [
["path", { d: "m2 2 20 20", key: "1ooewy" }],
[
"path",
{
d: "M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71",
key: "1jlk70"
}
],
[
"path",
{
d: "M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264",
key: "18rp1v"
}
]
];
var ShieldOff = createLucideIcon("shield-off", __iconNode1263);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-plus.js
var __iconNode1264 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "M9 12h6", key: "1c52cq" }],
["path", { d: "M12 9v6", key: "199k2o" }]
];
var ShieldPlus = createLucideIcon("shield-plus", __iconNode1264);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-user.js
var __iconNode1265 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "M6.376 18.91a6 6 0 0 1 11.249.003", key: "hnjrf2" }],
["circle", { cx: "12", cy: "11", r: "4", key: "1gt34v" }]
];
var ShieldUser = createLucideIcon("shield-user", __iconNode1265);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-question-mark.js
var __iconNode1266 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3", key: "mhlwft" }],
["path", { d: "M12 17h.01", key: "p32p05" }]
];
var ShieldQuestionMark = createLucideIcon("shield-question-mark", __iconNode1266);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield-x.js
var __iconNode1267 = [
[
"path",
{
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",
key: "oel41y"
}
],
["path", { d: "m14.5 9.5-5 5", key: "17q4r4" }],
["path", { d: "m9.5 9.5 5 5", key: "18nt4w" }]
];
var ShieldX = createLucideIcon("shield-x", __iconNode1267);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shield.js
var __iconNode1268 = [
[
"path",
{
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",
key: "oel41y"
}
]
];
var Shield = createLucideIcon("shield", __iconNode1268);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ship-wheel.js
var __iconNode1269 = [
["circle", { cx: "12", cy: "12", r: "8", key: "46899m" }],
["path", { d: "M12 2v7.5", key: "1e5rl5" }],
["path", { d: "m19 5-5.23 5.23", key: "1ezxxf" }],
["path", { d: "M22 12h-7.5", key: "le1719" }],
["path", { d: "m19 19-5.23-5.23", key: "p3fmgn" }],
["path", { d: "M12 14.5V22", key: "dgcmos" }],
["path", { d: "M10.23 13.77 5 19", key: "qwopd4" }],
["path", { d: "M9.5 12H2", key: "r7bup8" }],
["path", { d: "M10.23 10.23 5 5", key: "k2y7lj" }],
["circle", { cx: "12", cy: "12", r: "2.5", key: "ix0uyj" }]
];
var ShipWheel = createLucideIcon("ship-wheel", __iconNode1269);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ship.js
var __iconNode1270 = [
["path", { d: "M12 10.189V14", key: "1p8cqu" }],
["path", { d: "M12 2v3", key: "qbqxhf" }],
["path", { d: "M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6", key: "qpkstq" }],
[
"path",
{
d: "M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76",
key: "7tigtc"
}
],
[
"path",
{
d: "M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
key: "1924j5"
}
]
];
var Ship = createLucideIcon("ship", __iconNode1270);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shirt.js
var __iconNode1271 = [
[
"path",
{
d: "M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z",
key: "1wgbhj"
}
]
];
var Shirt = createLucideIcon("shirt", __iconNode1271);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shopping-bag.js
var __iconNode1272 = [
["path", { d: "M16 10a4 4 0 0 1-8 0", key: "1ltviw" }],
["path", { d: "M3.103 6.034h17.794", key: "awc11p" }],
[
"path",
{
d: "M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z",
key: "o988cm"
}
]
];
var ShoppingBag = createLucideIcon("shopping-bag", __iconNode1272);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shopping-basket.js
var __iconNode1273 = [
["path", { d: "m15 11-1 9", key: "5wnq3a" }],
["path", { d: "m19 11-4-7", key: "cnml18" }],
["path", { d: "M2 11h20", key: "3eubbj" }],
["path", { d: "m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4", key: "yiazzp" }],
["path", { d: "M4.5 15.5h15", key: "13mye1" }],
["path", { d: "m5 11 4-7", key: "116ra9" }],
["path", { d: "m9 11 1 9", key: "1ojof7" }]
];
var ShoppingBasket = createLucideIcon("shopping-basket", __iconNode1273);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shopping-cart.js
var __iconNode1274 = [
["circle", { cx: "8", cy: "21", r: "1", key: "jimo8o" }],
["circle", { cx: "19", cy: "21", r: "1", key: "13723u" }],
[
"path",
{
d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12",
key: "9zh506"
}
]
];
var ShoppingCart = createLucideIcon("shopping-cart", __iconNode1274);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shovel.js
var __iconNode1275 = [
["path", { d: "M2 22v-5l5-5 5 5-5 5z", key: "1fh25c" }],
["path", { d: "M9.5 14.5 16 8", key: "1smz5x" }],
[
"path",
{ d: "m17 2 5 5-.5.5a3.53 3.53 0 0 1-5 0s0 0 0 0a3.53 3.53 0 0 1 0-5L17 2", key: "1q8uv5" }
]
];
var Shovel = createLucideIcon("shovel", __iconNode1275);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shower-head.js
var __iconNode1276 = [
["path", { d: "m4 4 2.5 2.5", key: "uv2vmf" }],
["path", { d: "M13.5 6.5a4.95 4.95 0 0 0-7 7", key: "frdkwv" }],
["path", { d: "M15 5 5 15", key: "1ag8rq" }],
["path", { d: "M14 17v.01", key: "eokfpp" }],
["path", { d: "M10 16v.01", key: "14uyyl" }],
["path", { d: "M13 13v.01", key: "1v1k97" }],
["path", { d: "M16 10v.01", key: "5169yg" }],
["path", { d: "M11 20v.01", key: "cj92p8" }],
["path", { d: "M17 14v.01", key: "11cswd" }],
["path", { d: "M20 11v.01", key: "19e0od" }]
];
var ShowerHead = createLucideIcon("shower-head", __iconNode1276);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shredder.js
var __iconNode1277 = [
["path", { d: "M10 22v-5", key: "sfixh4" }],
["path", { d: "M14 19v-2", key: "pdve8j" }],
["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
["path", { d: "M18 20v-3", key: "uox2gk" }],
["path", { d: "M2 13h20", key: "5evz65" }],
["path", { d: "M20 13V7l-5-5H6a2 2 0 0 0-2 2v9", key: "1rnpe2" }],
["path", { d: "M6 20v-3", key: "c6pdcb" }]
];
var Shredder = createLucideIcon("shredder", __iconNode1277);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shrimp.js
var __iconNode1278 = [
["path", { d: "M11 12h.01", key: "1lr4k6" }],
["path", { d: "M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1", key: "fatpdi" }],
[
"path",
{
d: "M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8",
key: "kehrqe"
}
],
["path", { d: "M14 8a8.5 8.5 0 0 1 0 8", key: "1imjx2" }],
["path", { d: "M16 16c2 0 4.5-4 4-6", key: "z0nejz" }]
];
var Shrimp = createLucideIcon("shrimp", __iconNode1278);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shrink.js
var __iconNode1279 = [
["path", { d: "m15 15 6 6m-6-6v4.8m0-4.8h4.8", key: "17vawe" }],
["path", { d: "M9 19.8V15m0 0H4.2M9 15l-6 6", key: "chjx8e" }],
["path", { d: "M15 4.2V9m0 0h4.8M15 9l6-6", key: "lav6yq" }],
["path", { d: "M9 4.2V9m0 0H4.2M9 9 3 3", key: "1pxi2q" }]
];
var Shrink = createLucideIcon("shrink", __iconNode1279);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shrub.js
var __iconNode1280 = [
["path", { d: "M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5", key: "1p17fm" }],
["path", { d: "M14.5 14.5 12 17", key: "dy5w4y" }],
["path", { d: "M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z", key: "6z7b3o" }]
];
var Shrub = createLucideIcon("shrub", __iconNode1280);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/shuffle.js
var __iconNode1281 = [
["path", { d: "m18 14 4 4-4 4", key: "10pe0f" }],
["path", { d: "m18 2 4 4-4 4", key: "pucp1d" }],
["path", { d: "M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22", key: "1ailkh" }],
["path", { d: "M2 6h1.972a4 4 0 0 1 3.6 2.2", key: "km57vx" }],
["path", { d: "M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45", key: "os18l9" }]
];
var Shuffle = createLucideIcon("shuffle", __iconNode1281);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sigma.js
var __iconNode1282 = [
[
"path",
{
d: "M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2",
key: "wuwx1p"
}
]
];
var Sigma = createLucideIcon("sigma", __iconNode1282);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/signal-high.js
var __iconNode1283 = [
["path", { d: "M2 20h.01", key: "4haj6o" }],
["path", { d: "M7 20v-4", key: "j294jx" }],
["path", { d: "M12 20v-8", key: "i3yub9" }],
["path", { d: "M17 20V8", key: "1tkaf5" }]
];
var SignalHigh = createLucideIcon("signal-high", __iconNode1283);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/signal-low.js
var __iconNode1284 = [
["path", { d: "M2 20h.01", key: "4haj6o" }],
["path", { d: "M7 20v-4", key: "j294jx" }]
];
var SignalLow = createLucideIcon("signal-low", __iconNode1284);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/signal-medium.js
var __iconNode1285 = [
["path", { d: "M2 20h.01", key: "4haj6o" }],
["path", { d: "M7 20v-4", key: "j294jx" }],
["path", { d: "M12 20v-8", key: "i3yub9" }]
];
var SignalMedium = createLucideIcon("signal-medium", __iconNode1285);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/signal-zero.js
var __iconNode1286 = [["path", { d: "M2 20h.01", key: "4haj6o" }]];
var SignalZero = createLucideIcon("signal-zero", __iconNode1286);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/signal.js
var __iconNode1287 = [
["path", { d: "M2 20h.01", key: "4haj6o" }],
["path", { d: "M7 20v-4", key: "j294jx" }],
["path", { d: "M12 20v-8", key: "i3yub9" }],
["path", { d: "M17 20V8", key: "1tkaf5" }],
["path", { d: "M22 4v16", key: "sih9yq" }]
];
var Signal = createLucideIcon("signal", __iconNode1287);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/signature.js
var __iconNode1288 = [
[
"path",
{
d: "m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284",
key: "y32ogt"
}
],
["path", { d: "M3 21h18", key: "itz85i" }]
];
var Signature = createLucideIcon("signature", __iconNode1288);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/signpost-big.js
var __iconNode1289 = [
["path", { d: "M10 9H4L2 7l2-2h6", key: "1hq7x2" }],
["path", { d: "M14 5h6l2 2-2 2h-6", key: "bv62ej" }],
["path", { d: "M10 22V4a2 2 0 1 1 4 0v18", key: "eqpcf2" }],
["path", { d: "M8 22h8", key: "rmew8v" }]
];
var SignpostBig = createLucideIcon("signpost-big", __iconNode1289);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/siren.js
var __iconNode1290 = [
["path", { d: "M7 18v-6a5 5 0 1 1 10 0v6", key: "pcx96s" }],
[
"path",
{ d: "M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z", key: "1b4s83" }
],
["path", { d: "M21 12h1", key: "jtio3y" }],
["path", { d: "M18.5 4.5 18 5", key: "g5sp9y" }],
["path", { d: "M2 12h1", key: "1uaihz" }],
["path", { d: "M12 2v1", key: "11qlp1" }],
["path", { d: "m4.929 4.929.707.707", key: "1i51kw" }],
["path", { d: "M12 12v6", key: "3ahymv" }]
];
var Siren = createLucideIcon("siren", __iconNode1290);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/signpost.js
var __iconNode1291 = [
["path", { d: "M12 13v8", key: "1l5pq0" }],
["path", { d: "M12 3v3", key: "1n5kay" }],
[
"path",
{
d: "M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z",
key: "gqqp9m"
}
]
];
var Signpost = createLucideIcon("signpost", __iconNode1291);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/skip-back.js
var __iconNode1292 = [
["polygon", { points: "19 20 9 12 19 4 19 20", key: "o2sva" }],
["line", { x1: "5", x2: "5", y1: "19", y2: "5", key: "1ocqjk" }]
];
var SkipBack = createLucideIcon("skip-back", __iconNode1292);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/skull.js
var __iconNode1293 = [
["path", { d: "m12.5 17-.5-1-.5 1h1z", key: "3me087" }],
[
"path",
{
d: "M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z",
key: "1o5pge"
}
],
["circle", { cx: "15", cy: "12", r: "1", key: "1tmaij" }],
["circle", { cx: "9", cy: "12", r: "1", key: "1vctgf" }]
];
var Skull = createLucideIcon("skull", __iconNode1293);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/skip-forward.js
var __iconNode1294 = [
["polygon", { points: "5 4 15 12 5 20 5 4", key: "16p6eg" }],
["line", { x1: "19", x2: "19", y1: "5", y2: "19", key: "futhcm" }]
];
var SkipForward = createLucideIcon("skip-forward", __iconNode1294);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/slack.js
var __iconNode1295 = [
["rect", { width: "3", height: "8", x: "13", y: "2", rx: "1.5", key: "diqz80" }],
["path", { d: "M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5", key: "183iwg" }],
["rect", { width: "3", height: "8", x: "8", y: "14", rx: "1.5", key: "hqg7r1" }],
["path", { d: "M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5", key: "76g71w" }],
["rect", { width: "8", height: "3", x: "14", y: "13", rx: "1.5", key: "1kmz0a" }],
["path", { d: "M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5", key: "jc4sz0" }],
["rect", { width: "8", height: "3", x: "2", y: "8", rx: "1.5", key: "1omvl4" }],
["path", { d: "M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5", key: "16f3cl" }]
];
var Slack = createLucideIcon("slack", __iconNode1295);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/slash.js
var __iconNode1296 = [["path", { d: "M22 2 2 22", key: "y4kqgn" }]];
var Slash = createLucideIcon("slash", __iconNode1296);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/slice.js
var __iconNode1297 = [
[
"path",
{
d: "M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14",
key: "1sllp5"
}
]
];
var Slice = createLucideIcon("slice", __iconNode1297);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sliders-horizontal.js
var __iconNode1298 = [
["line", { x1: "21", x2: "14", y1: "4", y2: "4", key: "obuewd" }],
["line", { x1: "10", x2: "3", y1: "4", y2: "4", key: "1q6298" }],
["line", { x1: "21", x2: "12", y1: "12", y2: "12", key: "1iu8h1" }],
["line", { x1: "8", x2: "3", y1: "12", y2: "12", key: "ntss68" }],
["line", { x1: "21", x2: "16", y1: "20", y2: "20", key: "14d8ph" }],
["line", { x1: "12", x2: "3", y1: "20", y2: "20", key: "m0wm8r" }],
["line", { x1: "14", x2: "14", y1: "2", y2: "6", key: "14e1ph" }],
["line", { x1: "8", x2: "8", y1: "10", y2: "14", key: "1i6ji0" }],
["line", { x1: "16", x2: "16", y1: "18", y2: "22", key: "1lctlv" }]
];
var SlidersHorizontal = createLucideIcon("sliders-horizontal", __iconNode1298);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sliders-vertical.js
var __iconNode1299 = [
["line", { x1: "4", x2: "4", y1: "21", y2: "14", key: "1p332r" }],
["line", { x1: "4", x2: "4", y1: "10", y2: "3", key: "gb41h5" }],
["line", { x1: "12", x2: "12", y1: "21", y2: "12", key: "hf2csr" }],
["line", { x1: "12", x2: "12", y1: "8", y2: "3", key: "1kfi7u" }],
["line", { x1: "20", x2: "20", y1: "21", y2: "16", key: "1lhrwl" }],
["line", { x1: "20", x2: "20", y1: "12", y2: "3", key: "16vvfq" }],
["line", { x1: "2", x2: "6", y1: "14", y2: "14", key: "1uebub" }],
["line", { x1: "10", x2: "14", y1: "8", y2: "8", key: "1yglbp" }],
["line", { x1: "18", x2: "22", y1: "16", y2: "16", key: "1jxqpz" }]
];
var SlidersVertical = createLucideIcon("sliders-vertical", __iconNode1299);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone-charging.js
var __iconNode1300 = [
["rect", { width: "14", height: "20", x: "5", y: "2", rx: "2", ry: "2", key: "1yt0o3" }],
["path", { d: "M12.667 8 10 12h4l-2.667 4", key: "h9lk2d" }]
];
var SmartphoneCharging = createLucideIcon("smartphone-charging", __iconNode1300);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone-nfc.js
var __iconNode1301 = [
["rect", { width: "7", height: "12", x: "2", y: "6", rx: "1", key: "5nje8w" }],
["path", { d: "M13 8.32a7.43 7.43 0 0 1 0 7.36", key: "1g306n" }],
["path", { d: "M16.46 6.21a11.76 11.76 0 0 1 0 11.58", key: "uqvjvo" }],
["path", { d: "M19.91 4.1a15.91 15.91 0 0 1 .01 15.8", key: "ujntz3" }]
];
var SmartphoneNfc = createLucideIcon("smartphone-nfc", __iconNode1301);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone.js
var __iconNode1302 = [
["rect", { width: "14", height: "20", x: "5", y: "2", rx: "2", ry: "2", key: "1yt0o3" }],
["path", { d: "M12 18h.01", key: "mhygvu" }]
];
var Smartphone = createLucideIcon("smartphone", __iconNode1302);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smile-plus.js
var __iconNode1303 = [
["path", { d: "M22 11v1a10 10 0 1 1-9-10", key: "ew0xw9" }],
["path", { d: "M8 14s1.5 2 4 2 4-2 4-2", key: "1y1vjs" }],
["line", { x1: "9", x2: "9.01", y1: "9", y2: "9", key: "yxxnd0" }],
["line", { x1: "15", x2: "15.01", y1: "9", y2: "9", key: "1p4y9e" }],
["path", { d: "M16 5h6", key: "1vod17" }],
["path", { d: "M19 2v6", key: "4bpg5p" }]
];
var SmilePlus = createLucideIcon("smile-plus", __iconNode1303);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smile.js
var __iconNode1304 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["path", { d: "M8 14s1.5 2 4 2 4-2 4-2", key: "1y1vjs" }],
["line", { x1: "9", x2: "9.01", y1: "9", y2: "9", key: "yxxnd0" }],
["line", { x1: "15", x2: "15.01", y1: "9", y2: "9", key: "1p4y9e" }]
];
var Smile = createLucideIcon("smile", __iconNode1304);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/snail.js
var __iconNode1305 = [
["path", { d: "M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0", key: "hneq2s" }],
["circle", { cx: "10", cy: "13", r: "8", key: "194lz3" }],
["path", { d: "M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6", key: "ixqyt7" }],
["path", { d: "M18 3 19.1 5.2", key: "9tjm43" }],
["path", { d: "M22 3 20.9 5.2", key: "j3odrs" }]
];
var Snail = createLucideIcon("snail", __iconNode1305);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/snowflake.js
var __iconNode1306 = [
["path", { d: "m10 20-1.25-2.5L6 18", key: "18frcb" }],
["path", { d: "M10 4 8.75 6.5 6 6", key: "7mghy3" }],
["path", { d: "m14 20 1.25-2.5L18 18", key: "1chtki" }],
["path", { d: "m14 4 1.25 2.5L18 6", key: "1b4wsy" }],
["path", { d: "m17 21-3-6h-4", key: "15hhxa" }],
["path", { d: "m17 3-3 6 1.5 3", key: "11697g" }],
["path", { d: "M2 12h6.5L10 9", key: "kv9z4n" }],
["path", { d: "m20 10-1.5 2 1.5 2", key: "1swlpi" }],
["path", { d: "M22 12h-6.5L14 15", key: "1mxi28" }],
["path", { d: "m4 10 1.5 2L4 14", key: "k9enpj" }],
["path", { d: "m7 21 3-6-1.5-3", key: "j8hb9u" }],
["path", { d: "m7 3 3 6h4", key: "1otusx" }]
];
var Snowflake = createLucideIcon("snowflake", __iconNode1306);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sofa.js
var __iconNode1307 = [
["path", { d: "M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3", key: "1dgpiv" }],
[
"path",
{
d: "M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",
key: "xacw8m"
}
],
["path", { d: "M4 18v2", key: "jwo5n2" }],
["path", { d: "M20 18v2", key: "1ar1qi" }],
["path", { d: "M12 4v9", key: "oqhhn3" }]
];
var Sofa = createLucideIcon("sofa", __iconNode1307);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/soap-dispenser-droplet.js
var __iconNode1308 = [
["path", { d: "M10.5 2v4", key: "1xt6in" }],
["path", { d: "M14 2H7a2 2 0 0 0-2 2", key: "e6xig3" }],
[
"path",
{
d: "M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19",
key: "adq7uc"
}
],
[
"path",
{
d: "M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3",
key: "t9hm96"
}
]
];
var SoapDispenserDroplet = createLucideIcon("soap-dispenser-droplet", __iconNode1308);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/soup.js
var __iconNode1309 = [
["path", { d: "M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z", key: "4rw317" }],
["path", { d: "M7 21h10", key: "1b0cd5" }],
["path", { d: "M19.5 12 22 6", key: "shfsr5" }],
[
"path",
{
d: "M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62",
key: "rpc6vp"
}
],
[
"path",
{
d: "M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62",
key: "1lf63m"
}
],
[
"path",
{ d: "M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62", key: "97tijn" }
]
];
var Soup = createLucideIcon("soup", __iconNode1309);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/space.js
var __iconNode1310 = [
["path", { d: "M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1", key: "lt2kga" }]
];
var Space = createLucideIcon("space", __iconNode1310);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/spade.js
var __iconNode1311 = [
[
"path",
{
d: "M5 9c-1.5 1.5-3 3.2-3 5.5A5.5 5.5 0 0 0 7.5 20c1.8 0 3-.5 4.5-2 1.5 1.5 2.7 2 4.5 2a5.5 5.5 0 0 0 5.5-5.5c0-2.3-1.5-4-3-5.5l-7-7-7 7Z",
key: "40bo9n"
}
],
["path", { d: "M12 18v4", key: "jadmvz" }]
];
var Spade = createLucideIcon("spade", __iconNode1311);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkle.js
var __iconNode1312 = [
[
"path",
{
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",
key: "4pj2yx"
}
]
];
var Sparkle = createLucideIcon("sparkle", __iconNode1312);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkles.js
var __iconNode1313 = [
[
"path",
{
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",
key: "4pj2yx"
}
],
["path", { d: "M20 3v4", key: "1olli1" }],
["path", { d: "M22 5h-4", key: "1gvqau" }],
["path", { d: "M4 17v2", key: "vumght" }],
["path", { d: "M5 18H3", key: "zchphs" }]
];
var Sparkles = createLucideIcon("sparkles", __iconNode1313);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/speaker.js
var __iconNode1314 = [
["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", key: "1nb95v" }],
["path", { d: "M12 6h.01", key: "1vi96p" }],
["circle", { cx: "12", cy: "14", r: "4", key: "1jruaj" }],
["path", { d: "M12 14h.01", key: "1etili" }]
];
var Speaker = createLucideIcon("speaker", __iconNode1314);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/speech.js
var __iconNode1315 = [
[
"path",
{
d: "M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20",
key: "11atix"
}
],
["path", { d: "M19.8 17.8a7.5 7.5 0 0 0 .003-10.603", key: "yol142" }],
["path", { d: "M17 15a3.5 3.5 0 0 0-.025-4.975", key: "ssbmkc" }]
];
var Speech = createLucideIcon("speech", __iconNode1315);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/spell-check-2.js
var __iconNode1316 = [
["path", { d: "m6 16 6-12 6 12", key: "1b4byz" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
[
"path",
{
d: "M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1",
key: "8mdmtu"
}
]
];
var SpellCheck2 = createLucideIcon("spell-check-2", __iconNode1316);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/spell-check.js
var __iconNode1317 = [
["path", { d: "m6 16 6-12 6 12", key: "1b4byz" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
["path", { d: "m16 20 2 2 4-4", key: "13tcca" }]
];
var SpellCheck = createLucideIcon("spell-check", __iconNode1317);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/spline-pointer.js
var __iconNode1318 = [
[
"path",
{
d: "M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",
key: "xwnzip"
}
],
["path", { d: "M5 17A12 12 0 0 1 17 5", key: "1okkup" }],
["circle", { cx: "19", cy: "5", r: "2", key: "mhkx31" }],
["circle", { cx: "5", cy: "19", r: "2", key: "v8kfzx" }]
];
var SplinePointer = createLucideIcon("spline-pointer", __iconNode1318);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/spline.js
var __iconNode1319 = [
["circle", { cx: "19", cy: "5", r: "2", key: "mhkx31" }],
["circle", { cx: "5", cy: "19", r: "2", key: "v8kfzx" }],
["path", { d: "M5 17A12 12 0 0 1 17 5", key: "1okkup" }]
];
var Spline = createLucideIcon("spline", __iconNode1319);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/split.js
var __iconNode1320 = [
["path", { d: "M16 3h5v5", key: "1806ms" }],
["path", { d: "M8 3H3v5", key: "15dfkv" }],
["path", { d: "M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3", key: "1qrqzj" }],
["path", { d: "m15 9 6-6", key: "ko1vev" }]
];
var Split = createLucideIcon("split", __iconNode1320);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/spool.js
var __iconNode1321 = [
[
"path",
{
d: "M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66",
key: "13vns8"
}
],
[
"path",
{
d: "m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178",
key: "s8x3u0"
}
]
];
var Spool = createLucideIcon("spool", __iconNode1321);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/spray-can.js
var __iconNode1322 = [
["path", { d: "M3 3h.01", key: "159qn6" }],
["path", { d: "M7 5h.01", key: "1hq22a" }],
["path", { d: "M11 7h.01", key: "1osv80" }],
["path", { d: "M3 7h.01", key: "1xzrh3" }],
["path", { d: "M7 9h.01", key: "19b3jx" }],
["path", { d: "M3 11h.01", key: "1eifu7" }],
["rect", { width: "4", height: "4", x: "15", y: "5", key: "mri9e4" }],
["path", { d: "m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2", key: "aib6hk" }],
["path", { d: "m13 14 8-2", key: "1d7bmk" }],
["path", { d: "m13 19 8-2", key: "1y2vml" }]
];
var SprayCan = createLucideIcon("spray-can", __iconNode1322);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sprout.js
var __iconNode1323 = [
["path", { d: "M7 20h10", key: "e6iznv" }],
["path", { d: "M10 20c5.5-2.5.8-6.4 3-10", key: "161w41" }],
[
"path",
{
d: "M9.5 9.4c1.1.8 1.8 2.2 2.3 3.7-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2 2.8-.5 4.4 0 5.5.8z",
key: "9gtqwd"
}
],
[
"path",
{
d: "M14.1 6a7 7 0 0 0-1.1 4c1.9-.1 3.3-.6 4.3-1.4 1-1 1.6-2.3 1.7-4.6-2.7.1-4 1-4.9 2z",
key: "bkxnd2"
}
]
];
var Sprout = createLucideIcon("sprout", __iconNode1323);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-activity.js
var __iconNode1324 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M17 12h-2l-2 5-2-10-2 5H7", key: "15hlnc" }]
];
var SquareActivity = createLucideIcon("square-activity", __iconNode1324);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-down-left.js
var __iconNode1325 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m16 8-8 8", key: "166keh" }],
["path", { d: "M16 16H8V8", key: "1w2ppm" }]
];
var SquareArrowDownLeft = createLucideIcon("square-arrow-down-left", __iconNode1325);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-down-right.js
var __iconNode1326 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m8 8 8 8", key: "1imecy" }],
["path", { d: "M16 8v8H8", key: "1lbpgo" }]
];
var SquareArrowDownRight = createLucideIcon("square-arrow-down-right", __iconNode1326);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-down.js
var __iconNode1327 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M12 8v8", key: "napkw2" }],
["path", { d: "m8 12 4 4 4-4", key: "k98ssh" }]
];
var SquareArrowDown = createLucideIcon("square-arrow-down", __iconNode1327);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-left.js
var __iconNode1328 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m12 8-4 4 4 4", key: "15vm53" }],
["path", { d: "M16 12H8", key: "1fr5h0" }]
];
var SquareArrowLeft = createLucideIcon("square-arrow-left", __iconNode1328);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-out-down-left.js
var __iconNode1329 = [
["path", { d: "M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6", key: "14qz4y" }],
["path", { d: "m3 21 9-9", key: "1jfql5" }],
["path", { d: "M9 21H3v-6", key: "wtvkvv" }]
];
var SquareArrowOutDownLeft = createLucideIcon("square-arrow-out-down-left", __iconNode1329);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-out-down-right.js
var __iconNode1330 = [
["path", { d: "M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6", key: "14rsvq" }],
["path", { d: "m21 21-9-9", key: "1et2py" }],
["path", { d: "M21 15v6h-6", key: "1jko0i" }]
];
var SquareArrowOutDownRight = createLucideIcon("square-arrow-out-down-right", __iconNode1330);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-out-up-right.js
var __iconNode1331 = [
["path", { d: "M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6", key: "y09zxi" }],
["path", { d: "m21 3-9 9", key: "mpx6sq" }],
["path", { d: "M15 3h6v6", key: "1q9fwt" }]
];
var SquareArrowOutUpRight = createLucideIcon("square-arrow-out-up-right", __iconNode1331);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-right.js
var __iconNode1332 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
["path", { d: "m12 16 4-4-4-4", key: "1i9zcv" }]
];
var SquareArrowRight = createLucideIcon("square-arrow-right", __iconNode1332);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-out-up-left.js
var __iconNode1333 = [
["path", { d: "M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6", key: "14mv1t" }],
["path", { d: "m3 3 9 9", key: "rks13r" }],
["path", { d: "M3 9V3h6", key: "ira0h2" }]
];
var SquareArrowOutUpLeft = createLucideIcon("square-arrow-out-up-left", __iconNode1333);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-up-left.js
var __iconNode1334 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M8 16V8h8", key: "19xb1h" }],
["path", { d: "M16 16 8 8", key: "1qdy8n" }]
];
var SquareArrowUpLeft = createLucideIcon("square-arrow-up-left", __iconNode1334);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-up-right.js
var __iconNode1335 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M8 8h8v8", key: "b65dnt" }],
["path", { d: "m8 16 8-8", key: "13b9ih" }]
];
var SquareArrowUpRight = createLucideIcon("square-arrow-up-right", __iconNode1335);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-arrow-up.js
var __iconNode1336 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m16 12-4-4-4 4", key: "177agl" }],
["path", { d: "M12 16V8", key: "1sbj14" }]
];
var SquareArrowUp = createLucideIcon("square-arrow-up", __iconNode1336);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-asterisk.js
var __iconNode1337 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M12 8v8", key: "napkw2" }],
["path", { d: "m8.5 14 7-4", key: "12hpby" }],
["path", { d: "m8.5 10 7 4", key: "wwy2dy" }]
];
var SquareAsterisk = createLucideIcon("square-asterisk", __iconNode1337);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-bottom-dashed-scissors.js
var __iconNode1338 = [
[
"path",
{ d: "M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2", key: "1vzg26" }
],
["path", { d: "M10 22H8", key: "euku7a" }],
["path", { d: "M16 22h-2", key: "18d249" }],
["circle", { cx: "8", cy: "8", r: "2", key: "14cg06" }],
["path", { d: "M9.414 9.414 12 12", key: "qz4lzr" }],
["path", { d: "M14.8 14.8 18 18", key: "11flf1" }],
["circle", { cx: "8", cy: "16", r: "2", key: "1acxsx" }],
["path", { d: "m18 6-8.586 8.586", key: "11kzk1" }]
];
var SquareBottomDashedScissors = createLucideIcon("square-bottom-dashed-scissors", __iconNode1338);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-chart-gantt.js
var __iconNode1339 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M9 8h7", key: "kbo1nt" }],
["path", { d: "M8 12h6", key: "ikassy" }],
["path", { d: "M11 16h5", key: "oq65wt" }]
];
var SquareChartGantt = createLucideIcon("square-chart-gantt", __iconNode1339);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-check-big.js
var __iconNode1340 = [
[
"path",
{ d: "M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344", key: "2acyp4" }
],
["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
];
var SquareCheckBig = createLucideIcon("square-check-big", __iconNode1340);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-check.js
var __iconNode1341 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
];
var SquareCheck = createLucideIcon("square-check", __iconNode1341);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-chevron-down.js
var __iconNode1342 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m16 10-4 4-4-4", key: "894hmk" }]
];
var SquareChevronDown = createLucideIcon("square-chevron-down", __iconNode1342);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-chevron-left.js
var __iconNode1343 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m14 16-4-4 4-4", key: "ojs7w8" }]
];
var SquareChevronLeft = createLucideIcon("square-chevron-left", __iconNode1343);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-chevron-right.js
var __iconNode1344 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m10 8 4 4-4 4", key: "1wy4r4" }]
];
var SquareChevronRight = createLucideIcon("square-chevron-right", __iconNode1344);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-chevron-up.js
var __iconNode1345 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m8 14 4-4 4 4", key: "fy2ptz" }]
];
var SquareChevronUp = createLucideIcon("square-chevron-up", __iconNode1345);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-code.js
var __iconNode1346 = [
["path", { d: "m10 9-3 3 3 3", key: "1oro0q" }],
["path", { d: "m14 15 3-3-3-3", key: "bz13h7" }],
["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", key: "h1oib" }]
];
var SquareCode = createLucideIcon("square-code", __iconNode1346);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-dashed-bottom-code.js
var __iconNode1347 = [
["path", { d: "M10 9.5 8 12l2 2.5", key: "3mjy60" }],
["path", { d: "M14 21h1", key: "v9vybs" }],
["path", { d: "m14 9.5 2 2.5-2 2.5", key: "1bir2l" }],
[
"path",
{ d: "M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2", key: "as5y1o" }
],
["path", { d: "M9 21h1", key: "15o7lz" }]
];
var SquareDashedBottomCode = createLucideIcon("square-dashed-bottom-code", __iconNode1347);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-dashed-bottom.js
var __iconNode1348 = [
[
"path",
{ d: "M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2", key: "as5y1o" }
],
["path", { d: "M9 21h1", key: "15o7lz" }],
["path", { d: "M14 21h1", key: "v9vybs" }]
];
var SquareDashedBottom = createLucideIcon("square-dashed-bottom", __iconNode1348);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-dashed-kanban.js
var __iconNode1349 = [
["path", { d: "M8 7v7", key: "1x2jlm" }],
["path", { d: "M12 7v4", key: "xawao1" }],
["path", { d: "M16 7v9", key: "1hp2iy" }],
["path", { d: "M5 3a2 2 0 0 0-2 2", key: "y57alp" }],
["path", { d: "M9 3h1", key: "1yesri" }],
["path", { d: "M14 3h1", key: "1ec4yj" }],
["path", { d: "M19 3a2 2 0 0 1 2 2", key: "18rm91" }],
["path", { d: "M21 9v1", key: "mxsmne" }],
["path", { d: "M21 14v1", key: "169vum" }],
["path", { d: "M21 19a2 2 0 0 1-2 2", key: "1j7049" }],
["path", { d: "M14 21h1", key: "v9vybs" }],
["path", { d: "M9 21h1", key: "15o7lz" }],
["path", { d: "M5 21a2 2 0 0 1-2-2", key: "sbafld" }],
["path", { d: "M3 14v1", key: "vnatye" }],
["path", { d: "M3 9v1", key: "1r0deq" }]
];
var SquareDashedKanban = createLucideIcon("square-dashed-kanban", __iconNode1349);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-dashed-mouse-pointer.js
var __iconNode1350 = [
[
"path",
{
d: "M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",
key: "xwnzip"
}
],
["path", { d: "M5 3a2 2 0 0 0-2 2", key: "y57alp" }],
["path", { d: "M19 3a2 2 0 0 1 2 2", key: "18rm91" }],
["path", { d: "M5 21a2 2 0 0 1-2-2", key: "sbafld" }],
["path", { d: "M9 3h1", key: "1yesri" }],
["path", { d: "M9 21h2", key: "1qve2z" }],
["path", { d: "M14 3h1", key: "1ec4yj" }],
["path", { d: "M3 9v1", key: "1r0deq" }],
["path", { d: "M21 9v2", key: "p14lih" }],
["path", { d: "M3 14v1", key: "vnatye" }]
];
var SquareDashedMousePointer = createLucideIcon("square-dashed-mouse-pointer", __iconNode1350);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-dashed-top-solid.js
var __iconNode1351 = [
["path", { d: "M14 21h1", key: "v9vybs" }],
["path", { d: "M21 14v1", key: "169vum" }],
["path", { d: "M21 19a2 2 0 0 1-2 2", key: "1j7049" }],
["path", { d: "M21 9v1", key: "mxsmne" }],
["path", { d: "M3 14v1", key: "vnatye" }],
["path", { d: "M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2", key: "89voep" }],
["path", { d: "M3 9v1", key: "1r0deq" }],
["path", { d: "M5 21a2 2 0 0 1-2-2", key: "sbafld" }],
["path", { d: "M9 21h1", key: "15o7lz" }]
];
var SquareDashedTopSolid = createLucideIcon("square-dashed-top-solid", __iconNode1351);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-dashed.js
var __iconNode1352 = [
["path", { d: "M5 3a2 2 0 0 0-2 2", key: "y57alp" }],
["path", { d: "M19 3a2 2 0 0 1 2 2", key: "18rm91" }],
["path", { d: "M21 19a2 2 0 0 1-2 2", key: "1j7049" }],
["path", { d: "M5 21a2 2 0 0 1-2-2", key: "sbafld" }],
["path", { d: "M9 3h1", key: "1yesri" }],
["path", { d: "M9 21h1", key: "15o7lz" }],
["path", { d: "M14 3h1", key: "1ec4yj" }],
["path", { d: "M14 21h1", key: "v9vybs" }],
["path", { d: "M3 9v1", key: "1r0deq" }],
["path", { d: "M21 9v1", key: "mxsmne" }],
["path", { d: "M3 14v1", key: "vnatye" }],
["path", { d: "M21 14v1", key: "169vum" }]
];
var SquareDashed = createLucideIcon("square-dashed", __iconNode1352);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-divide.js
var __iconNode1353 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["line", { x1: "8", x2: "16", y1: "12", y2: "12", key: "1jonct" }],
["line", { x1: "12", x2: "12", y1: "16", y2: "16", key: "aqc6ln" }],
["line", { x1: "12", x2: "12", y1: "8", y2: "8", key: "1mkcni" }]
];
var SquareDivide = createLucideIcon("square-divide", __iconNode1353);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-dot.js
var __iconNode1354 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }]
];
var SquareDot = createLucideIcon("square-dot", __iconNode1354);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-equal.js
var __iconNode1355 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M7 10h10", key: "1101jm" }],
["path", { d: "M7 14h10", key: "1mhdw3" }]
];
var SquareEqual = createLucideIcon("square-equal", __iconNode1355);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-function.js
var __iconNode1356 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["path", { d: "M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3", key: "m1af9g" }],
["path", { d: "M9 11.2h5.7", key: "3zgcl2" }]
];
var SquareFunction = createLucideIcon("square-function", __iconNode1356);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-kanban.js
var __iconNode1357 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M8 7v7", key: "1x2jlm" }],
["path", { d: "M12 7v4", key: "xawao1" }],
["path", { d: "M16 7v9", key: "1hp2iy" }]
];
var SquareKanban = createLucideIcon("square-kanban", __iconNode1357);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-library.js
var __iconNode1358 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M7 7v10", key: "d5nglc" }],
["path", { d: "M11 7v10", key: "pptsnr" }],
["path", { d: "m15 7 2 10", key: "1m7qm5" }]
];
var SquareLibrary = createLucideIcon("square-library", __iconNode1358);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-m.js
var __iconNode1359 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M8 16V8l4 4 4-4v8", key: "141u4e" }]
];
var SquareM = createLucideIcon("square-m", __iconNode1359);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-menu.js
var __iconNode1360 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M7 8h10", key: "1jw688" }],
["path", { d: "M7 12h10", key: "b7w52i" }],
["path", { d: "M7 16h10", key: "wp8him" }]
];
var SquareMenu = createLucideIcon("square-menu", __iconNode1360);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-minus.js
var __iconNode1361 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M8 12h8", key: "1wcyev" }]
];
var SquareMinus = createLucideIcon("square-minus", __iconNode1361);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-mouse-pointer.js
var __iconNode1362 = [
[
"path",
{
d: "M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",
key: "xwnzip"
}
],
["path", { d: "M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6", key: "14rsvq" }]
];
var SquareMousePointer = createLucideIcon("square-mouse-pointer", __iconNode1362);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-parking-off.js
var __iconNode1363 = [
["path", { d: "M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41", key: "9l1ft6" }],
["path", { d: "M3 8.7V19a2 2 0 0 0 2 2h10.3", key: "17knke" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M13 13a3 3 0 1 0 0-6H9v2", key: "uoagbd" }],
["path", { d: "M9 17v-2.3", key: "1jxgo2" }]
];
var SquareParkingOff = createLucideIcon("square-parking-off", __iconNode1363);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-parking.js
var __iconNode1364 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M9 17V7h4a3 3 0 0 1 0 6H9", key: "1dfk2c" }]
];
var SquareParking = createLucideIcon("square-parking", __iconNode1364);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-pen.js
var __iconNode1365 = [
["path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7", key: "1m0v6g" }],
[
"path",
{
d: "M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",
key: "ohrbg2"
}
]
];
var SquarePen = createLucideIcon("square-pen", __iconNode1365);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-percent.js
var __iconNode1366 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
["path", { d: "M9 9h.01", key: "1q5me6" }],
["path", { d: "M15 15h.01", key: "lqbp3k" }]
];
var SquarePercent = createLucideIcon("square-percent", __iconNode1366);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-pi.js
var __iconNode1367 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M7 7h10", key: "udp07y" }],
["path", { d: "M10 7v10", key: "i1d9ee" }],
["path", { d: "M16 17a2 2 0 0 1-2-2V7", key: "ftwdc7" }]
];
var SquarePi = createLucideIcon("square-pi", __iconNode1367);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-pilcrow.js
var __iconNode1368 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M12 12H9.5a2.5 2.5 0 0 1 0-5H17", key: "1l9586" }],
["path", { d: "M12 7v10", key: "jspqdw" }],
["path", { d: "M16 7v10", key: "lavkr4" }]
];
var SquarePilcrow = createLucideIcon("square-pilcrow", __iconNode1368);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-play.js
var __iconNode1369 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "m9 8 6 4-6 4Z", key: "f1r3lt" }]
];
var SquarePlay = createLucideIcon("square-play", __iconNode1369);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-plus.js
var __iconNode1370 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
["path", { d: "M12 8v8", key: "napkw2" }]
];
var SquarePlus = createLucideIcon("square-plus", __iconNode1370);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-power.js
var __iconNode1371 = [
["path", { d: "M12 7v4", key: "xawao1" }],
["path", { d: "M7.998 9.003a5 5 0 1 0 8-.005", key: "1pek45" }],
["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", key: "h1oib" }]
];
var SquarePower = createLucideIcon("square-power", __iconNode1371);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-radical.js
var __iconNode1372 = [
["path", { d: "M7 12h2l2 5 2-10h4", key: "1fxv6h" }],
["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", key: "h1oib" }]
];
var SquareRadical = createLucideIcon("square-radical", __iconNode1372);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-round-corner.js
var __iconNode1373 = [
["path", { d: "M21 11a8 8 0 0 0-8-8", key: "1lxwo5" }],
["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4", key: "1dv2y5" }]
];
var SquareRoundCorner = createLucideIcon("square-round-corner", __iconNode1373);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-scissors.js
var __iconNode1374 = [
["rect", { width: "20", height: "20", x: "2", y: "2", rx: "2", key: "1btzen" }],
["circle", { cx: "8", cy: "8", r: "2", key: "14cg06" }],
["path", { d: "M9.414 9.414 12 12", key: "qz4lzr" }],
["path", { d: "M14.8 14.8 18 18", key: "11flf1" }],
["circle", { cx: "8", cy: "16", r: "2", key: "1acxsx" }],
["path", { d: "m18 6-8.586 8.586", key: "11kzk1" }]
];
var SquareScissors = createLucideIcon("square-scissors", __iconNode1374);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-sigma.js
var __iconNode1375 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M16 8.9V7H8l4 5-4 5h8v-1.9", key: "9nih0i" }]
];
var SquareSigma = createLucideIcon("square-sigma", __iconNode1375);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-slash.js
var __iconNode1376 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["line", { x1: "9", x2: "15", y1: "15", y2: "9", key: "1dfufj" }]
];
var SquareSlash = createLucideIcon("square-slash", __iconNode1376);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-split-horizontal.js
var __iconNode1377 = [
["path", { d: "M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3", key: "lubmu8" }],
["path", { d: "M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3", key: "1ag34g" }],
["line", { x1: "12", x2: "12", y1: "4", y2: "20", key: "1tx1rr" }]
];
var SquareSplitHorizontal = createLucideIcon("square-split-horizontal", __iconNode1377);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-split-vertical.js
var __iconNode1378 = [
["path", { d: "M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3", key: "1pi83i" }],
["path", { d: "M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3", key: "ido5k7" }],
["line", { x1: "4", x2: "20", y1: "12", y2: "12", key: "1e0a9i" }]
];
var SquareSplitVertical = createLucideIcon("square-split-vertical", __iconNode1378);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-square.js
var __iconNode1379 = [
["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", key: "h1oib" }],
["rect", { x: "8", y: "8", width: "8", height: "8", rx: "1", key: "z9xiuo" }]
];
var SquareSquare = createLucideIcon("square-square", __iconNode1379);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-stack.js
var __iconNode1380 = [
["path", { d: "M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2", key: "4i38lg" }],
["path", { d: "M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2", key: "mlte4a" }],
["rect", { width: "8", height: "8", x: "14", y: "14", rx: "2", key: "1fa9i4" }]
];
var SquareStack = createLucideIcon("square-stack", __iconNode1380);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-terminal.js
var __iconNode1381 = [
["path", { d: "m7 11 2-2-2-2", key: "1lz0vl" }],
["path", { d: "M11 13h4", key: "1p7l4v" }],
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }]
];
var SquareTerminal = createLucideIcon("square-terminal", __iconNode1381);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-user-round.js
var __iconNode1382 = [
["path", { d: "M18 21a6 6 0 0 0-12 0", key: "kaz2du" }],
["circle", { cx: "12", cy: "11", r: "4", key: "1gt34v" }],
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }]
];
var SquareUserRound = createLucideIcon("square-user-round", __iconNode1382);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-user.js
var __iconNode1383 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["circle", { cx: "12", cy: "10", r: "3", key: "ilqhr7" }],
["path", { d: "M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2", key: "1m6ac2" }]
];
var SquareUser = createLucideIcon("square-user", __iconNode1383);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square-x.js
var __iconNode1384 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
["path", { d: "m9 9 6 6", key: "z0biqf" }]
];
var SquareX = createLucideIcon("square-x", __iconNode1384);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square.js
var __iconNode1385 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }]
];
var Square = createLucideIcon("square", __iconNode1385);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/squares-exclude.js
var __iconNode1386 = [
[
"path",
{
d: "M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0",
key: "1mcohs"
}
],
[
"path",
{
d: "M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2",
key: "1r1efp"
}
]
];
var SquaresExclude = createLucideIcon("squares-exclude", __iconNode1386);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/squares-intersect.js
var __iconNode1387 = [
["path", { d: "M10 22a2 2 0 0 1-2-2", key: "i7yj1i" }],
["path", { d: "M14 2a2 2 0 0 1 2 2", key: "170a0m" }],
["path", { d: "M16 22h-2", key: "18d249" }],
["path", { d: "M2 10V8", key: "7yj4fe" }],
["path", { d: "M2 4a2 2 0 0 1 2-2", key: "ddgnws" }],
["path", { d: "M20 8a2 2 0 0 1 2 2", key: "1770vt" }],
["path", { d: "M22 14v2", key: "iot8ja" }],
["path", { d: "M22 20a2 2 0 0 1-2 2", key: "qj8q6g" }],
["path", { d: "M4 16a2 2 0 0 1-2-2", key: "1dnafg" }],
[
"path",
{ d: "M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z", key: "ci6f0b" }
],
["path", { d: "M8 2h2", key: "1gmkwm" }]
];
var SquaresIntersect = createLucideIcon("squares-intersect", __iconNode1387);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/squares-subtract.js
var __iconNode1388 = [
["path", { d: "M10 22a2 2 0 0 1-2-2", key: "i7yj1i" }],
["path", { d: "M16 22h-2", key: "18d249" }],
[
"path",
{
d: "M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z",
key: "1njgbb"
}
],
["path", { d: "M20 8a2 2 0 0 1 2 2", key: "1770vt" }],
["path", { d: "M22 14v2", key: "iot8ja" }],
["path", { d: "M22 20a2 2 0 0 1-2 2", key: "qj8q6g" }]
];
var SquaresSubtract = createLucideIcon("squares-subtract", __iconNode1388);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/squares-unite.js
var __iconNode1389 = [
[
"path",
{
d: "M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z",
key: "17jnth"
}
]
];
var SquaresUnite = createLucideIcon("squares-unite", __iconNode1389);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/squircle-dashed.js
var __iconNode1390 = [
["path", { d: "M13.77 3.043a34 34 0 0 0-3.54 0", key: "1oaobr" }],
["path", { d: "M13.771 20.956a33 33 0 0 1-3.541.001", key: "95iq0j" }],
["path", { d: "M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44", key: "1u6qty" }],
["path", { d: "M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438", key: "1ew6g6" }],
["path", { d: "M20.957 10.23a33 33 0 0 1 0 3.54", key: "1l9npr" }],
["path", { d: "M3.043 10.23a34 34 0 0 0 .001 3.541", key: "1it6jm" }],
["path", { d: "M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438", key: "14uchd" }],
["path", { d: "M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44", key: "8k4agb" }]
];
var SquircleDashed = createLucideIcon("squircle-dashed", __iconNode1390);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/squircle.js
var __iconNode1391 = [
["path", { d: "M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9", key: "garfkc" }]
];
var Squircle = createLucideIcon("squircle", __iconNode1391);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/squirrel.js
var __iconNode1392 = [
["path", { d: "M15.236 22a3 3 0 0 0-2.2-5", key: "21bitc" }],
["path", { d: "M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4", key: "oh0fg0" }],
["path", { d: "M18 13h.01", key: "9veqaj" }],
[
"path",
{
d: "M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10",
key: "980v8a"
}
]
];
var Squirrel = createLucideIcon("squirrel", __iconNode1392);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/stamp.js
var __iconNode1393 = [
["path", { d: "M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13", key: "i9gjdv" }],
[
"path",
{
d: "M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z",
key: "1vzg3v"
}
],
["path", { d: "M5 22h14", key: "ehvnwv" }]
];
var Stamp = createLucideIcon("stamp", __iconNode1393);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/star-half.js
var __iconNode1394 = [
[
"path",
{
d: "M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2",
key: "2ksp49"
}
]
];
var StarHalf = createLucideIcon("star-half", __iconNode1394);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/star-off.js
var __iconNode1395 = [
["path", { d: "M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43", key: "16m0ql" }],
["path", { d: "M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91", key: "1vt8nq" }],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var StarOff = createLucideIcon("star-off", __iconNode1395);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/star.js
var __iconNode1396 = [
[
"path",
{
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",
key: "r04s7s"
}
]
];
var Star = createLucideIcon("star", __iconNode1396);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/step-back.js
var __iconNode1397 = [
["line", { x1: "18", x2: "18", y1: "20", y2: "4", key: "cun8e5" }],
["polygon", { points: "14,20 4,12 14,4", key: "ypakod" }]
];
var StepBack = createLucideIcon("step-back", __iconNode1397);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/step-forward.js
var __iconNode1398 = [
["line", { x1: "6", x2: "6", y1: "4", y2: "20", key: "fy8qot" }],
["polygon", { points: "10,4 20,12 10,20", key: "1mc1pf" }]
];
var StepForward = createLucideIcon("step-forward", __iconNode1398);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/stethoscope.js
var __iconNode1399 = [
["path", { d: "M11 2v2", key: "1539x4" }],
["path", { d: "M5 2v2", key: "1yf1q8" }],
["path", { d: "M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1", key: "rb5t3r" }],
["path", { d: "M8 15a6 6 0 0 0 12 0v-3", key: "x18d4x" }],
["circle", { cx: "20", cy: "10", r: "2", key: "ts1r5v" }]
];
var Stethoscope = createLucideIcon("stethoscope", __iconNode1399);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sticker.js
var __iconNode1400 = [
[
"path",
{ d: "M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z", key: "1wis1t" }
],
["path", { d: "M14 3v4a2 2 0 0 0 2 2h4", key: "36rjfy" }],
["path", { d: "M8 13h.01", key: "1sbv64" }],
["path", { d: "M16 13h.01", key: "wip0gl" }],
["path", { d: "M10 16s.8 1 2 1c1.3 0 2-1 2-1", key: "1vvgv3" }]
];
var Sticker = createLucideIcon("sticker", __iconNode1400);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sticky-note.js
var __iconNode1401 = [
["path", { d: "M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z", key: "qazsjp" }],
["path", { d: "M15 3v4a2 2 0 0 0 2 2h4", key: "40519r" }]
];
var StickyNote = createLucideIcon("sticky-note", __iconNode1401);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/store.js
var __iconNode1402 = [
["path", { d: "m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7", key: "ztvudi" }],
["path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8", key: "1b2hhj" }],
["path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4", key: "2ebpfo" }],
["path", { d: "M2 7h20", key: "1fcdvo" }],
[
"path",
{
d: "M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7",
key: "6c3vgh"
}
]
];
var Store = createLucideIcon("store", __iconNode1402);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/stretch-horizontal.js
var __iconNode1403 = [
["rect", { width: "20", height: "6", x: "2", y: "4", rx: "2", key: "qdearl" }],
["rect", { width: "20", height: "6", x: "2", y: "14", rx: "2", key: "1xrn6j" }]
];
var StretchHorizontal = createLucideIcon("stretch-horizontal", __iconNode1403);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/stretch-vertical.js
var __iconNode1404 = [
["rect", { width: "6", height: "20", x: "4", y: "2", rx: "2", key: "19qu7m" }],
["rect", { width: "6", height: "20", x: "14", y: "2", rx: "2", key: "24v0nk" }]
];
var StretchVertical = createLucideIcon("stretch-vertical", __iconNode1404);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/strikethrough.js
var __iconNode1405 = [
["path", { d: "M16 4H9a3 3 0 0 0-2.83 4", key: "43sutm" }],
["path", { d: "M14 12a4 4 0 0 1 0 8H6", key: "nlfj13" }],
["line", { x1: "4", x2: "20", y1: "12", y2: "12", key: "1e0a9i" }]
];
var Strikethrough = createLucideIcon("strikethrough", __iconNode1405);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/subscript.js
var __iconNode1406 = [
["path", { d: "m4 5 8 8", key: "1eunvl" }],
["path", { d: "m12 5-8 8", key: "1ah0jp" }],
[
"path",
{
d: "M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07",
key: "e8ta8j"
}
]
];
var Subscript = createLucideIcon("subscript", __iconNode1406);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sun-dim.js
var __iconNode1407 = [
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
["path", { d: "M12 4h.01", key: "1ujb9j" }],
["path", { d: "M20 12h.01", key: "1ykeid" }],
["path", { d: "M12 20h.01", key: "zekei9" }],
["path", { d: "M4 12h.01", key: "158zrr" }],
["path", { d: "M17.657 6.343h.01", key: "31pqzk" }],
["path", { d: "M17.657 17.657h.01", key: "jehnf4" }],
["path", { d: "M6.343 17.657h.01", key: "gdk6ow" }],
["path", { d: "M6.343 6.343h.01", key: "1uurf0" }]
];
var SunDim = createLucideIcon("sun-dim", __iconNode1407);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sun-medium.js
var __iconNode1408 = [
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
["path", { d: "M12 3v1", key: "1asbbs" }],
["path", { d: "M12 20v1", key: "1wcdkc" }],
["path", { d: "M3 12h1", key: "lp3yf2" }],
["path", { d: "M20 12h1", key: "1vloll" }],
["path", { d: "m18.364 5.636-.707.707", key: "1hakh0" }],
["path", { d: "m6.343 17.657-.707.707", key: "18m9nf" }],
["path", { d: "m5.636 5.636.707.707", key: "1xv1c5" }],
["path", { d: "m17.657 17.657.707.707", key: "vl76zb" }]
];
var SunMedium = createLucideIcon("sun-medium", __iconNode1408);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sun-moon.js
var __iconNode1409 = [
["path", { d: "M12 2v2", key: "tus03m" }],
["path", { d: "M13 8.129A4 4 0 0 1 15.873 11", key: "my0cn3" }],
["path", { d: "m19 5-1.256 1.256", key: "1yg6a6" }],
["path", { d: "M20 12h2", key: "1q8mjw" }],
["path", { d: "M9 8a5 5 0 1 0 7 7 7 7 0 1 1-7-7", key: "4qob92" }]
];
var SunMoon = createLucideIcon("sun-moon", __iconNode1409);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sun-snow.js
var __iconNode1410 = [
["path", { d: "M10 21v-1", key: "1u8rkd" }],
["path", { d: "M10 4V3", key: "pkzwkn" }],
["path", { d: "M10 9a3 3 0 0 0 0 6", key: "gv75dk" }],
["path", { d: "m14 20 1.25-2.5L18 18", key: "1chtki" }],
["path", { d: "m14 4 1.25 2.5L18 6", key: "1b4wsy" }],
["path", { d: "m17 21-3-6 1.5-3H22", key: "o5qa3v" }],
["path", { d: "m17 3-3 6 1.5 3", key: "11697g" }],
["path", { d: "M2 12h1", key: "1uaihz" }],
["path", { d: "m20 10-1.5 2 1.5 2", key: "1swlpi" }],
["path", { d: "m3.64 18.36.7-.7", key: "105rm9" }],
["path", { d: "m4.34 6.34-.7-.7", key: "d3unjp" }]
];
var SunSnow = createLucideIcon("sun-snow", __iconNode1410);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sun.js
var __iconNode1411 = [
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
["path", { d: "M12 2v2", key: "tus03m" }],
["path", { d: "M12 20v2", key: "1lh1kg" }],
["path", { d: "m4.93 4.93 1.41 1.41", key: "149t6j" }],
["path", { d: "m17.66 17.66 1.41 1.41", key: "ptbguv" }],
["path", { d: "M2 12h2", key: "1t8f8n" }],
["path", { d: "M20 12h2", key: "1q8mjw" }],
["path", { d: "m6.34 17.66-1.41 1.41", key: "1m8zz5" }],
["path", { d: "m19.07 4.93-1.41 1.41", key: "1shlcs" }]
];
var Sun = createLucideIcon("sun", __iconNode1411);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sunrise.js
var __iconNode1412 = [
["path", { d: "M12 2v8", key: "1q4o3n" }],
["path", { d: "m4.93 10.93 1.41 1.41", key: "2a7f42" }],
["path", { d: "M2 18h2", key: "j10viu" }],
["path", { d: "M20 18h2", key: "wocana" }],
["path", { d: "m19.07 10.93-1.41 1.41", key: "15zs5n" }],
["path", { d: "M22 22H2", key: "19qnx5" }],
["path", { d: "m8 6 4-4 4 4", key: "ybng9g" }],
["path", { d: "M16 18a4 4 0 0 0-8 0", key: "1lzouq" }]
];
var Sunrise = createLucideIcon("sunrise", __iconNode1412);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/superscript.js
var __iconNode1413 = [
["path", { d: "m4 19 8-8", key: "hr47gm" }],
["path", { d: "m12 19-8-8", key: "1dhhmo" }],
[
"path",
{
d: "M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06",
key: "1dfcux"
}
]
];
var Superscript = createLucideIcon("superscript", __iconNode1413);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sunset.js
var __iconNode1414 = [
["path", { d: "M12 10V2", key: "16sf7g" }],
["path", { d: "m4.93 10.93 1.41 1.41", key: "2a7f42" }],
["path", { d: "M2 18h2", key: "j10viu" }],
["path", { d: "M20 18h2", key: "wocana" }],
["path", { d: "m19.07 10.93-1.41 1.41", key: "15zs5n" }],
["path", { d: "M22 22H2", key: "19qnx5" }],
["path", { d: "m16 6-4 4-4-4", key: "6wukr" }],
["path", { d: "M16 18a4 4 0 0 0-8 0", key: "1lzouq" }]
];
var Sunset = createLucideIcon("sunset", __iconNode1414);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/swatch-book.js
var __iconNode1415 = [
["path", { d: "M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z", key: "1ldrpk" }],
["path", { d: "M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7", key: "11i5po" }],
["path", { d: "M 7 17h.01", key: "1euzgo" }],
[
"path",
{
d: "m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8",
key: "o2gii7"
}
]
];
var SwatchBook = createLucideIcon("swatch-book", __iconNode1415);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/swiss-franc.js
var __iconNode1416 = [
["path", { d: "M10 21V3h8", key: "br2l0g" }],
["path", { d: "M6 16h9", key: "2py0wn" }],
["path", { d: "M10 9.5h7", key: "13dmhz" }]
];
var SwissFranc = createLucideIcon("swiss-franc", __iconNode1416);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/switch-camera.js
var __iconNode1417 = [
["path", { d: "M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5", key: "mtk2lu" }],
["path", { d: "M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5", key: "120jsl" }],
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }],
["path", { d: "m18 22-3-3 3-3", key: "kgdoj7" }],
["path", { d: "m6 2 3 3-3 3", key: "1fnbkv" }]
];
var SwitchCamera = createLucideIcon("switch-camera", __iconNode1417);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sword.js
var __iconNode1418 = [
["polyline", { points: "14.5 17.5 3 6 3 3 6 3 17.5 14.5", key: "1hfsw2" }],
["line", { x1: "13", x2: "19", y1: "19", y2: "13", key: "1vrmhu" }],
["line", { x1: "16", x2: "20", y1: "16", y2: "20", key: "1bron3" }],
["line", { x1: "19", x2: "21", y1: "21", y2: "19", key: "13pww6" }]
];
var Sword = createLucideIcon("sword", __iconNode1418);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/swords.js
var __iconNode1419 = [
["polyline", { points: "14.5 17.5 3 6 3 3 6 3 17.5 14.5", key: "1hfsw2" }],
["line", { x1: "13", x2: "19", y1: "19", y2: "13", key: "1vrmhu" }],
["line", { x1: "16", x2: "20", y1: "16", y2: "20", key: "1bron3" }],
["line", { x1: "19", x2: "21", y1: "21", y2: "19", key: "13pww6" }],
["polyline", { points: "14.5 6.5 18 3 21 3 21 6 17.5 9.5", key: "hbey2j" }],
["line", { x1: "5", x2: "9", y1: "14", y2: "18", key: "1hf58s" }],
["line", { x1: "7", x2: "4", y1: "17", y2: "20", key: "pidxm4" }],
["line", { x1: "3", x2: "5", y1: "19", y2: "21", key: "1pehsh" }]
];
var Swords = createLucideIcon("swords", __iconNode1419);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/syringe.js
var __iconNode1420 = [
["path", { d: "m18 2 4 4", key: "22kx64" }],
["path", { d: "m17 7 3-3", key: "1w1zoj" }],
["path", { d: "M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5", key: "1exhtz" }],
["path", { d: "m9 11 4 4", key: "rovt3i" }],
["path", { d: "m5 19-3 3", key: "59f2uf" }],
["path", { d: "m14 4 6 6", key: "yqp9t2" }]
];
var Syringe = createLucideIcon("syringe", __iconNode1420);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table-2.js
var __iconNode1421 = [
[
"path",
{
d: "M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18",
key: "gugj83"
}
]
];
var Table2 = createLucideIcon("table-2", __iconNode1421);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table-cells-merge.js
var __iconNode1422 = [
["path", { d: "M12 21v-6", key: "lihzve" }],
["path", { d: "M12 9V3", key: "da5inc" }],
["path", { d: "M3 15h18", key: "5xshup" }],
["path", { d: "M3 9h18", key: "1pudct" }],
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }]
];
var TableCellsMerge = createLucideIcon("table-cells-merge", __iconNode1422);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table-cells-split.js
var __iconNode1423 = [
["path", { d: "M12 15V9", key: "8c7uyn" }],
["path", { d: "M3 15h18", key: "5xshup" }],
["path", { d: "M3 9h18", key: "1pudct" }],
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }]
];
var TableCellsSplit = createLucideIcon("table-cells-split", __iconNode1423);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table-columns-split.js
var __iconNode1424 = [
["path", { d: "M14 14v2", key: "w2a1xv" }],
["path", { d: "M14 20v2", key: "1lq872" }],
["path", { d: "M14 2v2", key: "6buw04" }],
["path", { d: "M14 8v2", key: "i67w9a" }],
["path", { d: "M2 15h8", key: "82wtch" }],
["path", { d: "M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2", key: "up0l64" }],
["path", { d: "M2 9h8", key: "yelfik" }],
["path", { d: "M22 15h-4", key: "1es58f" }],
["path", { d: "M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2", key: "pdjoqf" }],
["path", { d: "M22 9h-4", key: "1luja7" }],
["path", { d: "M5 3v18", key: "14hmio" }]
];
var TableColumnsSplit = createLucideIcon("table-columns-split", __iconNode1424);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table-of-contents.js
var __iconNode1425 = [
["path", { d: "M16 12H3", key: "1a2rj7" }],
["path", { d: "M16 18H3", key: "12xzn7" }],
["path", { d: "M16 6H3", key: "1wxfjs" }],
["path", { d: "M21 12h.01", key: "msek7k" }],
["path", { d: "M21 18h.01", key: "1e8rq1" }],
["path", { d: "M21 6h.01", key: "1koanj" }]
];
var TableOfContents = createLucideIcon("table-of-contents", __iconNode1425);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table-properties.js
var __iconNode1426 = [
["path", { d: "M15 3v18", key: "14nvp0" }],
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M21 9H3", key: "1338ky" }],
["path", { d: "M21 15H3", key: "9uk58r" }]
];
var TableProperties = createLucideIcon("table-properties", __iconNode1426);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table-rows-split.js
var __iconNode1427 = [
["path", { d: "M14 10h2", key: "1lstlu" }],
["path", { d: "M15 22v-8", key: "1fwwgm" }],
["path", { d: "M15 2v4", key: "1044rn" }],
["path", { d: "M2 10h2", key: "1r8dkt" }],
["path", { d: "M20 10h2", key: "1ug425" }],
["path", { d: "M3 19h18", key: "awlh7x" }],
["path", { d: "M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6", key: "ibqhof" }],
["path", { d: "M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2", key: "1uenja" }],
["path", { d: "M8 10h2", key: "66od0" }],
["path", { d: "M9 22v-8", key: "fmnu31" }],
["path", { d: "M9 2v4", key: "j1yeou" }]
];
var TableRowsSplit = createLucideIcon("table-rows-split", __iconNode1427);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table.js
var __iconNode1428 = [
["path", { d: "M12 3v18", key: "108xh3" }],
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 9h18", key: "1pudct" }],
["path", { d: "M3 15h18", key: "5xshup" }]
];
var Table = createLucideIcon("table", __iconNode1428);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tablet-smartphone.js
var __iconNode1429 = [
["rect", { width: "10", height: "14", x: "3", y: "8", rx: "2", key: "1vrsiq" }],
["path", { d: "M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4", key: "1j4zmg" }],
["path", { d: "M8 18h.01", key: "lrp35t" }]
];
var TabletSmartphone = createLucideIcon("tablet-smartphone", __iconNode1429);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tablet.js
var __iconNode1430 = [
["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", ry: "2", key: "76otgf" }],
["line", { x1: "12", x2: "12.01", y1: "18", y2: "18", key: "1dp563" }]
];
var Tablet = createLucideIcon("tablet", __iconNode1430);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tablets.js
var __iconNode1431 = [
["circle", { cx: "7", cy: "7", r: "5", key: "x29byf" }],
["circle", { cx: "17", cy: "17", r: "5", key: "1op1d2" }],
["path", { d: "M12 17h10", key: "ls21zv" }],
["path", { d: "m3.46 10.54 7.08-7.08", key: "1rehiu" }]
];
var Tablets = createLucideIcon("tablets", __iconNode1431);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tag.js
var __iconNode1432 = [
[
"path",
{
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",
key: "vktsd0"
}
],
["circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor", key: "kqv944" }]
];
var Tag = createLucideIcon("tag", __iconNode1432);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tags.js
var __iconNode1433 = [
["path", { d: "m15 5 6.3 6.3a2.4 2.4 0 0 1 0 3.4L17 19", key: "1cbfv1" }],
[
"path",
{
d: "M9.586 5.586A2 2 0 0 0 8.172 5H3a1 1 0 0 0-1 1v5.172a2 2 0 0 0 .586 1.414L8.29 18.29a2.426 2.426 0 0 0 3.42 0l3.58-3.58a2.426 2.426 0 0 0 0-3.42z",
key: "135mg7"
}
],
["circle", { cx: "6.5", cy: "9.5", r: ".5", fill: "currentColor", key: "5pm5xn" }]
];
var Tags = createLucideIcon("tags", __iconNode1433);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tally-1.js
var __iconNode1434 = [["path", { d: "M4 4v16", key: "6qkkli" }]];
var Tally1 = createLucideIcon("tally-1", __iconNode1434);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tally-2.js
var __iconNode1435 = [
["path", { d: "M4 4v16", key: "6qkkli" }],
["path", { d: "M9 4v16", key: "81ygyz" }]
];
var Tally2 = createLucideIcon("tally-2", __iconNode1435);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tally-3.js
var __iconNode1436 = [
["path", { d: "M4 4v16", key: "6qkkli" }],
["path", { d: "M9 4v16", key: "81ygyz" }],
["path", { d: "M14 4v16", key: "12vmem" }]
];
var Tally3 = createLucideIcon("tally-3", __iconNode1436);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tally-4.js
var __iconNode1437 = [
["path", { d: "M4 4v16", key: "6qkkli" }],
["path", { d: "M9 4v16", key: "81ygyz" }],
["path", { d: "M14 4v16", key: "12vmem" }],
["path", { d: "M19 4v16", key: "8ij5ei" }]
];
var Tally4 = createLucideIcon("tally-4", __iconNode1437);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tally-5.js
var __iconNode1438 = [
["path", { d: "M4 4v16", key: "6qkkli" }],
["path", { d: "M9 4v16", key: "81ygyz" }],
["path", { d: "M14 4v16", key: "12vmem" }],
["path", { d: "M19 4v16", key: "8ij5ei" }],
["path", { d: "M22 6 2 18", key: "h9moai" }]
];
var Tally5 = createLucideIcon("tally-5", __iconNode1438);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tangent.js
var __iconNode1439 = [
["circle", { cx: "17", cy: "4", r: "2", key: "y5j2s2" }],
["path", { d: "M15.59 5.41 5.41 15.59", key: "l0vprr" }],
["circle", { cx: "4", cy: "17", r: "2", key: "9p4efm" }],
["path", { d: "M12 22s-4-9-1.5-11.5S22 12 22 12", key: "1twk4o" }]
];
var Tangent = createLucideIcon("tangent", __iconNode1439);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/target.js
var __iconNode1440 = [
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
["circle", { cx: "12", cy: "12", r: "6", key: "1vlfrh" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
];
var Target = createLucideIcon("target", __iconNode1440);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/telescope.js
var __iconNode1441 = [
[
"path",
{
d: "m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44",
key: "k4qptu"
}
],
["path", { d: "m13.56 11.747 4.332-.924", key: "19l80z" }],
["path", { d: "m16 21-3.105-6.21", key: "7oh9d" }],
[
"path",
{
d: "M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z",
key: "m7xp4m"
}
],
["path", { d: "m6.158 8.633 1.114 4.456", key: "74o979" }],
["path", { d: "m8 21 3.105-6.21", key: "1fvxut" }],
["circle", { cx: "12", cy: "13", r: "2", key: "1c1ljs" }]
];
var Telescope = createLucideIcon("telescope", __iconNode1441);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tent-tree.js
var __iconNode1442 = [
["circle", { cx: "4", cy: "4", r: "2", key: "bt5ra8" }],
["path", { d: "m14 5 3-3 3 3", key: "1sorif" }],
["path", { d: "m14 10 3-3 3 3", key: "1jyi9h" }],
["path", { d: "M17 14V2", key: "8ymqnk" }],
["path", { d: "M17 14H7l-5 8h20Z", key: "13ar7p" }],
["path", { d: "M8 14v8", key: "1ghmqk" }],
["path", { d: "m9 14 5 8", key: "13pgi6" }]
];
var TentTree = createLucideIcon("tent-tree", __iconNode1442);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tent.js
var __iconNode1443 = [
["path", { d: "M3.5 21 14 3", key: "1szst5" }],
["path", { d: "M20.5 21 10 3", key: "1310c3" }],
["path", { d: "M15.5 21 12 15l-3.5 6", key: "1ddtfw" }],
["path", { d: "M2 21h20", key: "1nyx9w" }]
];
var Tent = createLucideIcon("tent", __iconNode1443);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/terminal.js
var __iconNode1444 = [
["path", { d: "M12 19h8", key: "baeox8" }],
["path", { d: "m4 17 6-6-6-6", key: "1yngyt" }]
];
var Terminal = createLucideIcon("terminal", __iconNode1444);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/test-tube-diagonal.js
var __iconNode1445 = [
[
"path",
{ d: "M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3", key: "1ub6xw" }
],
["path", { d: "m16 2 6 6", key: "1gw87d" }],
["path", { d: "M12 16H4", key: "1cjfip" }]
];
var TestTubeDiagonal = createLucideIcon("test-tube-diagonal", __iconNode1445);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/test-tube.js
var __iconNode1446 = [
["path", { d: "M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2", key: "125lnx" }],
["path", { d: "M8.5 2h7", key: "csnxdl" }],
["path", { d: "M14.5 16h-5", key: "1ox875" }]
];
var TestTube = createLucideIcon("test-tube", __iconNode1446);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/test-tubes.js
var __iconNode1447 = [
["path", { d: "M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2", key: "1hjrqt" }],
["path", { d: "M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2", key: "16lc8n" }],
["path", { d: "M3 2h7", key: "7s29d5" }],
["path", { d: "M14 2h7", key: "7sicin" }],
["path", { d: "M9 16H4", key: "1bfye3" }],
["path", { d: "M20 16h-5", key: "ddnjpe" }]
];
var TestTubes = createLucideIcon("test-tubes", __iconNode1447);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/text-cursor-input.js
var __iconNode1448 = [
["path", { d: "M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6", key: "1528k5" }],
["path", { d: "M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7", key: "13ksps" }],
["path", { d: "M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1", key: "1n9rhb" }],
["path", { d: "M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1", key: "1mj8rg" }],
["path", { d: "M9 6v12", key: "velyjx" }]
];
var TextCursorInput = createLucideIcon("text-cursor-input", __iconNode1448);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/text-quote.js
var __iconNode1449 = [
["path", { d: "M17 6H3", key: "16j9eg" }],
["path", { d: "M21 12H8", key: "scolzb" }],
["path", { d: "M21 18H8", key: "1wfozv" }],
["path", { d: "M3 12v6", key: "fv4c87" }]
];
var TextQuote = createLucideIcon("text-quote", __iconNode1449);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/text-cursor.js
var __iconNode1450 = [
["path", { d: "M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1", key: "uvaxm9" }],
["path", { d: "M7 22h1a4 4 0 0 0 4-4v-1", key: "11xy8d" }],
["path", { d: "M7 2h1a4 4 0 0 1 4 4v1", key: "1uw06m" }]
];
var TextCursor = createLucideIcon("text-cursor", __iconNode1450);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/text-search.js
var __iconNode1451 = [
["path", { d: "M21 6H3", key: "1jwq7v" }],
["path", { d: "M10 12H3", key: "1ulcyk" }],
["path", { d: "M10 18H3", key: "13769t" }],
["circle", { cx: "17", cy: "15", r: "3", key: "1upz2a" }],
["path", { d: "m21 19-1.9-1.9", key: "dwi7p8" }]
];
var TextSearch = createLucideIcon("text-search", __iconNode1451);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/text-select.js
var __iconNode1452 = [
["path", { d: "M14 21h1", key: "v9vybs" }],
["path", { d: "M14 3h1", key: "1ec4yj" }],
["path", { d: "M19 3a2 2 0 0 1 2 2", key: "18rm91" }],
["path", { d: "M21 14v1", key: "169vum" }],
["path", { d: "M21 19a2 2 0 0 1-2 2", key: "1j7049" }],
["path", { d: "M21 9v1", key: "mxsmne" }],
["path", { d: "M3 14v1", key: "vnatye" }],
["path", { d: "M3 9v1", key: "1r0deq" }],
["path", { d: "M5 21a2 2 0 0 1-2-2", key: "sbafld" }],
["path", { d: "M5 3a2 2 0 0 0-2 2", key: "y57alp" }],
["path", { d: "M7 12h10", key: "b7w52i" }],
["path", { d: "M7 16h6", key: "1vyc9m" }],
["path", { d: "M7 8h8", key: "1jbsf9" }],
["path", { d: "M9 21h1", key: "15o7lz" }],
["path", { d: "M9 3h1", key: "1yesri" }]
];
var TextSelect = createLucideIcon("text-select", __iconNode1452);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/text.js
var __iconNode1453 = [
["path", { d: "M15 18H3", key: "olowqp" }],
["path", { d: "M17 6H3", key: "16j9eg" }],
["path", { d: "M21 12H3", key: "2avoz0" }]
];
var Text = createLucideIcon("text", __iconNode1453);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/theater.js
var __iconNode1454 = [
["path", { d: "M2 10s3-3 3-8", key: "3xiif0" }],
["path", { d: "M22 10s-3-3-3-8", key: "ioaa5q" }],
["path", { d: "M10 2c0 4.4-3.6 8-8 8", key: "16fkpi" }],
["path", { d: "M14 2c0 4.4 3.6 8 8 8", key: "b9eulq" }],
["path", { d: "M2 10s2 2 2 5", key: "1au1lb" }],
["path", { d: "M22 10s-2 2-2 5", key: "qi2y5e" }],
["path", { d: "M8 15h8", key: "45n4r" }],
["path", { d: "M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1", key: "1vsc2m" }],
["path", { d: "M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1", key: "hrha4u" }]
];
var Theater = createLucideIcon("theater", __iconNode1454);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/thermometer-snowflake.js
var __iconNode1455 = [
["path", { d: "m10 20-1.25-2.5L6 18", key: "18frcb" }],
["path", { d: "M10 4 8.75 6.5 6 6", key: "7mghy3" }],
["path", { d: "M10.585 15H10", key: "4nqulp" }],
["path", { d: "M2 12h6.5L10 9", key: "kv9z4n" }],
["path", { d: "M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z", key: "yu0u2z" }],
["path", { d: "m4 10 1.5 2L4 14", key: "k9enpj" }],
["path", { d: "m7 21 3-6-1.5-3", key: "j8hb9u" }],
["path", { d: "m7 3 3 6h2", key: "1bbqgq" }]
];
var ThermometerSnowflake = createLucideIcon("thermometer-snowflake", __iconNode1455);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/thermometer-sun.js
var __iconNode1456 = [
["path", { d: "M12 9a4 4 0 0 0-2 7.5", key: "1jvsq6" }],
["path", { d: "M12 3v2", key: "1w22ol" }],
["path", { d: "m6.6 18.4-1.4 1.4", key: "w2yidj" }],
["path", { d: "M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z", key: "iof6y5" }],
["path", { d: "M4 13H2", key: "118le4" }],
["path", { d: "M6.34 7.34 4.93 5.93", key: "1brd51" }]
];
var ThermometerSun = createLucideIcon("thermometer-sun", __iconNode1456);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/thermometer.js
var __iconNode1457 = [
["path", { d: "M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z", key: "17jzev" }]
];
var Thermometer = createLucideIcon("thermometer", __iconNode1457);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/thumbs-down.js
var __iconNode1458 = [
["path", { d: "M17 14V2", key: "8ymqnk" }],
[
"path",
{
d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z",
key: "m61m77"
}
]
];
var ThumbsDown = createLucideIcon("thumbs-down", __iconNode1458);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/thumbs-up.js
var __iconNode1459 = [
["path", { d: "M7 10v12", key: "1qc93n" }],
[
"path",
{
d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z",
key: "emmmcr"
}
]
];
var ThumbsUp = createLucideIcon("thumbs-up", __iconNode1459);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ticket-check.js
var __iconNode1460 = [
[
"path",
{
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
key: "qn84l0"
}
],
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
];
var TicketCheck = createLucideIcon("ticket-check", __iconNode1460);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ticket-minus.js
var __iconNode1461 = [
[
"path",
{
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
key: "qn84l0"
}
],
["path", { d: "M9 12h6", key: "1c52cq" }]
];
var TicketMinus = createLucideIcon("ticket-minus", __iconNode1461);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ticket-percent.js
var __iconNode1462 = [
[
"path",
{
d: "M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
key: "1l48ns"
}
],
["path", { d: "M9 9h.01", key: "1q5me6" }],
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
["path", { d: "M15 15h.01", key: "lqbp3k" }]
];
var TicketPercent = createLucideIcon("ticket-percent", __iconNode1462);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ticket-plus.js
var __iconNode1463 = [
[
"path",
{
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
key: "qn84l0"
}
],
["path", { d: "M9 12h6", key: "1c52cq" }],
["path", { d: "M12 9v6", key: "199k2o" }]
];
var TicketPlus = createLucideIcon("ticket-plus", __iconNode1463);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ticket-slash.js
var __iconNode1464 = [
[
"path",
{
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
key: "qn84l0"
}
],
["path", { d: "m9.5 14.5 5-5", key: "qviqfa" }]
];
var TicketSlash = createLucideIcon("ticket-slash", __iconNode1464);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ticket-x.js
var __iconNode1465 = [
[
"path",
{
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
key: "qn84l0"
}
],
["path", { d: "m9.5 14.5 5-5", key: "qviqfa" }],
["path", { d: "m9.5 9.5 5 5", key: "18nt4w" }]
];
var TicketX = createLucideIcon("ticket-x", __iconNode1465);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ticket.js
var __iconNode1466 = [
[
"path",
{
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
key: "qn84l0"
}
],
["path", { d: "M13 5v2", key: "dyzc3o" }],
["path", { d: "M13 17v2", key: "1ont0d" }],
["path", { d: "M13 11v2", key: "1wjjxi" }]
];
var Ticket = createLucideIcon("ticket", __iconNode1466);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tickets-plane.js
var __iconNode1467 = [
["path", { d: "M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12", key: "16muxl" }],
["path", { d: "m12 13.5 3.75.5", key: "1i9qhk" }],
["path", { d: "m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8", key: "12lg5p" }],
["path", { d: "M6 10V8", key: "1y41hn" }],
["path", { d: "M6 14v1", key: "cao2tf" }],
["path", { d: "M6 19v2", key: "1loha6" }],
["rect", { x: "2", y: "8", width: "20", height: "13", rx: "2", key: "p3bz5l" }]
];
var TicketsPlane = createLucideIcon("tickets-plane", __iconNode1467);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tickets.js
var __iconNode1468 = [
["path", { d: "m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8", key: "12lg5p" }],
["path", { d: "M6 10V8", key: "1y41hn" }],
["path", { d: "M6 14v1", key: "cao2tf" }],
["path", { d: "M6 19v2", key: "1loha6" }],
["rect", { x: "2", y: "8", width: "20", height: "13", rx: "2", key: "p3bz5l" }]
];
var Tickets = createLucideIcon("tickets", __iconNode1468);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/timer-off.js
var __iconNode1469 = [
["path", { d: "M10 2h4", key: "n1abiw" }],
["path", { d: "M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7", key: "10he05" }],
["path", { d: "M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2", key: "15f7sh" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M12 12v-2", key: "fwoke6" }]
];
var TimerOff = createLucideIcon("timer-off", __iconNode1469);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/timer-reset.js
var __iconNode1470 = [
["path", { d: "M10 2h4", key: "n1abiw" }],
["path", { d: "M12 14v-4", key: "1evpnu" }],
["path", { d: "M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6", key: "1ts96g" }],
["path", { d: "M9 17H4v5", key: "8t5av" }]
];
var TimerReset = createLucideIcon("timer-reset", __iconNode1470);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/timer.js
var __iconNode1471 = [
["line", { x1: "10", x2: "14", y1: "2", y2: "2", key: "14vaq8" }],
["line", { x1: "12", x2: "15", y1: "14", y2: "11", key: "17fdiu" }],
["circle", { cx: "12", cy: "14", r: "8", key: "1e1u0o" }]
];
var Timer = createLucideIcon("timer", __iconNode1471);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/toggle-left.js
var __iconNode1472 = [
["circle", { cx: "9", cy: "12", r: "3", key: "u3jwor" }],
["rect", { width: "20", height: "14", x: "2", y: "5", rx: "7", key: "g7kal2" }]
];
var ToggleLeft = createLucideIcon("toggle-left", __iconNode1472);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/toggle-right.js
var __iconNode1473 = [
["circle", { cx: "15", cy: "12", r: "3", key: "1afu0r" }],
["rect", { width: "20", height: "14", x: "2", y: "5", rx: "7", key: "g7kal2" }]
];
var ToggleRight = createLucideIcon("toggle-right", __iconNode1473);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/toilet.js
var __iconNode1474 = [
[
"path",
{
d: "M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18",
key: "kc4kqr"
}
],
["path", { d: "M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8", key: "1tqs57" }]
];
var Toilet = createLucideIcon("toilet", __iconNode1474);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tool-case.js
var __iconNode1475 = [
["path", { d: "M10 15h4", key: "192ueg" }],
[
"path",
{
d: "m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27",
key: "xbnumr"
}
],
[
"path",
{
d: "m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122",
key: "eaw7gc"
}
],
[
"path",
{
d: "M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z",
key: "1vaooh"
}
]
];
var ToolCase = createLucideIcon("tool-case", __iconNode1475);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tornado.js
var __iconNode1476 = [
["path", { d: "M21 4H3", key: "1hwok0" }],
["path", { d: "M18 8H6", key: "41n648" }],
["path", { d: "M19 12H9", key: "1g4lpz" }],
["path", { d: "M16 16h-6", key: "1j5d54" }],
["path", { d: "M11 20H9", key: "39obr8" }]
];
var Tornado = createLucideIcon("tornado", __iconNode1476);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/torus.js
var __iconNode1477 = [
["ellipse", { cx: "12", cy: "11", rx: "3", ry: "2", key: "1b2qxu" }],
["ellipse", { cx: "12", cy: "12.5", rx: "10", ry: "8.5", key: "h8emeu" }]
];
var Torus = createLucideIcon("torus", __iconNode1477);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/touchpad.js
var __iconNode1478 = [
["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2", key: "18n3k1" }],
["path", { d: "M2 14h20", key: "myj16y" }],
["path", { d: "M12 20v-6", key: "1rm09r" }]
];
var Touchpad = createLucideIcon("touchpad", __iconNode1478);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/touchpad-off.js
var __iconNode1479 = [
["path", { d: "M12 20v-6", key: "1rm09r" }],
["path", { d: "M19.656 14H22", key: "170xzr" }],
["path", { d: "M2 14h12", key: "d8icqz" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
["path", { d: "M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2", key: "s23sx2" }],
["path", { d: "M9.656 4H20a2 2 0 0 1 2 2v10.344", key: "ovjcvl" }]
];
var TouchpadOff = createLucideIcon("touchpad-off", __iconNode1479);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tower-control.js
var __iconNode1480 = [
[
"path",
{ d: "M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z", key: "1pledb" }
],
["path", { d: "M8 13v9", key: "hmv0ci" }],
["path", { d: "M16 22v-9", key: "ylnf1u" }],
["path", { d: "m9 6 1 7", key: "dpdgam" }],
["path", { d: "m15 6-1 7", key: "ls7zgu" }],
["path", { d: "M12 6V2", key: "1pj48d" }],
["path", { d: "M13 2h-2", key: "mj6ths" }]
];
var TowerControl = createLucideIcon("tower-control", __iconNode1480);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/toy-brick.js
var __iconNode1481 = [
["rect", { width: "18", height: "12", x: "3", y: "8", rx: "1", key: "158fvp" }],
["path", { d: "M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3", key: "s0042v" }],
["path", { d: "M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3", key: "9wmeh2" }]
];
var ToyBrick = createLucideIcon("toy-brick", __iconNode1481);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tractor.js
var __iconNode1482 = [
["path", { d: "m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20", key: "she1j9" }],
["path", { d: "M16 18h-5", key: "bq60fd" }],
["path", { d: "M18 5a1 1 0 0 0-1 1v5.573", key: "1kv8ia" }],
["path", { d: "M3 4h8.129a1 1 0 0 1 .99.863L13 11.246", key: "1q1ert" }],
["path", { d: "M4 11V4", key: "9ft8pt" }],
["path", { d: "M7 15h.01", key: "k5ht0j" }],
["path", { d: "M8 10.1V4", key: "1jgyzo" }],
["circle", { cx: "18", cy: "18", r: "2", key: "1emm8v" }],
["circle", { cx: "7", cy: "15", r: "5", key: "ddtuc" }]
];
var Tractor = createLucideIcon("tractor", __iconNode1482);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/traffic-cone.js
var __iconNode1483 = [
["path", { d: "M16.05 10.966a5 2.5 0 0 1-8.1 0", key: "m5jpwb" }],
[
"path",
{
d: "m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04",
key: "rbg3g8"
}
],
["path", { d: "M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z", key: "vap8c8" }],
["path", { d: "M9.194 6.57a5 2.5 0 0 0 5.61 0", key: "15hn5c" }]
];
var TrafficCone = createLucideIcon("traffic-cone", __iconNode1483);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/train-front-tunnel.js
var __iconNode1484 = [
["path", { d: "M2 22V12a10 10 0 1 1 20 0v10", key: "o0fyp0" }],
["path", { d: "M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8", key: "m8q3n9" }],
["path", { d: "M10 15h.01", key: "44in9x" }],
["path", { d: "M14 15h.01", key: "5mohn5" }],
["path", { d: "M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z", key: "hckbmu" }],
["path", { d: "m9 19-2 3", key: "iij7hm" }],
["path", { d: "m15 19 2 3", key: "npx8sa" }]
];
var TrainFrontTunnel = createLucideIcon("train-front-tunnel", __iconNode1484);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/train-front.js
var __iconNode1485 = [
["path", { d: "M8 3.1V7a4 4 0 0 0 8 0V3.1", key: "1v71zp" }],
["path", { d: "m9 15-1-1", key: "1yrq24" }],
["path", { d: "m15 15 1-1", key: "1t0d6s" }],
["path", { d: "M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z", key: "1p0hjs" }],
["path", { d: "m8 19-2 3", key: "13i0xs" }],
["path", { d: "m16 19 2 3", key: "xo31yx" }]
];
var TrainFront = createLucideIcon("train-front", __iconNode1485);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/train-track.js
var __iconNode1486 = [
["path", { d: "M2 17 17 2", key: "18b09t" }],
["path", { d: "m2 14 8 8", key: "1gv9hu" }],
["path", { d: "m5 11 8 8", key: "189pqp" }],
["path", { d: "m8 8 8 8", key: "1imecy" }],
["path", { d: "m11 5 8 8", key: "ummqn6" }],
["path", { d: "m14 2 8 8", key: "1vk7dn" }],
["path", { d: "M7 22 22 7", key: "15mb1i" }]
];
var TrainTrack = createLucideIcon("train-track", __iconNode1486);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tram-front.js
var __iconNode1487 = [
["rect", { width: "16", height: "16", x: "4", y: "3", rx: "2", key: "1wxw4b" }],
["path", { d: "M4 11h16", key: "mpoxn0" }],
["path", { d: "M12 3v8", key: "1h2ygw" }],
["path", { d: "m8 19-2 3", key: "13i0xs" }],
["path", { d: "m18 22-2-3", key: "1p0ohu" }],
["path", { d: "M8 15h.01", key: "a7atzg" }],
["path", { d: "M16 15h.01", key: "rnfrdf" }]
];
var TramFront = createLucideIcon("tram-front", __iconNode1487);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/transgender.js
var __iconNode1488 = [
["path", { d: "M12 16v6", key: "c8a4gj" }],
["path", { d: "M14 20h-4", key: "m8m19d" }],
["path", { d: "M18 2h4v4", key: "1341mj" }],
["path", { d: "m2 2 7.17 7.17", key: "13q8l2" }],
["path", { d: "M2 5.355V2h3.357", key: "18136r" }],
["path", { d: "m22 2-7.17 7.17", key: "1epvy4" }],
["path", { d: "M8 5 5 8", key: "mgbjhz" }],
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }]
];
var Transgender = createLucideIcon("transgender", __iconNode1488);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash-2.js
var __iconNode1489 = [
["path", { d: "M3 6h18", key: "d0wm0j" }],
["path", { d: "M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6", key: "4alrt4" }],
["path", { d: "M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2", key: "v07s0e" }],
["line", { x1: "10", x2: "10", y1: "11", y2: "17", key: "1uufr5" }],
["line", { x1: "14", x2: "14", y1: "11", y2: "17", key: "xtxkd" }]
];
var Trash2 = createLucideIcon("trash-2", __iconNode1489);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash.js
var __iconNode1490 = [
["path", { d: "M3 6h18", key: "d0wm0j" }],
["path", { d: "M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6", key: "4alrt4" }],
["path", { d: "M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2", key: "v07s0e" }]
];
var Trash = createLucideIcon("trash", __iconNode1490);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tree-deciduous.js
var __iconNode1491 = [
[
"path",
{
d: "M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z",
key: "oadzkq"
}
],
["path", { d: "M12 19v3", key: "npa21l" }]
];
var TreeDeciduous = createLucideIcon("tree-deciduous", __iconNode1491);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tree-palm.js
var __iconNode1492 = [
["path", { d: "M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4", key: "foxbe7" }],
[
"path",
{ d: "M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3", key: "18arnh" }
],
[
"path",
{
d: "M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35",
key: "ywahnh"
}
],
["path", { d: "M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14", key: "ft0feo" }]
];
var TreePalm = createLucideIcon("tree-palm", __iconNode1492);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tree-pine.js
var __iconNode1493 = [
[
"path",
{
d: "m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z",
key: "cpyugq"
}
],
["path", { d: "M12 22v-3", key: "kmzjlo" }]
];
var TreePine = createLucideIcon("tree-pine", __iconNode1493);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trees.js
var __iconNode1494 = [
["path", { d: "M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z", key: "1l6gj6" }],
["path", { d: "M7 16v6", key: "1a82de" }],
["path", { d: "M13 19v3", key: "13sx9i" }],
[
"path",
{
d: "M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5",
key: "1sj9kv"
}
]
];
var Trees = createLucideIcon("trees", __iconNode1494);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trending-down.js
var __iconNode1495 = [
["path", { d: "M16 17h6v-6", key: "t6n2it" }],
["path", { d: "m22 17-8.5-8.5-5 5L2 7", key: "x473p" }]
];
var TrendingDown = createLucideIcon("trending-down", __iconNode1495);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trello.js
var __iconNode1496 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
["rect", { width: "3", height: "9", x: "7", y: "7", key: "14n3xi" }],
["rect", { width: "3", height: "5", x: "14", y: "7", key: "s4azjd" }]
];
var Trello = createLucideIcon("trello", __iconNode1496);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trending-up-down.js
var __iconNode1497 = [
["path", { d: "M14.828 14.828 21 21", key: "ar5fw7" }],
["path", { d: "M21 16v5h-5", key: "1ck2sf" }],
["path", { d: "m21 3-9 9-4-4-6 6", key: "1h02xo" }],
["path", { d: "M21 8V3h-5", key: "1qoq8a" }]
];
var TrendingUpDown = createLucideIcon("trending-up-down", __iconNode1497);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trending-up.js
var __iconNode1498 = [
["path", { d: "M16 7h6v6", key: "box55l" }],
["path", { d: "m22 7-8.5 8.5-5-5L2 17", key: "1t1m79" }]
];
var TrendingUp = createLucideIcon("trending-up", __iconNode1498);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/triangle-alert.js
var __iconNode1499 = [
[
"path",
{
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",
key: "wmoenq"
}
],
["path", { d: "M12 9v4", key: "juzpu7" }],
["path", { d: "M12 17h.01", key: "p32p05" }]
];
var TriangleAlert = createLucideIcon("triangle-alert", __iconNode1499);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/triangle-dashed.js
var __iconNode1500 = [
["path", { d: "M10.17 4.193a2 2 0 0 1 3.666.013", key: "pltmmw" }],
["path", { d: "M14 21h2", key: "v4qezv" }],
["path", { d: "m15.874 7.743 1 1.732", key: "10m0iw" }],
["path", { d: "m18.849 12.952 1 1.732", key: "zadnam" }],
["path", { d: "M21.824 18.18a2 2 0 0 1-1.835 2.824", key: "fvwuk4" }],
["path", { d: "M4.024 21a2 2 0 0 1-1.839-2.839", key: "1e1kah" }],
["path", { d: "m5.136 12.952-1 1.732", key: "1u4ldi" }],
["path", { d: "M8 21h2", key: "i9zjee" }],
["path", { d: "m8.102 7.743-1 1.732", key: "1zzo4u" }]
];
var TriangleDashed = createLucideIcon("triangle-dashed", __iconNode1500);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/triangle-right.js
var __iconNode1501 = [
[
"path",
{
d: "M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z",
key: "183wce"
}
]
];
var TriangleRight = createLucideIcon("triangle-right", __iconNode1501);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/triangle.js
var __iconNode1502 = [
[
"path",
{ d: "M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z", key: "14u9p9" }
]
];
var Triangle = createLucideIcon("triangle", __iconNode1502);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trophy.js
var __iconNode1503 = [
["path", { d: "M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978", key: "1n3hpd" }],
["path", { d: "M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978", key: "rfe1zi" }],
["path", { d: "M18 9h1.5a1 1 0 0 0 0-5H18", key: "7xy6bh" }],
["path", { d: "M4 22h16", key: "57wxv0" }],
["path", { d: "M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z", key: "1mhfuq" }],
["path", { d: "M6 9H4.5a1 1 0 0 1 0-5H6", key: "tex48p" }]
];
var Trophy = createLucideIcon("trophy", __iconNode1503);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/truck-electric.js
var __iconNode1504 = [
["path", { d: "M14 19V7a2 2 0 0 0-2-2H9", key: "15peso" }],
["path", { d: "M15 19H9", key: "18q6dt" }],
[
"path",
{
d: "M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14",
key: "1dkp3j"
}
],
["path", { d: "M2 13v5a1 1 0 0 0 1 1h2", key: "pkmmzz" }],
[
"path",
{ d: "M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02", key: "1n26pd" }
],
["circle", { cx: "17", cy: "19", r: "2", key: "1nxcgd" }],
["circle", { cx: "7", cy: "19", r: "2", key: "gzo7y7" }]
];
var TruckElectric = createLucideIcon("truck-electric", __iconNode1504);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/truck.js
var __iconNode1505 = [
["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: "M15 18H9", key: "1lyqi6" }],
[
"path",
{
d: "M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14",
key: "lysw3i"
}
],
["circle", { cx: "17", cy: "18", r: "2", key: "332jqn" }],
["circle", { cx: "7", cy: "18", r: "2", key: "19iecd" }]
];
var Truck = createLucideIcon("truck", __iconNode1505);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/turtle.js
var __iconNode1506 = [
[
"path",
{
d: "m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z",
key: "1lbbv7"
}
],
["path", { d: "M4.82 7.9 8 10", key: "m9wose" }],
["path", { d: "M15.18 7.9 12 10", key: "p8dp2u" }],
["path", { d: "M16.93 10H20a2 2 0 0 1 0 4H2", key: "12nsm7" }]
];
var Turtle = createLucideIcon("turtle", __iconNode1506);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tv-minimal.js
var __iconNode1507 = [
["path", { d: "M7 21h10", key: "1b0cd5" }],
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }]
];
var TvMinimal = createLucideIcon("tv-minimal", __iconNode1507);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tv-minimal-play.js
var __iconNode1508 = [
[
"path",
{
d: "M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z",
key: "1pctta"
}
],
["path", { d: "M7 21h10", key: "1b0cd5" }],
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }]
];
var TvMinimalPlay = createLucideIcon("tv-minimal-play", __iconNode1508);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tv.js
var __iconNode1509 = [
["path", { d: "m17 2-5 5-5-5", key: "16satq" }],
["rect", { width: "20", height: "15", x: "2", y: "7", rx: "2", key: "1e6viu" }]
];
var Tv = createLucideIcon("tv", __iconNode1509);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/twitch.js
var __iconNode1510 = [
["path", { d: "M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7", key: "c0yzno" }]
];
var Twitch = createLucideIcon("twitch", __iconNode1510);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/twitter.js
var __iconNode1511 = [
[
"path",
{
d: "M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z",
key: "pff0z6"
}
]
];
var Twitter = createLucideIcon("twitter", __iconNode1511);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/type.js
var __iconNode1512 = [
["path", { d: "M12 4v16", key: "1654pz" }],
["path", { d: "M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2", key: "e0r10z" }],
["path", { d: "M9 20h6", key: "s66wpe" }]
];
var Type = createLucideIcon("type", __iconNode1512);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/type-outline.js
var __iconNode1513 = [
[
"path",
{
d: "M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z",
key: "1reda3"
}
]
];
var TypeOutline = createLucideIcon("type-outline", __iconNode1513);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/umbrella-off.js
var __iconNode1514 = [
["path", { d: "M12 2v1", key: "11qlp1" }],
["path", { d: "M15.5 21a1.85 1.85 0 0 1-3.5-1v-8H2a10 10 0 0 1 3.428-6.575", key: "eki10q" }],
["path", { d: "M17.5 12H22A10 10 0 0 0 9.004 3.455", key: "n2ayka" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var UmbrellaOff = createLucideIcon("umbrella-off", __iconNode1514);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/umbrella.js
var __iconNode1515 = [
["path", { d: "M22 12a10.06 10.06 1 0 0-20 0Z", key: "1teyop" }],
["path", { d: "M12 12v8a2 2 0 0 0 4 0", key: "ulpmoc" }],
["path", { d: "M12 2v1", key: "11qlp1" }]
];
var Umbrella = createLucideIcon("umbrella", __iconNode1515);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/underline.js
var __iconNode1516 = [
["path", { d: "M6 4v6a6 6 0 0 0 12 0V4", key: "9kb039" }],
["line", { x1: "4", x2: "20", y1: "20", y2: "20", key: "nun2al" }]
];
var Underline = createLucideIcon("underline", __iconNode1516);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/undo-2.js
var __iconNode1517 = [
["path", { d: "M9 14 4 9l5-5", key: "102s5s" }],
["path", { d: "M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11", key: "f3b9sd" }]
];
var Undo2 = createLucideIcon("undo-2", __iconNode1517);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/undo-dot.js
var __iconNode1518 = [
["path", { d: "M21 17a9 9 0 0 0-15-6.7L3 13", key: "8mp6z9" }],
["path", { d: "M3 7v6h6", key: "1v2h90" }],
["circle", { cx: "12", cy: "17", r: "1", key: "1ixnty" }]
];
var UndoDot = createLucideIcon("undo-dot", __iconNode1518);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/undo.js
var __iconNode1519 = [
["path", { d: "M3 7v6h6", key: "1v2h90" }],
["path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13", key: "1r6uu6" }]
];
var Undo = createLucideIcon("undo", __iconNode1519);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/unfold-horizontal.js
var __iconNode1520 = [
["path", { d: "M16 12h6", key: "15xry1" }],
["path", { d: "M8 12H2", key: "1jqql6" }],
["path", { d: "M12 2v2", key: "tus03m" }],
["path", { d: "M12 8v2", key: "1woqiv" }],
["path", { d: "M12 14v2", key: "8jcxud" }],
["path", { d: "M12 20v2", key: "1lh1kg" }],
["path", { d: "m19 15 3-3-3-3", key: "wjy7rq" }],
["path", { d: "m5 9-3 3 3 3", key: "j64kie" }]
];
var UnfoldHorizontal = createLucideIcon("unfold-horizontal", __iconNode1520);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/unfold-vertical.js
var __iconNode1521 = [
["path", { d: "M12 22v-6", key: "6o8u61" }],
["path", { d: "M12 8V2", key: "1wkif3" }],
["path", { d: "M4 12H2", key: "rhcxmi" }],
["path", { d: "M10 12H8", key: "s88cx1" }],
["path", { d: "M16 12h-2", key: "10asgb" }],
["path", { d: "M22 12h-2", key: "14jgyd" }],
["path", { d: "m15 19-3 3-3-3", key: "11eu04" }],
["path", { d: "m15 5-3-3-3 3", key: "itvq4r" }]
];
var UnfoldVertical = createLucideIcon("unfold-vertical", __iconNode1521);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ungroup.js
var __iconNode1522 = [
["rect", { width: "8", height: "6", x: "5", y: "4", rx: "1", key: "nzclkv" }],
["rect", { width: "8", height: "6", x: "11", y: "14", rx: "1", key: "4tytwb" }]
];
var Ungroup = createLucideIcon("ungroup", __iconNode1522);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/university.js
var __iconNode1523 = [
["path", { d: "M14 21v-3a2 2 0 0 0-4 0v3", key: "1rgiei" }],
["path", { d: "M18 12h.01", key: "yjnet6" }],
["path", { d: "M18 16h.01", key: "plv8zi" }],
[
"path",
{
d: "M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z",
key: "1ogmi3"
}
],
["path", { d: "M6 12h.01", key: "c2rlol" }],
["path", { d: "M6 16h.01", key: "1pmjb7" }],
["circle", { cx: "12", cy: "10", r: "2", key: "1yojzk" }]
];
var University = createLucideIcon("university", __iconNode1523);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/unlink-2.js
var __iconNode1524 = [
["path", { d: "M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2", key: "1re2ne" }]
];
var Unlink2 = createLucideIcon("unlink-2", __iconNode1524);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/unlink.js
var __iconNode1525 = [
[
"path",
{
d: "m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71",
key: "yqzxt4"
}
],
[
"path",
{
d: "m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71",
key: "4qinb0"
}
],
["line", { x1: "8", x2: "8", y1: "2", y2: "5", key: "1041cp" }],
["line", { x1: "2", x2: "5", y1: "8", y2: "8", key: "14m1p5" }],
["line", { x1: "16", x2: "16", y1: "19", y2: "22", key: "rzdirn" }],
["line", { x1: "19", x2: "22", y1: "16", y2: "16", key: "ox905f" }]
];
var Unlink = createLucideIcon("unlink", __iconNode1525);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/unplug.js
var __iconNode1526 = [
["path", { d: "m19 5 3-3", key: "yk6iyv" }],
["path", { d: "m2 22 3-3", key: "19mgm9" }],
[
"path",
{ d: "M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z", key: "goz73y" }
],
["path", { d: "M7.5 13.5 10 11", key: "7xgeeb" }],
["path", { d: "M10.5 16.5 13 14", key: "10btkg" }],
[
"path",
{ d: "m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z", key: "1snsnr" }
]
];
var Unplug = createLucideIcon("unplug", __iconNode1526);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/upload.js
var __iconNode1527 = [
["path", { d: "M12 3v12", key: "1x0j5s" }],
["path", { d: "m17 8-5-5-5 5", key: "7q97r8" }],
["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4", key: "ih7n3h" }]
];
var Upload = createLucideIcon("upload", __iconNode1527);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/usb.js
var __iconNode1528 = [
["circle", { cx: "10", cy: "7", r: "1", key: "dypaad" }],
["circle", { cx: "4", cy: "20", r: "1", key: "22iqad" }],
["path", { d: "M4.7 19.3 19 5", key: "1enqfc" }],
["path", { d: "m21 3-3 1 2 2Z", key: "d3ov82" }],
["path", { d: "M9.26 7.68 5 12l2 5", key: "1esawj" }],
["path", { d: "m10 14 5 2 3.5-3.5", key: "v8oal5" }],
["path", { d: "m18 12 1-1 1 1-1 1Z", key: "1bh22v" }]
];
var Usb = createLucideIcon("usb", __iconNode1528);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-check.js
var __iconNode1529 = [
["path", { d: "m16 11 2 2 4-4", key: "9rsbq5" }],
["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2", key: "1yyitq" }],
["circle", { cx: "9", cy: "7", r: "4", key: "nufk8" }]
];
var UserCheck = createLucideIcon("user-check", __iconNode1529);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-cog.js
var __iconNode1530 = [
["path", { d: "M10 15H6a4 4 0 0 0-4 4v2", key: "1nfge6" }],
["path", { d: "m14.305 16.53.923-.382", key: "1itpsq" }],
["path", { d: "m15.228 13.852-.923-.383", key: "eplpkm" }],
["path", { d: "m16.852 12.228-.383-.923", key: "13v3q0" }],
["path", { d: "m16.852 17.772-.383.924", key: "1i8mnm" }],
["path", { d: "m19.148 12.228.383-.923", key: "1q8j1v" }],
["path", { d: "m19.53 18.696-.382-.924", key: "vk1qj3" }],
["path", { d: "m20.772 13.852.924-.383", key: "n880s0" }],
["path", { d: "m20.772 16.148.924.383", key: "1g6xey" }],
["circle", { cx: "18", cy: "15", r: "3", key: "gjjjvw" }],
["circle", { cx: "9", cy: "7", r: "4", key: "nufk8" }]
];
var UserCog = createLucideIcon("user-cog", __iconNode1530);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-lock.js
var __iconNode1531 = [
["circle", { cx: "10", cy: "7", r: "4", key: "e45bow" }],
["path", { d: "M10.3 15H7a4 4 0 0 0-4 4v2", key: "3bnktk" }],
["path", { d: "M15 15.5V14a2 2 0 0 1 4 0v1.5", key: "12ym5i" }],
["rect", { width: "8", height: "5", x: "13", y: "16", rx: ".899", key: "4p176n" }]
];
var UserLock = createLucideIcon("user-lock", __iconNode1531);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-minus.js
var __iconNode1532 = [
["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2", key: "1yyitq" }],
["circle", { cx: "9", cy: "7", r: "4", key: "nufk8" }],
["line", { x1: "22", x2: "16", y1: "11", y2: "11", key: "1shjgl" }]
];
var UserMinus = createLucideIcon("user-minus", __iconNode1532);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-pen.js
var __iconNode1533 = [
["path", { d: "M11.5 15H7a4 4 0 0 0-4 4v2", key: "15lzij" }],
[
"path",
{
d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "1817ys"
}
],
["circle", { cx: "10", cy: "7", r: "4", key: "e45bow" }]
];
var UserPen = createLucideIcon("user-pen", __iconNode1533);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-plus.js
var __iconNode1534 = [
["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2", key: "1yyitq" }],
["circle", { cx: "9", cy: "7", r: "4", key: "nufk8" }],
["line", { x1: "19", x2: "19", y1: "8", y2: "14", key: "1bvyxn" }],
["line", { x1: "22", x2: "16", y1: "11", y2: "11", key: "1shjgl" }]
];
var UserPlus = createLucideIcon("user-plus", __iconNode1534);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-round-check.js
var __iconNode1535 = [
["path", { d: "M2 21a8 8 0 0 1 13.292-6", key: "bjp14o" }],
["circle", { cx: "10", cy: "8", r: "5", key: "o932ke" }],
["path", { d: "m16 19 2 2 4-4", key: "1b14m6" }]
];
var UserRoundCheck = createLucideIcon("user-round-check", __iconNode1535);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-round-cog.js
var __iconNode1536 = [
["path", { d: "m14.305 19.53.923-.382", key: "3m78fa" }],
["path", { d: "m15.228 16.852-.923-.383", key: "npixar" }],
["path", { d: "m16.852 15.228-.383-.923", key: "5xggr7" }],
["path", { d: "m16.852 20.772-.383.924", key: "dpfhf9" }],
["path", { d: "m19.148 15.228.383-.923", key: "1reyyz" }],
["path", { d: "m19.53 21.696-.382-.924", key: "1goivc" }],
["path", { d: "M2 21a8 8 0 0 1 10.434-7.62", key: "1yezr2" }],
["path", { d: "m20.772 16.852.924-.383", key: "htqkph" }],
["path", { d: "m20.772 19.148.924.383", key: "9w9pjp" }],
["circle", { cx: "10", cy: "8", r: "5", key: "o932ke" }],
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }]
];
var UserRoundCog = createLucideIcon("user-round-cog", __iconNode1536);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-round-minus.js
var __iconNode1537 = [
["path", { d: "M2 21a8 8 0 0 1 13.292-6", key: "bjp14o" }],
["circle", { cx: "10", cy: "8", r: "5", key: "o932ke" }],
["path", { d: "M22 19h-6", key: "vcuq98" }]
];
var UserRoundMinus = createLucideIcon("user-round-minus", __iconNode1537);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-round-pen.js
var __iconNode1538 = [
["path", { d: "M2 21a8 8 0 0 1 10.821-7.487", key: "1c8h7z" }],
[
"path",
{
d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "1817ys"
}
],
["circle", { cx: "10", cy: "8", r: "5", key: "o932ke" }]
];
var UserRoundPen = createLucideIcon("user-round-pen", __iconNode1538);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-round-plus.js
var __iconNode1539 = [
["path", { d: "M2 21a8 8 0 0 1 13.292-6", key: "bjp14o" }],
["circle", { cx: "10", cy: "8", r: "5", key: "o932ke" }],
["path", { d: "M19 16v6", key: "tddt3s" }],
["path", { d: "M22 19h-6", key: "vcuq98" }]
];
var UserRoundPlus = createLucideIcon("user-round-plus", __iconNode1539);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-round-search.js
var __iconNode1540 = [
["circle", { cx: "10", cy: "8", r: "5", key: "o932ke" }],
["path", { d: "M2 21a8 8 0 0 1 10.434-7.62", key: "1yezr2" }],
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }],
["path", { d: "m22 22-1.9-1.9", key: "1e5ubv" }]
];
var UserRoundSearch = createLucideIcon("user-round-search", __iconNode1540);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-round-x.js
var __iconNode1541 = [
["path", { d: "M2 21a8 8 0 0 1 11.873-7", key: "74fkxq" }],
["circle", { cx: "10", cy: "8", r: "5", key: "o932ke" }],
["path", { d: "m17 17 5 5", key: "p7ous7" }],
["path", { d: "m22 17-5 5", key: "gqnmv0" }]
];
var UserRoundX = createLucideIcon("user-round-x", __iconNode1541);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-round.js
var __iconNode1542 = [
["circle", { cx: "12", cy: "8", r: "5", key: "1hypcn" }],
["path", { d: "M20 21a8 8 0 0 0-16 0", key: "rfgkzh" }]
];
var UserRound = createLucideIcon("user-round", __iconNode1542);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-search.js
var __iconNode1543 = [
["circle", { cx: "10", cy: "7", r: "4", key: "e45bow" }],
["path", { d: "M10.3 15H7a4 4 0 0 0-4 4v2", key: "3bnktk" }],
["circle", { cx: "17", cy: "17", r: "3", key: "18b49y" }],
["path", { d: "m21 21-1.9-1.9", key: "1g2n9r" }]
];
var UserSearch = createLucideIcon("user-search", __iconNode1543);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user-x.js
var __iconNode1544 = [
["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2", key: "1yyitq" }],
["circle", { cx: "9", cy: "7", r: "4", key: "nufk8" }],
["line", { x1: "17", x2: "22", y1: "8", y2: "13", key: "3nzzx3" }],
["line", { x1: "22", x2: "17", y1: "8", y2: "13", key: "1swrse" }]
];
var UserX = createLucideIcon("user-x", __iconNode1544);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/user.js
var __iconNode1545 = [
["path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2", key: "975kel" }],
["circle", { cx: "12", cy: "7", r: "4", key: "17ys0d" }]
];
var User = createLucideIcon("user", __iconNode1545);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/users-round.js
var __iconNode1546 = [
["path", { d: "M18 21a8 8 0 0 0-16 0", key: "3ypg7q" }],
["circle", { cx: "10", cy: "8", r: "5", key: "o932ke" }],
["path", { d: "M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3", key: "10s06x" }]
];
var UsersRound = createLucideIcon("users-round", __iconNode1546);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/users.js
var __iconNode1547 = [
["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2", key: "1yyitq" }],
["path", { d: "M16 3.128a4 4 0 0 1 0 7.744", key: "16gr8j" }],
["path", { d: "M22 21v-2a4 4 0 0 0-3-3.87", key: "kshegd" }],
["circle", { cx: "9", cy: "7", r: "4", key: "nufk8" }]
];
var Users = createLucideIcon("users", __iconNode1547);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/utensils-crossed.js
var __iconNode1548 = [
["path", { d: "m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8", key: "n7qcjb" }],
[
"path",
{ d: "M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7", key: "d0u48b" }
],
["path", { d: "m2.1 21.8 6.4-6.3", key: "yn04lh" }],
["path", { d: "m19 5-7 7", key: "194lzd" }]
];
var UtensilsCrossed = createLucideIcon("utensils-crossed", __iconNode1548);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/utensils.js
var __iconNode1549 = [
["path", { d: "M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2", key: "cjf0a3" }],
["path", { d: "M7 2v20", key: "1473qp" }],
["path", { d: "M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7", key: "j28e5" }]
];
var Utensils = createLucideIcon("utensils", __iconNode1549);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/variable.js
var __iconNode1550 = [
["path", { d: "M8 21s-4-3-4-9 4-9 4-9", key: "uto9ud" }],
["path", { d: "M16 3s4 3 4 9-4 9-4 9", key: "4w2vsq" }],
["line", { x1: "15", x2: "9", y1: "9", y2: "15", key: "f7djnv" }],
["line", { x1: "9", x2: "15", y1: "9", y2: "15", key: "1shsy8" }]
];
var Variable = createLucideIcon("variable", __iconNode1550);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/utility-pole.js
var __iconNode1551 = [
["path", { d: "M12 2v20", key: "t6zp3m" }],
["path", { d: "M2 5h20", key: "1fs1ex" }],
["path", { d: "M3 3v2", key: "9imdir" }],
["path", { d: "M7 3v2", key: "n0os7" }],
["path", { d: "M17 3v2", key: "1l2re6" }],
["path", { d: "M21 3v2", key: "1duuac" }],
["path", { d: "m19 5-7 7-7-7", key: "133zxf" }]
];
var UtilityPole = createLucideIcon("utility-pole", __iconNode1551);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/vault.js
var __iconNode1552 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor", key: "kqv944" }],
["path", { d: "m7.9 7.9 2.7 2.7", key: "hpeyl3" }],
["circle", { cx: "16.5", cy: "7.5", r: ".5", fill: "currentColor", key: "w0ekpg" }],
["path", { d: "m13.4 10.6 2.7-2.7", key: "264c1n" }],
["circle", { cx: "7.5", cy: "16.5", r: ".5", fill: "currentColor", key: "nkw3mc" }],
["path", { d: "m7.9 16.1 2.7-2.7", key: "p81g5e" }],
["circle", { cx: "16.5", cy: "16.5", r: ".5", fill: "currentColor", key: "fubopw" }],
["path", { d: "m13.4 13.4 2.7 2.7", key: "abhel3" }],
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
];
var Vault = createLucideIcon("vault", __iconNode1552);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/vector-square.js
var __iconNode1553 = [
["path", { d: "M19.5 7a24 24 0 0 1 0 10", key: "8n60xe" }],
["path", { d: "M4.5 7a24 24 0 0 0 0 10", key: "2lmadr" }],
["path", { d: "M7 19.5a24 24 0 0 0 10 0", key: "1q94o2" }],
["path", { d: "M7 4.5a24 24 0 0 1 10 0", key: "2z8ypa" }],
["rect", { x: "17", y: "17", width: "5", height: "5", rx: "1", key: "1ac74s" }],
["rect", { x: "17", y: "2", width: "5", height: "5", rx: "1", key: "1e7h5j" }],
["rect", { x: "2", y: "17", width: "5", height: "5", rx: "1", key: "1t4eah" }],
["rect", { x: "2", y: "2", width: "5", height: "5", rx: "1", key: "940dhs" }]
];
var VectorSquare = createLucideIcon("vector-square", __iconNode1553);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/vegan.js
var __iconNode1554 = [
["path", { d: "M16 8q6 0 6-6-6 0-6 6", key: "qsyyc4" }],
["path", { d: "M17.41 3.59a10 10 0 1 0 3 3", key: "41m9h7" }],
["path", { d: "M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14", key: "qiv7li" }]
];
var Vegan = createLucideIcon("vegan", __iconNode1554);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/venetian-mask.js
var __iconNode1555 = [
["path", { d: "M18 11c-1.5 0-2.5.5-3 2", key: "1fod00" }],
[
"path",
{
d: "M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z",
key: "d70hit"
}
],
["path", { d: "M6 11c1.5 0 2.5.5 3 2", key: "136fht" }]
];
var VenetianMask = createLucideIcon("venetian-mask", __iconNode1555);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/venus-and-mars.js
var __iconNode1556 = [
["path", { d: "M10 20h4", key: "ni2waw" }],
["path", { d: "M12 16v6", key: "c8a4gj" }],
["path", { d: "M17 2h4v4", key: "vhe59" }],
["path", { d: "m21 2-5.46 5.46", key: "19kypf" }],
["circle", { cx: "12", cy: "11", r: "5", key: "16gxyc" }]
];
var VenusAndMars = createLucideIcon("venus-and-mars", __iconNode1556);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/venus.js
var __iconNode1557 = [
["path", { d: "M12 15v7", key: "t2xh3l" }],
["path", { d: "M9 19h6", key: "456am0" }],
["circle", { cx: "12", cy: "9", r: "6", key: "1nw4tq" }]
];
var Venus = createLucideIcon("venus", __iconNode1557);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/vibrate-off.js
var __iconNode1558 = [
["path", { d: "m2 8 2 2-2 2 2 2-2 2", key: "sv1b1" }],
["path", { d: "m22 8-2 2 2 2-2 2 2 2", key: "101i4y" }],
["path", { d: "M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2", key: "1hbad5" }],
["path", { d: "M16 10.34V6c0-.55-.45-1-1-1h-4.34", key: "1x5tf0" }],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var VibrateOff = createLucideIcon("vibrate-off", __iconNode1558);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/vibrate.js
var __iconNode1559 = [
["path", { d: "m2 8 2 2-2 2 2 2-2 2", key: "sv1b1" }],
["path", { d: "m22 8-2 2 2 2-2 2 2 2", key: "101i4y" }],
["rect", { width: "8", height: "14", x: "8", y: "5", rx: "1", key: "1oyrl4" }]
];
var Vibrate = createLucideIcon("vibrate", __iconNode1559);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/video-off.js
var __iconNode1560 = [
[
"path",
{ d: "M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196", key: "w8jjjt" }
],
["path", { d: "M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2", key: "1xawa7" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var VideoOff = createLucideIcon("video-off", __iconNode1560);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/video.js
var __iconNode1561 = [
[
"path",
{
d: "m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5",
key: "ftymec"
}
],
["rect", { x: "2", y: "6", width: "14", height: "12", rx: "2", key: "158x01" }]
];
var Video = createLucideIcon("video", __iconNode1561);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/videotape.js
var __iconNode1562 = [
["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2", key: "18n3k1" }],
["path", { d: "M2 8h20", key: "d11cs7" }],
["circle", { cx: "8", cy: "14", r: "2", key: "1k2qr5" }],
["path", { d: "M8 12h8", key: "1wcyev" }],
["circle", { cx: "16", cy: "14", r: "2", key: "14k7lr" }]
];
var Videotape = createLucideIcon("videotape", __iconNode1562);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/view.js
var __iconNode1563 = [
["path", { d: "M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2", key: "mrq65r" }],
["path", { d: "M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2", key: "be3xqs" }],
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
[
"path",
{
d: "M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",
key: "11ak4c"
}
]
];
var View = createLucideIcon("view", __iconNode1563);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/voicemail.js
var __iconNode1564 = [
["circle", { cx: "6", cy: "12", r: "4", key: "1ehtga" }],
["circle", { cx: "18", cy: "12", r: "4", key: "4vafl8" }],
["line", { x1: "6", x2: "18", y1: "16", y2: "16", key: "pmt8us" }]
];
var Voicemail = createLucideIcon("voicemail", __iconNode1564);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/volleyball.js
var __iconNode1565 = [
["path", { d: "M11.1 7.1a16.55 16.55 0 0 1 10.9 4", key: "2880wi" }],
["path", { d: "M12 12a12.6 12.6 0 0 1-8.7 5", key: "113sja" }],
["path", { d: "M16.8 13.6a16.55 16.55 0 0 1-9 7.5", key: "1qmsgl" }],
["path", { d: "M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10", key: "1bmeqp" }],
["path", { d: "M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5", key: "iekzv9" }],
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
];
var Volleyball = createLucideIcon("volleyball", __iconNode1565);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/volume-1.js
var __iconNode1566 = [
[
"path",
{
d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",
key: "uqj9uw"
}
],
["path", { d: "M16 9a5 5 0 0 1 0 6", key: "1q6k2b" }]
];
var Volume1 = createLucideIcon("volume-1", __iconNode1566);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/volume-2.js
var __iconNode1567 = [
[
"path",
{
d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",
key: "uqj9uw"
}
],
["path", { d: "M16 9a5 5 0 0 1 0 6", key: "1q6k2b" }],
["path", { d: "M19.364 18.364a9 9 0 0 0 0-12.728", key: "ijwkga" }]
];
var Volume2 = createLucideIcon("volume-2", __iconNode1567);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/volume-off.js
var __iconNode1568 = [
["path", { d: "M16 9a5 5 0 0 1 .95 2.293", key: "1fgyg8" }],
["path", { d: "M19.364 5.636a9 9 0 0 1 1.889 9.96", key: "l3zxae" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }],
[
"path",
{
d: "m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11",
key: "1gbwow"
}
],
["path", { d: "M9.828 4.172A.686.686 0 0 1 11 4.657v.686", key: "s2je0y" }]
];
var VolumeOff = createLucideIcon("volume-off", __iconNode1568);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/volume-x.js
var __iconNode1569 = [
[
"path",
{
d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",
key: "uqj9uw"
}
],
["line", { x1: "22", x2: "16", y1: "9", y2: "15", key: "1ewh16" }],
["line", { x1: "16", x2: "22", y1: "9", y2: "15", key: "5ykzw1" }]
];
var VolumeX = createLucideIcon("volume-x", __iconNode1569);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/volume.js
var __iconNode1570 = [
[
"path",
{
d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",
key: "uqj9uw"
}
]
];
var Volume = createLucideIcon("volume", __iconNode1570);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/vote.js
var __iconNode1571 = [
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }],
["path", { d: "M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z", key: "1ezoue" }],
["path", { d: "M22 19H2", key: "nuriw5" }]
];
var Vote = createLucideIcon("vote", __iconNode1571);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wallet-cards.js
var __iconNode1572 = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
["path", { d: "M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2", key: "4125el" }],
[
"path",
{
d: "M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21",
key: "1dpki6"
}
]
];
var WalletCards = createLucideIcon("wallet-cards", __iconNode1572);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wallet-minimal.js
var __iconNode1573 = [
["path", { d: "M17 14h.01", key: "7oqj8z" }],
[
"path",
{
d: "M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14",
key: "u1rqew"
}
]
];
var WalletMinimal = createLucideIcon("wallet-minimal", __iconNode1573);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wallet.js
var __iconNode1574 = [
[
"path",
{
d: "M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",
key: "18etb6"
}
],
["path", { d: "M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4", key: "xoc0q4" }]
];
var Wallet = createLucideIcon("wallet", __iconNode1574);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wallpaper.js
var __iconNode1575 = [
["circle", { cx: "8", cy: "9", r: "2", key: "gjzl9d" }],
[
"path",
{
d: "m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2",
key: "69xh40"
}
],
["path", { d: "M8 21h8", key: "1ev6f3" }],
["path", { d: "M12 17v4", key: "1riwvh" }]
];
var Wallpaper = createLucideIcon("wallpaper", __iconNode1575);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wand-sparkles.js
var __iconNode1576 = [
[
"path",
{
d: "m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",
key: "ul74o6"
}
],
["path", { d: "m14 7 3 3", key: "1r5n42" }],
["path", { d: "M5 6v4", key: "ilb8ba" }],
["path", { d: "M19 14v4", key: "blhpug" }],
["path", { d: "M10 2v2", key: "7u0qdc" }],
["path", { d: "M7 8H3", key: "zfb6yr" }],
["path", { d: "M21 16h-4", key: "1cnmox" }],
["path", { d: "M11 3H9", key: "1obp7u" }]
];
var WandSparkles = createLucideIcon("wand-sparkles", __iconNode1576);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wand.js
var __iconNode1577 = [
["path", { d: "M15 4V2", key: "z1p9b7" }],
["path", { d: "M15 16v-2", key: "px0unx" }],
["path", { d: "M8 9h2", key: "1g203m" }],
["path", { d: "M20 9h2", key: "19tzq7" }],
["path", { d: "M17.8 11.8 19 13", key: "yihg8r" }],
["path", { d: "M15 9h.01", key: "x1ddxp" }],
["path", { d: "M17.8 6.2 19 5", key: "fd4us0" }],
["path", { d: "m3 21 9-9", key: "1jfql5" }],
["path", { d: "M12.2 6.2 11 5", key: "i3da3b" }]
];
var Wand = createLucideIcon("wand", __iconNode1577);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/warehouse.js
var __iconNode1578 = [
["path", { d: "M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11", key: "pb2vm6" }],
[
"path",
{
d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z",
key: "doq5xv"
}
],
["path", { d: "M6 13h12", key: "yf64js" }],
["path", { d: "M6 17h12", key: "1jwigz" }]
];
var Warehouse = createLucideIcon("warehouse", __iconNode1578);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/washing-machine.js
var __iconNode1579 = [
["path", { d: "M3 6h3", key: "155dbl" }],
["path", { d: "M17 6h.01", key: "e2y6kg" }],
["rect", { width: "18", height: "20", x: "3", y: "2", rx: "2", key: "od3kk9" }],
["circle", { cx: "12", cy: "13", r: "5", key: "nlbqau" }],
["path", { d: "M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5", key: "17lach" }]
];
var WashingMachine = createLucideIcon("washing-machine", __iconNode1579);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/watch.js
var __iconNode1580 = [
["path", { d: "M12 10v2.2l1.6 1", key: "n3r21l" }],
[
"path",
{ d: "m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05", key: "18k57s" }
],
["path", { d: "m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05", key: "16ny36" }],
["circle", { cx: "12", cy: "12", r: "6", key: "1vlfrh" }]
];
var Watch = createLucideIcon("watch", __iconNode1580);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/waves-ladder.js
var __iconNode1581 = [
["path", { d: "M19 5a2 2 0 0 0-2 2v11", key: "s41o68" }],
[
"path",
{
d: "M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
key: "rd2r6e"
}
],
["path", { d: "M7 13h10", key: "1rwob1" }],
["path", { d: "M7 9h10", key: "12czzb" }],
["path", { d: "M9 5a2 2 0 0 0-2 2v11", key: "x0q4gh" }]
];
var WavesLadder = createLucideIcon("waves-ladder", __iconNode1581);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/waves.js
var __iconNode1582 = [
[
"path",
{
d: "M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
key: "knzxuh"
}
],
[
"path",
{
d: "M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
key: "2jd2cc"
}
],
[
"path",
{
d: "M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
key: "rd2r6e"
}
]
];
var Waves = createLucideIcon("waves", __iconNode1582);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/waypoints.js
var __iconNode1583 = [
["circle", { cx: "12", cy: "4.5", r: "2.5", key: "r5ysbb" }],
["path", { d: "m10.2 6.3-3.9 3.9", key: "1nzqf6" }],
["circle", { cx: "4.5", cy: "12", r: "2.5", key: "jydg6v" }],
["path", { d: "M7 12h10", key: "b7w52i" }],
["circle", { cx: "19.5", cy: "12", r: "2.5", key: "1piiel" }],
["path", { d: "m13.8 17.7 3.9-3.9", key: "1wyg1y" }],
["circle", { cx: "12", cy: "19.5", r: "2.5", key: "13o1pw" }]
];
var Waypoints = createLucideIcon("waypoints", __iconNode1583);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/webcam.js
var __iconNode1584 = [
["circle", { cx: "12", cy: "10", r: "8", key: "1gshiw" }],
["circle", { cx: "12", cy: "10", r: "3", key: "ilqhr7" }],
["path", { d: "M7 22h10", key: "10w4w3" }],
["path", { d: "M12 22v-4", key: "1utk9m" }]
];
var Webcam = createLucideIcon("webcam", __iconNode1584);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/webhook-off.js
var __iconNode1585 = [
["path", { d: "M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15", key: "1tvl6x" }],
["path", { d: "M9 3.4a4 4 0 0 1 6.52.66", key: "q04jfq" }],
["path", { d: "m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05", key: "azowf0" }],
["path", { d: "M20.3 20.3a4 4 0 0 1-2.3.7", key: "5joiws" }],
["path", { d: "M18.6 13a4 4 0 0 1 3.357 3.414", key: "cangb8" }],
["path", { d: "m12 6 .6 1", key: "tpjl1n" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var WebhookOff = createLucideIcon("webhook-off", __iconNode1585);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/webhook.js
var __iconNode1586 = [
[
"path",
{
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",
key: "q3hayz"
}
],
["path", { d: "m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06", key: "1go1hn" }],
["path", { d: "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8", key: "qlwsc0" }]
];
var Webhook = createLucideIcon("webhook", __iconNode1586);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/weight.js
var __iconNode1587 = [
["circle", { cx: "12", cy: "5", r: "3", key: "rqqgnr" }],
[
"path",
{
d: "M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z",
key: "56o5sh"
}
]
];
var Weight = createLucideIcon("weight", __iconNode1587);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wheat-off.js
var __iconNode1588 = [
["path", { d: "m2 22 10-10", key: "28ilpk" }],
["path", { d: "m16 8-1.17 1.17", key: "1qqm82" }],
[
"path",
{
d: "M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",
key: "1rdhi6"
}
],
[
"path",
{ d: "m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97", key: "4wz8re" }
],
[
"path",
{ d: "M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62", key: "rves66" }
],
["path", { d: "M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z", key: "19rau1" }],
[
"path",
{
d: "M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",
key: "tc8ph9"
}
],
[
"path",
{
d: "m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98",
key: "ak46r"
}
],
[
"path",
{
d: "M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28",
key: "1tw520"
}
],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var WheatOff = createLucideIcon("wheat-off", __iconNode1588);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wheat.js
var __iconNode1589 = [
["path", { d: "M2 22 16 8", key: "60hf96" }],
[
"path",
{
d: "M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",
key: "1rdhi6"
}
],
[
"path",
{
d: "M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",
key: "1sdzmb"
}
],
[
"path",
{
d: "M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",
key: "eoatbi"
}
],
["path", { d: "M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z", key: "19rau1" }],
[
"path",
{
d: "M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",
key: "tc8ph9"
}
],
[
"path",
{
d: "M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",
key: "2m8kc5"
}
],
[
"path",
{
d: "M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",
key: "vex3ng"
}
]
];
var Wheat = createLucideIcon("wheat", __iconNode1589);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/whole-word.js
var __iconNode1590 = [
["circle", { cx: "7", cy: "12", r: "3", key: "12clwm" }],
["path", { d: "M10 9v6", key: "17i7lo" }],
["circle", { cx: "17", cy: "12", r: "3", key: "gl7c2s" }],
["path", { d: "M14 7v8", key: "dl84cr" }],
["path", { d: "M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1", key: "lt2kga" }]
];
var WholeWord = createLucideIcon("whole-word", __iconNode1590);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wifi-cog.js
var __iconNode1591 = [
["path", { d: "m14.305 19.53.923-.382", key: "3m78fa" }],
["path", { d: "m15.228 16.852-.923-.383", key: "npixar" }],
["path", { d: "m16.852 15.228-.383-.923", key: "5xggr7" }],
["path", { d: "m16.852 20.772-.383.924", key: "dpfhf9" }],
["path", { d: "m19.148 15.228.383-.923", key: "1reyyz" }],
["path", { d: "m19.53 21.696-.382-.924", key: "1goivc" }],
["path", { d: "M2 7.82a15 15 0 0 1 20 0", key: "1ovjuk" }],
["path", { d: "m20.772 16.852.924-.383", key: "htqkph" }],
["path", { d: "m20.772 19.148.924.383", key: "9w9pjp" }],
["path", { d: "M5 11.858a10 10 0 0 1 11.5-1.785", key: "3sn16i" }],
["path", { d: "M8.5 15.429a5 5 0 0 1 2.413-1.31", key: "1pxovh" }],
["circle", { cx: "18", cy: "18", r: "3", key: "1xkwt0" }]
];
var WifiCog = createLucideIcon("wifi-cog", __iconNode1591);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wifi-high.js
var __iconNode1592 = [
["path", { d: "M12 20h.01", key: "zekei9" }],
["path", { d: "M5 12.859a10 10 0 0 1 14 0", key: "1x1e6c" }],
["path", { d: "M8.5 16.429a5 5 0 0 1 7 0", key: "1bycff" }]
];
var WifiHigh = createLucideIcon("wifi-high", __iconNode1592);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wifi-low.js
var __iconNode1593 = [
["path", { d: "M12 20h.01", key: "zekei9" }],
["path", { d: "M8.5 16.429a5 5 0 0 1 7 0", key: "1bycff" }]
];
var WifiLow = createLucideIcon("wifi-low", __iconNode1593);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wifi-off.js
var __iconNode1594 = [
["path", { d: "M12 20h.01", key: "zekei9" }],
["path", { d: "M8.5 16.429a5 5 0 0 1 7 0", key: "1bycff" }],
["path", { d: "M5 12.859a10 10 0 0 1 5.17-2.69", key: "1dl1wf" }],
["path", { d: "M19 12.859a10 10 0 0 0-2.007-1.523", key: "4k23kn" }],
["path", { d: "M2 8.82a15 15 0 0 1 4.177-2.643", key: "1grhjp" }],
["path", { d: "M22 8.82a15 15 0 0 0-11.288-3.764", key: "z3jwby" }],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var WifiOff = createLucideIcon("wifi-off", __iconNode1594);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wifi-pen.js
var __iconNode1595 = [
["path", { d: "M2 8.82a15 15 0 0 1 20 0", key: "dnpr2z" }],
[
"path",
{
d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
key: "1817ys"
}
],
["path", { d: "M5 12.859a10 10 0 0 1 10.5-2.222", key: "rpb7oy" }],
["path", { d: "M8.5 16.429a5 5 0 0 1 3-1.406", key: "r8bmzl" }]
];
var WifiPen = createLucideIcon("wifi-pen", __iconNode1595);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wifi-zero.js
var __iconNode1596 = [["path", { d: "M12 20h.01", key: "zekei9" }]];
var WifiZero = createLucideIcon("wifi-zero", __iconNode1596);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wifi.js
var __iconNode1597 = [
["path", { d: "M12 20h.01", key: "zekei9" }],
["path", { d: "M2 8.82a15 15 0 0 1 20 0", key: "dnpr2z" }],
["path", { d: "M5 12.859a10 10 0 0 1 14 0", key: "1x1e6c" }],
["path", { d: "M8.5 16.429a5 5 0 0 1 7 0", key: "1bycff" }]
];
var Wifi = createLucideIcon("wifi", __iconNode1597);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wind-arrow-down.js
var __iconNode1598 = [
["path", { d: "M10 2v8", key: "d4bbey" }],
["path", { d: "M12.8 21.6A2 2 0 1 0 14 18H2", key: "19kp1d" }],
["path", { d: "M17.5 10a2.5 2.5 0 1 1 2 4H2", key: "19kpjc" }],
["path", { d: "m6 6 4 4 4-4", key: "k13n16" }]
];
var WindArrowDown = createLucideIcon("wind-arrow-down", __iconNode1598);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wine-off.js
var __iconNode1599 = [
["path", { d: "M8 22h8", key: "rmew8v" }],
["path", { d: "M7 10h3m7 0h-1.343", key: "v48bem" }],
["path", { d: "M12 15v7", key: "t2xh3l" }],
[
"path",
{
d: "M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198",
key: "1ymjlu"
}
],
["line", { x1: "2", x2: "22", y1: "2", y2: "22", key: "a6p6uj" }]
];
var WineOff = createLucideIcon("wine-off", __iconNode1599);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wind.js
var __iconNode1600 = [
["path", { d: "M12.8 19.6A2 2 0 1 0 14 16H2", key: "148xed" }],
["path", { d: "M17.5 8a2.5 2.5 0 1 1 2 4H2", key: "1u4tom" }],
["path", { d: "M9.8 4.4A2 2 0 1 1 11 8H2", key: "75valh" }]
];
var Wind = createLucideIcon("wind", __iconNode1600);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wine.js
var __iconNode1601 = [
["path", { d: "M8 22h8", key: "rmew8v" }],
["path", { d: "M7 10h10", key: "1101jm" }],
["path", { d: "M12 15v7", key: "t2xh3l" }],
[
"path",
{ d: "M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z", key: "10ffi3" }
]
];
var Wine = createLucideIcon("wine", __iconNode1601);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/workflow.js
var __iconNode1602 = [
["rect", { width: "8", height: "8", x: "3", y: "3", rx: "2", key: "by2w9f" }],
["path", { d: "M7 11v4a2 2 0 0 0 2 2h4", key: "xkn7yn" }],
["rect", { width: "8", height: "8", x: "13", y: "13", rx: "2", key: "1cgmvn" }]
];
var Workflow = createLucideIcon("workflow", __iconNode1602);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/worm.js
var __iconNode1603 = [
["path", { d: "m19 12-1.5 3", key: "9bcu4o" }],
["path", { d: "M19.63 18.81 22 20", key: "121v98" }],
[
"path",
{
d: "M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z",
key: "1tij6q"
}
]
];
var Worm = createLucideIcon("worm", __iconNode1603);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wrap-text.js
var __iconNode1604 = [
["path", { d: "m16 16-2 2 2 2", key: "kkc6pm" }],
["path", { d: "M3 12h15a3 3 0 1 1 0 6h-4", key: "1cl7v7" }],
["path", { d: "M3 18h7", key: "sq21v6" }],
["path", { d: "M3 6h18", key: "d0wm0j" }]
];
var WrapText = createLucideIcon("wrap-text", __iconNode1604);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/wrench.js
var __iconNode1605 = [
[
"path",
{
d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z",
key: "cbrjhi"
}
]
];
var Wrench = createLucideIcon("wrench", __iconNode1605);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js
var __iconNode1606 = [
["path", { d: "M18 6 6 18", key: "1bl5f8" }],
["path", { d: "m6 6 12 12", key: "d8bk6v" }]
];
var X = createLucideIcon("x", __iconNode1606);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/youtube.js
var __iconNode1607 = [
[
"path",
{
d: "M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17",
key: "1q2vi4"
}
],
["path", { d: "m10 15 5-3-5-3z", key: "1jp15x" }]
];
var Youtube = createLucideIcon("youtube", __iconNode1607);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap-off.js
var __iconNode1608 = [
["path", { d: "M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317", key: "193nxd" }],
["path", { d: "M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773", key: "27a7lr" }],
[
"path",
{
d: "M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643",
key: "1e0qe9"
}
],
["path", { d: "m2 2 20 20", key: "1ooewy" }]
];
var ZapOff = createLucideIcon("zap-off", __iconNode1608);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap.js
var __iconNode1609 = [
[
"path",
{
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",
key: "1xq2db"
}
]
];
var Zap = createLucideIcon("zap", __iconNode1609);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zoom-in.js
var __iconNode1610 = [
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
["line", { x1: "21", x2: "16.65", y1: "21", y2: "16.65", key: "13gj7c" }],
["line", { x1: "11", x2: "11", y1: "8", y2: "14", key: "1vmskp" }],
["line", { x1: "8", x2: "14", y1: "11", y2: "11", key: "durymu" }]
];
var ZoomIn = createLucideIcon("zoom-in", __iconNode1610);
// ../../node_modules/.pnpm/lucide-react@0.525.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zoom-out.js
var __iconNode1611 = [
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
["line", { x1: "21", x2: "16.65", y1: "21", y2: "16.65", key: "13gj7c" }],
["line", { x1: "8", x2: "14", y1: "11", y2: "11", key: "durymu" }]
];
var ZoomOut = createLucideIcon("zoom-out", __iconNode1611);
// ../../node_modules/.pnpm/@radix-ui+react-label@2.1.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_beedc72a2764f9caff1514ef9155b3f3/node_modules/@radix-ui/react-label/dist/index.mjs
var React39 = __toESM(require_react(), 1);
var import_jsx_runtime18 = __toESM(require_jsx_runtime(), 1);
var NAME2 = "Label";
var Label3 = React39.forwardRef((props, forwardedRef) => {
return (0, import_jsx_runtime18.jsx)(
Primitive.label,
{
...props,
ref: forwardedRef,
onMouseDown: (event) => {
var _a;
const target = event.target;
if (target.closest("button, input, select, textarea")) return;
(_a = props.onMouseDown) == null ? void 0 : _a.call(props, event);
if (!event.defaultPrevented && event.detail > 1) event.preventDefault();
}
}
);
});
Label3.displayName = NAME2;
var Root4 = Label3;
// ../../node_modules/.pnpm/@radix-ui+react-popover@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.7__@types+reac_aba36e289011c7efa5498b0a55e1bb01/node_modules/@radix-ui/react-popover/dist/index.mjs
var React40 = __toESM(require_react(), 1);
var import_jsx_runtime19 = __toESM(require_jsx_runtime(), 1);
var POPOVER_NAME = "Popover";
var [createPopoverContext, createPopoverScope] = createContextScope2(POPOVER_NAME, [
createPopperScope
]);
var usePopperScope2 = createPopperScope();
var [PopoverProvider, usePopoverContext] = createPopoverContext(POPOVER_NAME);
var Popover = (props) => {
const {
__scopePopover,
children,
open: openProp,
defaultOpen,
onOpenChange,
modal = false
} = props;
const popperScope = usePopperScope2(__scopePopover);
const triggerRef = React40.useRef(null);
const [hasCustomAnchor, setHasCustomAnchor] = React40.useState(false);
const [open, setOpen] = useControllableState({
prop: openProp,
defaultProp: defaultOpen ?? false,
onChange: onOpenChange,
caller: POPOVER_NAME
});
return (0, import_jsx_runtime19.jsx)(Root22, { ...popperScope, children: (0, import_jsx_runtime19.jsx)(
PopoverProvider,
{
scope: __scopePopover,
contentId: useId(),
triggerRef,
open,
onOpenChange: setOpen,
onOpenToggle: React40.useCallback(() => setOpen((prevOpen) => !prevOpen), [setOpen]),
hasCustomAnchor,
onCustomAnchorAdd: React40.useCallback(() => setHasCustomAnchor(true), []),
onCustomAnchorRemove: React40.useCallback(() => setHasCustomAnchor(false), []),
modal,
children
}
) });
};
Popover.displayName = POPOVER_NAME;
var ANCHOR_NAME3 = "PopoverAnchor";
var PopoverAnchor = React40.forwardRef(
(props, forwardedRef) => {
const { __scopePopover, ...anchorProps } = props;
const context = usePopoverContext(ANCHOR_NAME3, __scopePopover);
const popperScope = usePopperScope2(__scopePopover);
const { onCustomAnchorAdd, onCustomAnchorRemove } = context;
React40.useEffect(() => {
onCustomAnchorAdd();
return () => onCustomAnchorRemove();
}, [onCustomAnchorAdd, onCustomAnchorRemove]);
return (0, import_jsx_runtime19.jsx)(Anchor, { ...popperScope, ...anchorProps, ref: forwardedRef });
}
);
PopoverAnchor.displayName = ANCHOR_NAME3;
var TRIGGER_NAME2 = "PopoverTrigger";
var PopoverTrigger = React40.forwardRef(
(props, forwardedRef) => {
const { __scopePopover, ...triggerProps } = props;
const context = usePopoverContext(TRIGGER_NAME2, __scopePopover);
const popperScope = usePopperScope2(__scopePopover);
const composedTriggerRef = useComposedRefs(forwardedRef, context.triggerRef);
const trigger = (0, import_jsx_runtime19.jsx)(
Primitive2.button,
{
type: "button",
"aria-haspopup": "dialog",
"aria-expanded": context.open,
"aria-controls": context.contentId,
"data-state": getState(context.open),
...triggerProps,
ref: composedTriggerRef,
onClick: composeEventHandlers(props.onClick, context.onOpenToggle)
}
);
return context.hasCustomAnchor ? trigger : (0, import_jsx_runtime19.jsx)(Anchor, { asChild: true, ...popperScope, children: trigger });
}
);
PopoverTrigger.displayName = TRIGGER_NAME2;
var PORTAL_NAME4 = "PopoverPortal";
var [PortalProvider2, usePortalContext2] = createPopoverContext(PORTAL_NAME4, {
forceMount: void 0
});
var PopoverPortal = (props) => {
const { __scopePopover, forceMount, children, container } = props;
const context = usePopoverContext(PORTAL_NAME4, __scopePopover);
return (0, import_jsx_runtime19.jsx)(PortalProvider2, { scope: __scopePopover, forceMount, children: (0, import_jsx_runtime19.jsx)(Presence, { present: forceMount || context.open, children: (0, import_jsx_runtime19.jsx)(Portal, { asChild: true, container, children }) }) });
};
PopoverPortal.displayName = PORTAL_NAME4;
var CONTENT_NAME4 = "PopoverContent";
var PopoverContent = React40.forwardRef(
(props, forwardedRef) => {
const portalContext = usePortalContext2(CONTENT_NAME4, props.__scopePopover);
const { forceMount = portalContext.forceMount, ...contentProps } = props;
const context = usePopoverContext(CONTENT_NAME4, props.__scopePopover);
return (0, import_jsx_runtime19.jsx)(Presence, { present: forceMount || context.open, children: context.modal ? (0, import_jsx_runtime19.jsx)(PopoverContentModal, { ...contentProps, ref: forwardedRef }) : (0, import_jsx_runtime19.jsx)(PopoverContentNonModal, { ...contentProps, ref: forwardedRef }) });
}
);
PopoverContent.displayName = CONTENT_NAME4;
var Slot4 = createSlot2("PopoverContent.RemoveScroll");
var PopoverContentModal = React40.forwardRef(
(props, forwardedRef) => {
const context = usePopoverContext(CONTENT_NAME4, props.__scopePopover);
const contentRef = React40.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, contentRef);
const isRightClickOutsideRef = React40.useRef(false);
React40.useEffect(() => {
const content = contentRef.current;
if (content) return hideOthers(content);
}, []);
return (0, import_jsx_runtime19.jsx)(Combination_default, { as: Slot4, allowPinchZoom: true, children: (0, import_jsx_runtime19.jsx)(
PopoverContentImpl,
{
...props,
ref: composedRefs,
trapFocus: context.open,
disableOutsidePointerEvents: true,
onCloseAutoFocus: composeEventHandlers(props.onCloseAutoFocus, (event) => {
var _a;
event.preventDefault();
if (!isRightClickOutsideRef.current) (_a = context.triggerRef.current) == null ? void 0 : _a.focus();
}),
onPointerDownOutside: composeEventHandlers(
props.onPointerDownOutside,
(event) => {
const originalEvent = event.detail.originalEvent;
const ctrlLeftClick = originalEvent.button === 0 && originalEvent.ctrlKey === true;
const isRightClick = originalEvent.button === 2 || ctrlLeftClick;
isRightClickOutsideRef.current = isRightClick;
},
{ checkForDefaultPrevented: false }
),
onFocusOutside: composeEventHandlers(
props.onFocusOutside,
(event) => event.preventDefault(),
{ checkForDefaultPrevented: false }
)
}
) });
}
);
var PopoverContentNonModal = React40.forwardRef(
(props, forwardedRef) => {
const context = usePopoverContext(CONTENT_NAME4, props.__scopePopover);
const hasInteractedOutsideRef = React40.useRef(false);
const hasPointerDownOutsideRef = React40.useRef(false);
return (0, import_jsx_runtime19.jsx)(
PopoverContentImpl,
{
...props,
ref: forwardedRef,
trapFocus: false,
disableOutsidePointerEvents: false,
onCloseAutoFocus: (event) => {
var _a, _b;
(_a = props.onCloseAutoFocus) == null ? void 0 : _a.call(props, event);
if (!event.defaultPrevented) {
if (!hasInteractedOutsideRef.current) (_b = context.triggerRef.current) == null ? void 0 : _b.focus();
event.preventDefault();
}
hasInteractedOutsideRef.current = false;
hasPointerDownOutsideRef.current = false;
},
onInteractOutside: (event) => {
var _a, _b;
(_a = props.onInteractOutside) == null ? void 0 : _a.call(props, event);
if (!event.defaultPrevented) {
hasInteractedOutsideRef.current = true;
if (event.detail.originalEvent.type === "pointerdown") {
hasPointerDownOutsideRef.current = true;
}
}
const target = event.target;
const targetIsTrigger = (_b = context.triggerRef.current) == null ? void 0 : _b.contains(target);
if (targetIsTrigger) event.preventDefault();
if (event.detail.originalEvent.type === "focusin" && hasPointerDownOutsideRef.current) {
event.preventDefault();
}
}
}
);
}
);
var PopoverContentImpl = React40.forwardRef(
(props, forwardedRef) => {
const {
__scopePopover,
trapFocus,
onOpenAutoFocus,
onCloseAutoFocus,
disableOutsidePointerEvents,
onEscapeKeyDown,
onPointerDownOutside,
onFocusOutside,
onInteractOutside,
...contentProps
} = props;
const context = usePopoverContext(CONTENT_NAME4, __scopePopover);
const popperScope = usePopperScope2(__scopePopover);
useFocusGuards();
return (0, import_jsx_runtime19.jsx)(
FocusScope,
{
asChild: true,
loop: true,
trapped: trapFocus,
onMountAutoFocus: onOpenAutoFocus,
onUnmountAutoFocus: onCloseAutoFocus,
children: (0, import_jsx_runtime19.jsx)(
DismissableLayer,
{
asChild: true,
disableOutsidePointerEvents,
onInteractOutside,
onEscapeKeyDown,
onPointerDownOutside,
onFocusOutside,
onDismiss: () => context.onOpenChange(false),
children: (0, import_jsx_runtime19.jsx)(
Content,
{
"data-state": getState(context.open),
role: "dialog",
id: context.contentId,
...popperScope,
...contentProps,
ref: forwardedRef,
style: {
...contentProps.style,
// re-namespace exposed content custom properties
...{
"--radix-popover-content-transform-origin": "var(--radix-popper-transform-origin)",
"--radix-popover-content-available-width": "var(--radix-popper-available-width)",
"--radix-popover-content-available-height": "var(--radix-popper-available-height)",
"--radix-popover-trigger-width": "var(--radix-popper-anchor-width)",
"--radix-popover-trigger-height": "var(--radix-popper-anchor-height)"
}
}
}
)
}
)
}
);
}
);
var CLOSE_NAME = "PopoverClose";
var PopoverClose = React40.forwardRef(
(props, forwardedRef) => {
const { __scopePopover, ...closeProps } = props;
const context = usePopoverContext(CLOSE_NAME, __scopePopover);
return (0, import_jsx_runtime19.jsx)(
Primitive2.button,
{
type: "button",
...closeProps,
ref: forwardedRef,
onClick: composeEventHandlers(props.onClick, () => context.onOpenChange(false))
}
);
}
);
PopoverClose.displayName = CLOSE_NAME;
var ARROW_NAME4 = "PopoverArrow";
var PopoverArrow = React40.forwardRef(
(props, forwardedRef) => {
const { __scopePopover, ...arrowProps } = props;
const popperScope = usePopperScope2(__scopePopover);
return (0, import_jsx_runtime19.jsx)(Arrow2, { ...popperScope, ...arrowProps, ref: forwardedRef });
}
);
PopoverArrow.displayName = ARROW_NAME4;
function getState(open) {
return open ? "open" : "closed";
}
var Root24 = Popover;
var Trigger2 = PopoverTrigger;
var Content23 = PopoverContent;
// ../../node_modules/.pnpm/@radix-ui+react-select@2.2.6_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@_b9a2ec348a0f89e707b9c4c0f4d8a06d/node_modules/@radix-ui/react-select/dist/index.mjs
var React43 = __toESM(require_react(), 1);
var ReactDOM4 = __toESM(require_react_dom(), 1);
// ../../node_modules/.pnpm/@radix-ui+number@1.1.1/node_modules/@radix-ui/number/dist/index.mjs
function clamp(value, [min, max]) {
return Math.min(max, Math.max(min, value));
}
// ../../node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-previous/dist/index.mjs
var React41 = __toESM(require_react(), 1);
function usePrevious(value) {
const ref = React41.useRef({ value, previous: value });
return React41.useMemo(() => {
if (ref.current.value !== value) {
ref.current.previous = ref.current.value;
ref.current.value = value;
}
return ref.current.previous;
}, [value]);
}
// ../../node_modules/.pnpm/@radix-ui+react-visually-hidden@1.2.3_@types+react-dom@19.2.3_@types+react@19.2.7__@typ_b08a54b8b8cc1e2fcb68c28280b66cb9/node_modules/@radix-ui/react-visually-hidden/dist/index.mjs
var React42 = __toESM(require_react(), 1);
var import_jsx_runtime20 = __toESM(require_jsx_runtime(), 1);
var VISUALLY_HIDDEN_STYLES = Object.freeze({
// See: https://github.com/twbs/bootstrap/blob/main/scss/mixins/_visually-hidden.scss
position: "absolute",
border: 0,
width: 1,
height: 1,
padding: 0,
margin: -1,
overflow: "hidden",
clip: "rect(0, 0, 0, 0)",
whiteSpace: "nowrap",
wordWrap: "normal"
});
var NAME3 = "VisuallyHidden";
var VisuallyHidden = React42.forwardRef(
(props, forwardedRef) => {
return (0, import_jsx_runtime20.jsx)(
Primitive2.span,
{
...props,
ref: forwardedRef,
style: { ...VISUALLY_HIDDEN_STYLES, ...props.style }
}
);
}
);
VisuallyHidden.displayName = NAME3;
var Root5 = VisuallyHidden;
// ../../node_modules/.pnpm/@radix-ui+react-select@2.2.6_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@_b9a2ec348a0f89e707b9c4c0f4d8a06d/node_modules/@radix-ui/react-select/dist/index.mjs
var import_jsx_runtime21 = __toESM(require_jsx_runtime(), 1);
var OPEN_KEYS = [" ", "Enter", "ArrowUp", "ArrowDown"];
var SELECTION_KEYS2 = [" ", "Enter"];
var SELECT_NAME = "Select";
var [Collection3, useCollection3, createCollectionScope3] = createCollection(SELECT_NAME);
var [createSelectContext, createSelectScope] = createContextScope2(SELECT_NAME, [
createCollectionScope3,
createPopperScope
]);
var usePopperScope3 = createPopperScope();
var [SelectProvider, useSelectContext] = createSelectContext(SELECT_NAME);
var [SelectNativeOptionsProvider, useSelectNativeOptionsContext] = createSelectContext(SELECT_NAME);
var Select = (props) => {
const {
__scopeSelect,
children,
open: openProp,
defaultOpen,
onOpenChange,
value: valueProp,
defaultValue,
onValueChange,
dir,
name,
autoComplete,
disabled,
required,
form
} = props;
const popperScope = usePopperScope3(__scopeSelect);
const [trigger, setTrigger] = React43.useState(null);
const [valueNode, setValueNode] = React43.useState(null);
const [valueNodeHasChildren, setValueNodeHasChildren] = React43.useState(false);
const direction = useDirection(dir);
const [open, setOpen] = useControllableState({
prop: openProp,
defaultProp: defaultOpen ?? false,
onChange: onOpenChange,
caller: SELECT_NAME
});
const [value, setValue] = useControllableState({
prop: valueProp,
defaultProp: defaultValue,
onChange: onValueChange,
caller: SELECT_NAME
});
const triggerPointerDownPosRef = React43.useRef(null);
const isFormControl = trigger ? form || !!trigger.closest("form") : true;
const [nativeOptionsSet, setNativeOptionsSet] = React43.useState(/* @__PURE__ */ new Set());
const nativeSelectKey = Array.from(nativeOptionsSet).map((option) => option.props.value).join(";");
return (0, import_jsx_runtime21.jsx)(Root22, { ...popperScope, children: (0, import_jsx_runtime21.jsxs)(
SelectProvider,
{
required,
scope: __scopeSelect,
trigger,
onTriggerChange: setTrigger,
valueNode,
onValueNodeChange: setValueNode,
valueNodeHasChildren,
onValueNodeHasChildrenChange: setValueNodeHasChildren,
contentId: useId(),
value,
onValueChange: setValue,
open,
onOpenChange: setOpen,
dir: direction,
triggerPointerDownPosRef,
disabled,
children: [
(0, import_jsx_runtime21.jsx)(Collection3.Provider, { scope: __scopeSelect, children: (0, import_jsx_runtime21.jsx)(
SelectNativeOptionsProvider,
{
scope: props.__scopeSelect,
onNativeOptionAdd: React43.useCallback((option) => {
setNativeOptionsSet((prev) => new Set(prev).add(option));
}, []),
onNativeOptionRemove: React43.useCallback((option) => {
setNativeOptionsSet((prev) => {
const optionsSet = new Set(prev);
optionsSet.delete(option);
return optionsSet;
});
}, []),
children
}
) }),
isFormControl ? (0, import_jsx_runtime21.jsxs)(
SelectBubbleInput,
{
"aria-hidden": true,
required,
tabIndex: -1,
name,
autoComplete,
value,
onChange: (event) => setValue(event.target.value),
disabled,
form,
children: [
value === void 0 ? (0, import_jsx_runtime21.jsx)("option", { value: "" }) : null,
Array.from(nativeOptionsSet)
]
},
nativeSelectKey
) : null
]
}
) });
};
Select.displayName = SELECT_NAME;
var TRIGGER_NAME3 = "SelectTrigger";
var SelectTrigger = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, disabled = false, ...triggerProps } = props;
const popperScope = usePopperScope3(__scopeSelect);
const context = useSelectContext(TRIGGER_NAME3, __scopeSelect);
const isDisabled = context.disabled || disabled;
const composedRefs = useComposedRefs(forwardedRef, context.onTriggerChange);
const getItems = useCollection3(__scopeSelect);
const pointerTypeRef = React43.useRef("touch");
const [searchRef, handleTypeaheadSearch, resetTypeahead] = useTypeaheadSearch((search) => {
const enabledItems = getItems().filter((item) => !item.disabled);
const currentItem = enabledItems.find((item) => item.value === context.value);
const nextItem = findNextItem(enabledItems, search, currentItem);
if (nextItem !== void 0) {
context.onValueChange(nextItem.value);
}
});
const handleOpen = (pointerEvent) => {
if (!isDisabled) {
context.onOpenChange(true);
resetTypeahead();
}
if (pointerEvent) {
context.triggerPointerDownPosRef.current = {
x: Math.round(pointerEvent.pageX),
y: Math.round(pointerEvent.pageY)
};
}
};
return (0, import_jsx_runtime21.jsx)(Anchor, { asChild: true, ...popperScope, children: (0, import_jsx_runtime21.jsx)(
Primitive2.button,
{
type: "button",
role: "combobox",
"aria-controls": context.contentId,
"aria-expanded": context.open,
"aria-required": context.required,
"aria-autocomplete": "none",
dir: context.dir,
"data-state": context.open ? "open" : "closed",
disabled: isDisabled,
"data-disabled": isDisabled ? "" : void 0,
"data-placeholder": shouldShowPlaceholder(context.value) ? "" : void 0,
...triggerProps,
ref: composedRefs,
onClick: composeEventHandlers(triggerProps.onClick, (event) => {
event.currentTarget.focus();
if (pointerTypeRef.current !== "mouse") {
handleOpen(event);
}
}),
onPointerDown: composeEventHandlers(triggerProps.onPointerDown, (event) => {
pointerTypeRef.current = event.pointerType;
const target = event.target;
if (target.hasPointerCapture(event.pointerId)) {
target.releasePointerCapture(event.pointerId);
}
if (event.button === 0 && event.ctrlKey === false && event.pointerType === "mouse") {
handleOpen(event);
event.preventDefault();
}
}),
onKeyDown: composeEventHandlers(triggerProps.onKeyDown, (event) => {
const isTypingAhead = searchRef.current !== "";
const isModifierKey = event.ctrlKey || event.altKey || event.metaKey;
if (!isModifierKey && event.key.length === 1) handleTypeaheadSearch(event.key);
if (isTypingAhead && event.key === " ") return;
if (OPEN_KEYS.includes(event.key)) {
handleOpen();
event.preventDefault();
}
})
}
) });
}
);
SelectTrigger.displayName = TRIGGER_NAME3;
var VALUE_NAME = "SelectValue";
var SelectValue = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, className, style, children, placeholder = "", ...valueProps } = props;
const context = useSelectContext(VALUE_NAME, __scopeSelect);
const { onValueNodeHasChildrenChange } = context;
const hasChildren = children !== void 0;
const composedRefs = useComposedRefs(forwardedRef, context.onValueNodeChange);
useLayoutEffect2(() => {
onValueNodeHasChildrenChange(hasChildren);
}, [onValueNodeHasChildrenChange, hasChildren]);
return (0, import_jsx_runtime21.jsx)(
Primitive2.span,
{
...valueProps,
ref: composedRefs,
style: { pointerEvents: "none" },
children: shouldShowPlaceholder(context.value) ? (0, import_jsx_runtime21.jsx)(import_jsx_runtime21.Fragment, { children: placeholder }) : children
}
);
}
);
SelectValue.displayName = VALUE_NAME;
var ICON_NAME = "SelectIcon";
var SelectIcon = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, children, ...iconProps } = props;
return (0, import_jsx_runtime21.jsx)(Primitive2.span, { "aria-hidden": true, ...iconProps, ref: forwardedRef, children: children || "▼" });
}
);
SelectIcon.displayName = ICON_NAME;
var PORTAL_NAME5 = "SelectPortal";
var SelectPortal = (props) => {
return (0, import_jsx_runtime21.jsx)(Portal, { asChild: true, ...props });
};
SelectPortal.displayName = PORTAL_NAME5;
var CONTENT_NAME5 = "SelectContent";
var SelectContent = React43.forwardRef(
(props, forwardedRef) => {
const context = useSelectContext(CONTENT_NAME5, props.__scopeSelect);
const [fragment, setFragment] = React43.useState();
useLayoutEffect2(() => {
setFragment(new DocumentFragment());
}, []);
if (!context.open) {
const frag = fragment;
return frag ? ReactDOM4.createPortal(
(0, import_jsx_runtime21.jsx)(SelectContentProvider, { scope: props.__scopeSelect, children: (0, import_jsx_runtime21.jsx)(Collection3.Slot, { scope: props.__scopeSelect, children: (0, import_jsx_runtime21.jsx)("div", { children: props.children }) }) }),
frag
) : null;
}
return (0, import_jsx_runtime21.jsx)(SelectContentImpl, { ...props, ref: forwardedRef });
}
);
SelectContent.displayName = CONTENT_NAME5;
var CONTENT_MARGIN = 10;
var [SelectContentProvider, useSelectContentContext] = createSelectContext(CONTENT_NAME5);
var CONTENT_IMPL_NAME = "SelectContentImpl";
var Slot5 = createSlot2("SelectContent.RemoveScroll");
var SelectContentImpl = React43.forwardRef(
(props, forwardedRef) => {
const {
__scopeSelect,
position = "item-aligned",
onCloseAutoFocus,
onEscapeKeyDown,
onPointerDownOutside,
//
// PopperContent props
side,
sideOffset,
align,
alignOffset,
arrowPadding,
collisionBoundary,
collisionPadding,
sticky,
hideWhenDetached,
avoidCollisions,
//
...contentProps
} = props;
const context = useSelectContext(CONTENT_NAME5, __scopeSelect);
const [content, setContent] = React43.useState(null);
const [viewport, setViewport] = React43.useState(null);
const composedRefs = useComposedRefs(forwardedRef, (node) => setContent(node));
const [selectedItem, setSelectedItem] = React43.useState(null);
const [selectedItemText, setSelectedItemText] = React43.useState(
null
);
const getItems = useCollection3(__scopeSelect);
const [isPositioned, setIsPositioned] = React43.useState(false);
const firstValidItemFoundRef = React43.useRef(false);
React43.useEffect(() => {
if (content) return hideOthers(content);
}, [content]);
useFocusGuards();
const focusFirst4 = React43.useCallback(
(candidates) => {
const [firstItem, ...restItems] = getItems().map((item) => item.ref.current);
const [lastItem] = restItems.slice(-1);
const PREVIOUSLY_FOCUSED_ELEMENT = document.activeElement;
for (const candidate of candidates) {
if (candidate === PREVIOUSLY_FOCUSED_ELEMENT) return;
candidate == null ? void 0 : candidate.scrollIntoView({ block: "nearest" });
if (candidate === firstItem && viewport) viewport.scrollTop = 0;
if (candidate === lastItem && viewport) viewport.scrollTop = viewport.scrollHeight;
candidate == null ? void 0 : candidate.focus();
if (document.activeElement !== PREVIOUSLY_FOCUSED_ELEMENT) return;
}
},
[getItems, viewport]
);
const focusSelectedItem = React43.useCallback(
() => focusFirst4([selectedItem, content]),
[focusFirst4, selectedItem, content]
);
React43.useEffect(() => {
if (isPositioned) {
focusSelectedItem();
}
}, [isPositioned, focusSelectedItem]);
const { onOpenChange, triggerPointerDownPosRef } = context;
React43.useEffect(() => {
if (content) {
let pointerMoveDelta = { x: 0, y: 0 };
const handlePointerMove = (event) => {
var _a, _b;
pointerMoveDelta = {
x: Math.abs(Math.round(event.pageX) - (((_a = triggerPointerDownPosRef.current) == null ? void 0 : _a.x) ?? 0)),
y: Math.abs(Math.round(event.pageY) - (((_b = triggerPointerDownPosRef.current) == null ? void 0 : _b.y) ?? 0))
};
};
const handlePointerUp = (event) => {
if (pointerMoveDelta.x <= 10 && pointerMoveDelta.y <= 10) {
event.preventDefault();
} else {
if (!content.contains(event.target)) {
onOpenChange(false);
}
}
document.removeEventListener("pointermove", handlePointerMove);
triggerPointerDownPosRef.current = null;
};
if (triggerPointerDownPosRef.current !== null) {
document.addEventListener("pointermove", handlePointerMove);
document.addEventListener("pointerup", handlePointerUp, { capture: true, once: true });
}
return () => {
document.removeEventListener("pointermove", handlePointerMove);
document.removeEventListener("pointerup", handlePointerUp, { capture: true });
};
}
}, [content, onOpenChange, triggerPointerDownPosRef]);
React43.useEffect(() => {
const close = () => onOpenChange(false);
window.addEventListener("blur", close);
window.addEventListener("resize", close);
return () => {
window.removeEventListener("blur", close);
window.removeEventListener("resize", close);
};
}, [onOpenChange]);
const [searchRef, handleTypeaheadSearch] = useTypeaheadSearch((search) => {
const enabledItems = getItems().filter((item) => !item.disabled);
const currentItem = enabledItems.find((item) => item.ref.current === document.activeElement);
const nextItem = findNextItem(enabledItems, search, currentItem);
if (nextItem) {
setTimeout(() => nextItem.ref.current.focus());
}
});
const itemRefCallback = React43.useCallback(
(node, value, disabled) => {
const isFirstValidItem = !firstValidItemFoundRef.current && !disabled;
const isSelectedItem = context.value !== void 0 && context.value === value;
if (isSelectedItem || isFirstValidItem) {
setSelectedItem(node);
if (isFirstValidItem) firstValidItemFoundRef.current = true;
}
},
[context.value]
);
const handleItemLeave = React43.useCallback(() => content == null ? void 0 : content.focus(), [content]);
const itemTextRefCallback = React43.useCallback(
(node, value, disabled) => {
const isFirstValidItem = !firstValidItemFoundRef.current && !disabled;
const isSelectedItem = context.value !== void 0 && context.value === value;
if (isSelectedItem || isFirstValidItem) {
setSelectedItemText(node);
}
},
[context.value]
);
const SelectPosition = position === "popper" ? SelectPopperPosition : SelectItemAlignedPosition;
const popperContentProps = SelectPosition === SelectPopperPosition ? {
side,
sideOffset,
align,
alignOffset,
arrowPadding,
collisionBoundary,
collisionPadding,
sticky,
hideWhenDetached,
avoidCollisions
} : {};
return (0, import_jsx_runtime21.jsx)(
SelectContentProvider,
{
scope: __scopeSelect,
content,
viewport,
onViewportChange: setViewport,
itemRefCallback,
selectedItem,
onItemLeave: handleItemLeave,
itemTextRefCallback,
focusSelectedItem,
selectedItemText,
position,
isPositioned,
searchRef,
children: (0, import_jsx_runtime21.jsx)(Combination_default, { as: Slot5, allowPinchZoom: true, children: (0, import_jsx_runtime21.jsx)(
FocusScope,
{
asChild: true,
trapped: context.open,
onMountAutoFocus: (event) => {
event.preventDefault();
},
onUnmountAutoFocus: composeEventHandlers(onCloseAutoFocus, (event) => {
var _a;
(_a = context.trigger) == null ? void 0 : _a.focus({ preventScroll: true });
event.preventDefault();
}),
children: (0, import_jsx_runtime21.jsx)(
DismissableLayer,
{
asChild: true,
disableOutsidePointerEvents: true,
onEscapeKeyDown,
onPointerDownOutside,
onFocusOutside: (event) => event.preventDefault(),
onDismiss: () => context.onOpenChange(false),
children: (0, import_jsx_runtime21.jsx)(
SelectPosition,
{
role: "listbox",
id: context.contentId,
"data-state": context.open ? "open" : "closed",
dir: context.dir,
onContextMenu: (event) => event.preventDefault(),
...contentProps,
...popperContentProps,
onPlaced: () => setIsPositioned(true),
ref: composedRefs,
style: {
// flex layout so we can place the scroll buttons properly
display: "flex",
flexDirection: "column",
// reset the outline by default as the content MAY get focused
outline: "none",
...contentProps.style
},
onKeyDown: composeEventHandlers(contentProps.onKeyDown, (event) => {
const isModifierKey = event.ctrlKey || event.altKey || event.metaKey;
if (event.key === "Tab") event.preventDefault();
if (!isModifierKey && event.key.length === 1) handleTypeaheadSearch(event.key);
if (["ArrowUp", "ArrowDown", "Home", "End"].includes(event.key)) {
const items = getItems().filter((item) => !item.disabled);
let candidateNodes = items.map((item) => item.ref.current);
if (["ArrowUp", "End"].includes(event.key)) {
candidateNodes = candidateNodes.slice().reverse();
}
if (["ArrowUp", "ArrowDown"].includes(event.key)) {
const currentElement = event.target;
const currentIndex = candidateNodes.indexOf(currentElement);
candidateNodes = candidateNodes.slice(currentIndex + 1);
}
setTimeout(() => focusFirst4(candidateNodes));
event.preventDefault();
}
})
}
)
}
)
}
) })
}
);
}
);
SelectContentImpl.displayName = CONTENT_IMPL_NAME;
var ITEM_ALIGNED_POSITION_NAME = "SelectItemAlignedPosition";
var SelectItemAlignedPosition = React43.forwardRef((props, forwardedRef) => {
const { __scopeSelect, onPlaced, ...popperProps } = props;
const context = useSelectContext(CONTENT_NAME5, __scopeSelect);
const contentContext = useSelectContentContext(CONTENT_NAME5, __scopeSelect);
const [contentWrapper, setContentWrapper] = React43.useState(null);
const [content, setContent] = React43.useState(null);
const composedRefs = useComposedRefs(forwardedRef, (node) => setContent(node));
const getItems = useCollection3(__scopeSelect);
const shouldExpandOnScrollRef = React43.useRef(false);
const shouldRepositionRef = React43.useRef(true);
const { viewport, selectedItem, selectedItemText, focusSelectedItem } = contentContext;
const position = React43.useCallback(() => {
if (context.trigger && context.valueNode && contentWrapper && content && viewport && selectedItem && selectedItemText) {
const triggerRect = context.trigger.getBoundingClientRect();
const contentRect = content.getBoundingClientRect();
const valueNodeRect = context.valueNode.getBoundingClientRect();
const itemTextRect = selectedItemText.getBoundingClientRect();
if (context.dir !== "rtl") {
const itemTextOffset = itemTextRect.left - contentRect.left;
const left = valueNodeRect.left - itemTextOffset;
const leftDelta = triggerRect.left - left;
const minContentWidth = triggerRect.width + leftDelta;
const contentWidth = Math.max(minContentWidth, contentRect.width);
const rightEdge = window.innerWidth - CONTENT_MARGIN;
const clampedLeft = clamp(left, [
CONTENT_MARGIN,
// Prevents the content from going off the starting edge of the
// viewport. It may still go off the ending edge, but this can be
// controlled by the user since they may want to manage overflow in a
// specific way.
// https://github.com/radix-ui/primitives/issues/2049
Math.max(CONTENT_MARGIN, rightEdge - contentWidth)
]);
contentWrapper.style.minWidth = minContentWidth + "px";
contentWrapper.style.left = clampedLeft + "px";
} else {
const itemTextOffset = contentRect.right - itemTextRect.right;
const right = window.innerWidth - valueNodeRect.right - itemTextOffset;
const rightDelta = window.innerWidth - triggerRect.right - right;
const minContentWidth = triggerRect.width + rightDelta;
const contentWidth = Math.max(minContentWidth, contentRect.width);
const leftEdge = window.innerWidth - CONTENT_MARGIN;
const clampedRight = clamp(right, [
CONTENT_MARGIN,
Math.max(CONTENT_MARGIN, leftEdge - contentWidth)
]);
contentWrapper.style.minWidth = minContentWidth + "px";
contentWrapper.style.right = clampedRight + "px";
}
const items = getItems();
const availableHeight = window.innerHeight - CONTENT_MARGIN * 2;
const itemsHeight = viewport.scrollHeight;
const contentStyles = window.getComputedStyle(content);
const contentBorderTopWidth = parseInt(contentStyles.borderTopWidth, 10);
const contentPaddingTop = parseInt(contentStyles.paddingTop, 10);
const contentBorderBottomWidth = parseInt(contentStyles.borderBottomWidth, 10);
const contentPaddingBottom = parseInt(contentStyles.paddingBottom, 10);
const fullContentHeight = contentBorderTopWidth + contentPaddingTop + itemsHeight + contentPaddingBottom + contentBorderBottomWidth;
const minContentHeight = Math.min(selectedItem.offsetHeight * 5, fullContentHeight);
const viewportStyles = window.getComputedStyle(viewport);
const viewportPaddingTop = parseInt(viewportStyles.paddingTop, 10);
const viewportPaddingBottom = parseInt(viewportStyles.paddingBottom, 10);
const topEdgeToTriggerMiddle = triggerRect.top + triggerRect.height / 2 - CONTENT_MARGIN;
const triggerMiddleToBottomEdge = availableHeight - topEdgeToTriggerMiddle;
const selectedItemHalfHeight = selectedItem.offsetHeight / 2;
const itemOffsetMiddle = selectedItem.offsetTop + selectedItemHalfHeight;
const contentTopToItemMiddle = contentBorderTopWidth + contentPaddingTop + itemOffsetMiddle;
const itemMiddleToContentBottom = fullContentHeight - contentTopToItemMiddle;
const willAlignWithoutTopOverflow = contentTopToItemMiddle <= topEdgeToTriggerMiddle;
if (willAlignWithoutTopOverflow) {
const isLastItem = items.length > 0 && selectedItem === items[items.length - 1].ref.current;
contentWrapper.style.bottom = "0px";
const viewportOffsetBottom = content.clientHeight - viewport.offsetTop - viewport.offsetHeight;
const clampedTriggerMiddleToBottomEdge = Math.max(
triggerMiddleToBottomEdge,
selectedItemHalfHeight + // viewport might have padding bottom, include it to avoid a scrollable viewport
(isLastItem ? viewportPaddingBottom : 0) + viewportOffsetBottom + contentBorderBottomWidth
);
const height = contentTopToItemMiddle + clampedTriggerMiddleToBottomEdge;
contentWrapper.style.height = height + "px";
} else {
const isFirstItem = items.length > 0 && selectedItem === items[0].ref.current;
contentWrapper.style.top = "0px";
const clampedTopEdgeToTriggerMiddle = Math.max(
topEdgeToTriggerMiddle,
contentBorderTopWidth + viewport.offsetTop + // viewport might have padding top, include it to avoid a scrollable viewport
(isFirstItem ? viewportPaddingTop : 0) + selectedItemHalfHeight
);
const height = clampedTopEdgeToTriggerMiddle + itemMiddleToContentBottom;
contentWrapper.style.height = height + "px";
viewport.scrollTop = contentTopToItemMiddle - topEdgeToTriggerMiddle + viewport.offsetTop;
}
contentWrapper.style.margin = `${CONTENT_MARGIN}px 0`;
contentWrapper.style.minHeight = minContentHeight + "px";
contentWrapper.style.maxHeight = availableHeight + "px";
onPlaced == null ? void 0 : onPlaced();
requestAnimationFrame(() => shouldExpandOnScrollRef.current = true);
}
}, [
getItems,
context.trigger,
context.valueNode,
contentWrapper,
content,
viewport,
selectedItem,
selectedItemText,
context.dir,
onPlaced
]);
useLayoutEffect2(() => position(), [position]);
const [contentZIndex, setContentZIndex] = React43.useState();
useLayoutEffect2(() => {
if (content) setContentZIndex(window.getComputedStyle(content).zIndex);
}, [content]);
const handleScrollButtonChange = React43.useCallback(
(node) => {
if (node && shouldRepositionRef.current === true) {
position();
focusSelectedItem == null ? void 0 : focusSelectedItem();
shouldRepositionRef.current = false;
}
},
[position, focusSelectedItem]
);
return (0, import_jsx_runtime21.jsx)(
SelectViewportProvider,
{
scope: __scopeSelect,
contentWrapper,
shouldExpandOnScrollRef,
onScrollButtonChange: handleScrollButtonChange,
children: (0, import_jsx_runtime21.jsx)(
"div",
{
ref: setContentWrapper,
style: {
display: "flex",
flexDirection: "column",
position: "fixed",
zIndex: contentZIndex
},
children: (0, import_jsx_runtime21.jsx)(
Primitive2.div,
{
...popperProps,
ref: composedRefs,
style: {
// When we get the height of the content, it includes borders. If we were to set
// the height without having `boxSizing: 'border-box'` it would be too big.
boxSizing: "border-box",
// We need to ensure the content doesn't get taller than the wrapper
maxHeight: "100%",
...popperProps.style
}
}
)
}
)
}
);
});
SelectItemAlignedPosition.displayName = ITEM_ALIGNED_POSITION_NAME;
var POPPER_POSITION_NAME = "SelectPopperPosition";
var SelectPopperPosition = React43.forwardRef((props, forwardedRef) => {
const {
__scopeSelect,
align = "start",
collisionPadding = CONTENT_MARGIN,
...popperProps
} = props;
const popperScope = usePopperScope3(__scopeSelect);
return (0, import_jsx_runtime21.jsx)(
Content,
{
...popperScope,
...popperProps,
ref: forwardedRef,
align,
collisionPadding,
style: {
// Ensure border-box for floating-ui calculations
boxSizing: "border-box",
...popperProps.style,
// re-namespace exposed content custom properties
...{
"--radix-select-content-transform-origin": "var(--radix-popper-transform-origin)",
"--radix-select-content-available-width": "var(--radix-popper-available-width)",
"--radix-select-content-available-height": "var(--radix-popper-available-height)",
"--radix-select-trigger-width": "var(--radix-popper-anchor-width)",
"--radix-select-trigger-height": "var(--radix-popper-anchor-height)"
}
}
}
);
});
SelectPopperPosition.displayName = POPPER_POSITION_NAME;
var [SelectViewportProvider, useSelectViewportContext] = createSelectContext(CONTENT_NAME5, {});
var VIEWPORT_NAME = "SelectViewport";
var SelectViewport = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, nonce, ...viewportProps } = props;
const contentContext = useSelectContentContext(VIEWPORT_NAME, __scopeSelect);
const viewportContext = useSelectViewportContext(VIEWPORT_NAME, __scopeSelect);
const composedRefs = useComposedRefs(forwardedRef, contentContext.onViewportChange);
const prevScrollTopRef = React43.useRef(0);
return (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
(0, import_jsx_runtime21.jsx)(
"style",
{
dangerouslySetInnerHTML: {
__html: `[data-radix-select-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-select-viewport]::-webkit-scrollbar{display:none}`
},
nonce
}
),
(0, import_jsx_runtime21.jsx)(Collection3.Slot, { scope: __scopeSelect, children: (0, import_jsx_runtime21.jsx)(
Primitive2.div,
{
"data-radix-select-viewport": "",
role: "presentation",
...viewportProps,
ref: composedRefs,
style: {
// we use position: 'relative' here on the `viewport` so that when we call
// `selectedItem.offsetTop` in calculations, the offset is relative to the viewport
// (independent of the scrollUpButton).
position: "relative",
flex: 1,
// Viewport should only be scrollable in the vertical direction.
// This won't work in vertical writing modes, so we'll need to
// revisit this if/when that is supported
// https://developer.chrome.com/blog/vertical-form-controls
overflow: "hidden auto",
...viewportProps.style
},
onScroll: composeEventHandlers(viewportProps.onScroll, (event) => {
const viewport = event.currentTarget;
const { contentWrapper, shouldExpandOnScrollRef } = viewportContext;
if ((shouldExpandOnScrollRef == null ? void 0 : shouldExpandOnScrollRef.current) && contentWrapper) {
const scrolledBy = Math.abs(prevScrollTopRef.current - viewport.scrollTop);
if (scrolledBy > 0) {
const availableHeight = window.innerHeight - CONTENT_MARGIN * 2;
const cssMinHeight = parseFloat(contentWrapper.style.minHeight);
const cssHeight = parseFloat(contentWrapper.style.height);
const prevHeight = Math.max(cssMinHeight, cssHeight);
if (prevHeight < availableHeight) {
const nextHeight = prevHeight + scrolledBy;
const clampedNextHeight = Math.min(availableHeight, nextHeight);
const heightDiff = nextHeight - clampedNextHeight;
contentWrapper.style.height = clampedNextHeight + "px";
if (contentWrapper.style.bottom === "0px") {
viewport.scrollTop = heightDiff > 0 ? heightDiff : 0;
contentWrapper.style.justifyContent = "flex-end";
}
}
}
}
prevScrollTopRef.current = viewport.scrollTop;
})
}
) })
] });
}
);
SelectViewport.displayName = VIEWPORT_NAME;
var GROUP_NAME4 = "SelectGroup";
var [SelectGroupContextProvider, useSelectGroupContext] = createSelectContext(GROUP_NAME4);
var SelectGroup = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, ...groupProps } = props;
const groupId = useId();
return (0, import_jsx_runtime21.jsx)(SelectGroupContextProvider, { scope: __scopeSelect, id: groupId, children: (0, import_jsx_runtime21.jsx)(Primitive2.div, { role: "group", "aria-labelledby": groupId, ...groupProps, ref: forwardedRef }) });
}
);
SelectGroup.displayName = GROUP_NAME4;
var LABEL_NAME3 = "SelectLabel";
var SelectLabel = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, ...labelProps } = props;
const groupContext = useSelectGroupContext(LABEL_NAME3, __scopeSelect);
return (0, import_jsx_runtime21.jsx)(Primitive2.div, { id: groupContext.id, ...labelProps, ref: forwardedRef });
}
);
SelectLabel.displayName = LABEL_NAME3;
var ITEM_NAME4 = "SelectItem";
var [SelectItemContextProvider, useSelectItemContext] = createSelectContext(ITEM_NAME4);
var SelectItem = React43.forwardRef(
(props, forwardedRef) => {
const {
__scopeSelect,
value,
disabled = false,
textValue: textValueProp,
...itemProps
} = props;
const context = useSelectContext(ITEM_NAME4, __scopeSelect);
const contentContext = useSelectContentContext(ITEM_NAME4, __scopeSelect);
const isSelected = context.value === value;
const [textValue, setTextValue] = React43.useState(textValueProp ?? "");
const [isFocused, setIsFocused] = React43.useState(false);
const composedRefs = useComposedRefs(
forwardedRef,
(node) => {
var _a;
return (_a = contentContext.itemRefCallback) == null ? void 0 : _a.call(contentContext, node, value, disabled);
}
);
const textId = useId();
const pointerTypeRef = React43.useRef("touch");
const handleSelect = () => {
if (!disabled) {
context.onValueChange(value);
context.onOpenChange(false);
}
};
if (value === "") {
throw new Error(
"A <Select.Item /> must have a value prop that is not an empty string. This is because the Select value can be set to an empty string to clear the selection and show the placeholder."
);
}
return (0, import_jsx_runtime21.jsx)(
SelectItemContextProvider,
{
scope: __scopeSelect,
value,
disabled,
textId,
isSelected,
onItemTextChange: React43.useCallback((node) => {
setTextValue((prevTextValue) => prevTextValue || ((node == null ? void 0 : node.textContent) ?? "").trim());
}, []),
children: (0, import_jsx_runtime21.jsx)(
Collection3.ItemSlot,
{
scope: __scopeSelect,
value,
disabled,
textValue,
children: (0, import_jsx_runtime21.jsx)(
Primitive2.div,
{
role: "option",
"aria-labelledby": textId,
"data-highlighted": isFocused ? "" : void 0,
"aria-selected": isSelected && isFocused,
"data-state": isSelected ? "checked" : "unchecked",
"aria-disabled": disabled || void 0,
"data-disabled": disabled ? "" : void 0,
tabIndex: disabled ? void 0 : -1,
...itemProps,
ref: composedRefs,
onFocus: composeEventHandlers(itemProps.onFocus, () => setIsFocused(true)),
onBlur: composeEventHandlers(itemProps.onBlur, () => setIsFocused(false)),
onClick: composeEventHandlers(itemProps.onClick, () => {
if (pointerTypeRef.current !== "mouse") handleSelect();
}),
onPointerUp: composeEventHandlers(itemProps.onPointerUp, () => {
if (pointerTypeRef.current === "mouse") handleSelect();
}),
onPointerDown: composeEventHandlers(itemProps.onPointerDown, (event) => {
pointerTypeRef.current = event.pointerType;
}),
onPointerMove: composeEventHandlers(itemProps.onPointerMove, (event) => {
var _a;
pointerTypeRef.current = event.pointerType;
if (disabled) {
(_a = contentContext.onItemLeave) == null ? void 0 : _a.call(contentContext);
} else if (pointerTypeRef.current === "mouse") {
event.currentTarget.focus({ preventScroll: true });
}
}),
onPointerLeave: composeEventHandlers(itemProps.onPointerLeave, (event) => {
var _a;
if (event.currentTarget === document.activeElement) {
(_a = contentContext.onItemLeave) == null ? void 0 : _a.call(contentContext);
}
}),
onKeyDown: composeEventHandlers(itemProps.onKeyDown, (event) => {
var _a;
const isTypingAhead = ((_a = contentContext.searchRef) == null ? void 0 : _a.current) !== "";
if (isTypingAhead && event.key === " ") return;
if (SELECTION_KEYS2.includes(event.key)) handleSelect();
if (event.key === " ") event.preventDefault();
})
}
)
}
)
}
);
}
);
SelectItem.displayName = ITEM_NAME4;
var ITEM_TEXT_NAME = "SelectItemText";
var SelectItemText = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, className, style, ...itemTextProps } = props;
const context = useSelectContext(ITEM_TEXT_NAME, __scopeSelect);
const contentContext = useSelectContentContext(ITEM_TEXT_NAME, __scopeSelect);
const itemContext = useSelectItemContext(ITEM_TEXT_NAME, __scopeSelect);
const nativeOptionsContext = useSelectNativeOptionsContext(ITEM_TEXT_NAME, __scopeSelect);
const [itemTextNode, setItemTextNode] = React43.useState(null);
const composedRefs = useComposedRefs(
forwardedRef,
(node) => setItemTextNode(node),
itemContext.onItemTextChange,
(node) => {
var _a;
return (_a = contentContext.itemTextRefCallback) == null ? void 0 : _a.call(contentContext, node, itemContext.value, itemContext.disabled);
}
);
const textContent = itemTextNode == null ? void 0 : itemTextNode.textContent;
const nativeOption = React43.useMemo(
() => (0, import_jsx_runtime21.jsx)("option", { value: itemContext.value, disabled: itemContext.disabled, children: textContent }, itemContext.value),
[itemContext.disabled, itemContext.value, textContent]
);
const { onNativeOptionAdd, onNativeOptionRemove } = nativeOptionsContext;
useLayoutEffect2(() => {
onNativeOptionAdd(nativeOption);
return () => onNativeOptionRemove(nativeOption);
}, [onNativeOptionAdd, onNativeOptionRemove, nativeOption]);
return (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
(0, import_jsx_runtime21.jsx)(Primitive2.span, { id: itemContext.textId, ...itemTextProps, ref: composedRefs }),
itemContext.isSelected && context.valueNode && !context.valueNodeHasChildren ? ReactDOM4.createPortal(itemTextProps.children, context.valueNode) : null
] });
}
);
SelectItemText.displayName = ITEM_TEXT_NAME;
var ITEM_INDICATOR_NAME2 = "SelectItemIndicator";
var SelectItemIndicator = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, ...itemIndicatorProps } = props;
const itemContext = useSelectItemContext(ITEM_INDICATOR_NAME2, __scopeSelect);
return itemContext.isSelected ? (0, import_jsx_runtime21.jsx)(Primitive2.span, { "aria-hidden": true, ...itemIndicatorProps, ref: forwardedRef }) : null;
}
);
SelectItemIndicator.displayName = ITEM_INDICATOR_NAME2;
var SCROLL_UP_BUTTON_NAME = "SelectScrollUpButton";
var SelectScrollUpButton = React43.forwardRef((props, forwardedRef) => {
const contentContext = useSelectContentContext(SCROLL_UP_BUTTON_NAME, props.__scopeSelect);
const viewportContext = useSelectViewportContext(SCROLL_UP_BUTTON_NAME, props.__scopeSelect);
const [canScrollUp, setCanScrollUp] = React43.useState(false);
const composedRefs = useComposedRefs(forwardedRef, viewportContext.onScrollButtonChange);
useLayoutEffect2(() => {
if (contentContext.viewport && contentContext.isPositioned) {
let handleScroll22 = function() {
const canScrollUp2 = viewport.scrollTop > 0;
setCanScrollUp(canScrollUp2);
};
var handleScroll2 = handleScroll22;
const viewport = contentContext.viewport;
handleScroll22();
viewport.addEventListener("scroll", handleScroll22);
return () => viewport.removeEventListener("scroll", handleScroll22);
}
}, [contentContext.viewport, contentContext.isPositioned]);
return canScrollUp ? (0, import_jsx_runtime21.jsx)(
SelectScrollButtonImpl,
{
...props,
ref: composedRefs,
onAutoScroll: () => {
const { viewport, selectedItem } = contentContext;
if (viewport && selectedItem) {
viewport.scrollTop = viewport.scrollTop - selectedItem.offsetHeight;
}
}
}
) : null;
});
SelectScrollUpButton.displayName = SCROLL_UP_BUTTON_NAME;
var SCROLL_DOWN_BUTTON_NAME = "SelectScrollDownButton";
var SelectScrollDownButton = React43.forwardRef((props, forwardedRef) => {
const contentContext = useSelectContentContext(SCROLL_DOWN_BUTTON_NAME, props.__scopeSelect);
const viewportContext = useSelectViewportContext(SCROLL_DOWN_BUTTON_NAME, props.__scopeSelect);
const [canScrollDown, setCanScrollDown] = React43.useState(false);
const composedRefs = useComposedRefs(forwardedRef, viewportContext.onScrollButtonChange);
useLayoutEffect2(() => {
if (contentContext.viewport && contentContext.isPositioned) {
let handleScroll22 = function() {
const maxScroll = viewport.scrollHeight - viewport.clientHeight;
const canScrollDown2 = Math.ceil(viewport.scrollTop) < maxScroll;
setCanScrollDown(canScrollDown2);
};
var handleScroll2 = handleScroll22;
const viewport = contentContext.viewport;
handleScroll22();
viewport.addEventListener("scroll", handleScroll22);
return () => viewport.removeEventListener("scroll", handleScroll22);
}
}, [contentContext.viewport, contentContext.isPositioned]);
return canScrollDown ? (0, import_jsx_runtime21.jsx)(
SelectScrollButtonImpl,
{
...props,
ref: composedRefs,
onAutoScroll: () => {
const { viewport, selectedItem } = contentContext;
if (viewport && selectedItem) {
viewport.scrollTop = viewport.scrollTop + selectedItem.offsetHeight;
}
}
}
) : null;
});
SelectScrollDownButton.displayName = SCROLL_DOWN_BUTTON_NAME;
var SelectScrollButtonImpl = React43.forwardRef((props, forwardedRef) => {
const { __scopeSelect, onAutoScroll, ...scrollIndicatorProps } = props;
const contentContext = useSelectContentContext("SelectScrollButton", __scopeSelect);
const autoScrollTimerRef = React43.useRef(null);
const getItems = useCollection3(__scopeSelect);
const clearAutoScrollTimer = React43.useCallback(() => {
if (autoScrollTimerRef.current !== null) {
window.clearInterval(autoScrollTimerRef.current);
autoScrollTimerRef.current = null;
}
}, []);
React43.useEffect(() => {
return () => clearAutoScrollTimer();
}, [clearAutoScrollTimer]);
useLayoutEffect2(() => {
var _a;
const activeItem = getItems().find((item) => item.ref.current === document.activeElement);
(_a = activeItem == null ? void 0 : activeItem.ref.current) == null ? void 0 : _a.scrollIntoView({ block: "nearest" });
}, [getItems]);
return (0, import_jsx_runtime21.jsx)(
Primitive2.div,
{
"aria-hidden": true,
...scrollIndicatorProps,
ref: forwardedRef,
style: { flexShrink: 0, ...scrollIndicatorProps.style },
onPointerDown: composeEventHandlers(scrollIndicatorProps.onPointerDown, () => {
if (autoScrollTimerRef.current === null) {
autoScrollTimerRef.current = window.setInterval(onAutoScroll, 50);
}
}),
onPointerMove: composeEventHandlers(scrollIndicatorProps.onPointerMove, () => {
var _a;
(_a = contentContext.onItemLeave) == null ? void 0 : _a.call(contentContext);
if (autoScrollTimerRef.current === null) {
autoScrollTimerRef.current = window.setInterval(onAutoScroll, 50);
}
}),
onPointerLeave: composeEventHandlers(scrollIndicatorProps.onPointerLeave, () => {
clearAutoScrollTimer();
})
}
);
});
var SEPARATOR_NAME3 = "SelectSeparator";
var SelectSeparator = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, ...separatorProps } = props;
return (0, import_jsx_runtime21.jsx)(Primitive2.div, { "aria-hidden": true, ...separatorProps, ref: forwardedRef });
}
);
SelectSeparator.displayName = SEPARATOR_NAME3;
var ARROW_NAME5 = "SelectArrow";
var SelectArrow = React43.forwardRef(
(props, forwardedRef) => {
const { __scopeSelect, ...arrowProps } = props;
const popperScope = usePopperScope3(__scopeSelect);
const context = useSelectContext(ARROW_NAME5, __scopeSelect);
const contentContext = useSelectContentContext(ARROW_NAME5, __scopeSelect);
return context.open && contentContext.position === "popper" ? (0, import_jsx_runtime21.jsx)(Arrow2, { ...popperScope, ...arrowProps, ref: forwardedRef }) : null;
}
);
SelectArrow.displayName = ARROW_NAME5;
var BUBBLE_INPUT_NAME = "SelectBubbleInput";
var SelectBubbleInput = React43.forwardRef(
({ __scopeSelect, value, ...props }, forwardedRef) => {
const ref = React43.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref);
const prevValue = usePrevious(value);
React43.useEffect(() => {
const select = ref.current;
if (!select) return;
const selectProto = window.HTMLSelectElement.prototype;
const descriptor = Object.getOwnPropertyDescriptor(
selectProto,
"value"
);
const setValue = descriptor.set;
if (prevValue !== value && setValue) {
const event = new Event("change", { bubbles: true });
setValue.call(select, value);
select.dispatchEvent(event);
}
}, [prevValue, value]);
return (0, import_jsx_runtime21.jsx)(
Primitive2.select,
{
...props,
style: { ...VISUALLY_HIDDEN_STYLES, ...props.style },
ref: composedRefs,
defaultValue: value
}
);
}
);
SelectBubbleInput.displayName = BUBBLE_INPUT_NAME;
function shouldShowPlaceholder(value) {
return value === "" || value === void 0;
}
function useTypeaheadSearch(onSearchChange) {
const handleSearchChange = useCallbackRef(onSearchChange);
const searchRef = React43.useRef("");
const timerRef = React43.useRef(0);
const handleTypeaheadSearch = React43.useCallback(
(key) => {
const search = searchRef.current + key;
handleSearchChange(search);
(function updateSearch(value) {
searchRef.current = value;
window.clearTimeout(timerRef.current);
if (value !== "") timerRef.current = window.setTimeout(() => updateSearch(""), 1e3);
})(search);
},
[handleSearchChange]
);
const resetTypeahead = React43.useCallback(() => {
searchRef.current = "";
window.clearTimeout(timerRef.current);
}, []);
React43.useEffect(() => {
return () => window.clearTimeout(timerRef.current);
}, []);
return [searchRef, handleTypeaheadSearch, resetTypeahead];
}
function findNextItem(items, search, currentItem) {
const isRepeated = search.length > 1 && Array.from(search).every((char) => char === search[0]);
const normalizedSearch = isRepeated ? search[0] : search;
const currentItemIndex = currentItem ? items.indexOf(currentItem) : -1;
let wrappedItems = wrapArray3(items, Math.max(currentItemIndex, 0));
const excludeCurrentItem = normalizedSearch.length === 1;
if (excludeCurrentItem) wrappedItems = wrappedItems.filter((v2) => v2 !== currentItem);
const nextItem = wrappedItems.find(
(item) => item.textValue.toLowerCase().startsWith(normalizedSearch.toLowerCase())
);
return nextItem !== currentItem ? nextItem : void 0;
}
function wrapArray3(array, startIndex) {
return array.map((_, index) => array[(startIndex + index) % array.length]);
}
var Root25 = Select;
var Trigger3 = SelectTrigger;
var Value = SelectValue;
var Icon2 = SelectIcon;
var Content24 = SelectContent;
var Viewport = SelectViewport;
var Item3 = SelectItem;
var ItemText = SelectItemText;
var ItemIndicator3 = SelectItemIndicator;
var ScrollUpButton = SelectScrollUpButton;
var ScrollDownButton = SelectScrollDownButton;
// ../../node_modules/.pnpm/@radix-ui+react-tabs@1.1.13_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_dc861e27c2a200eb839e0d3bcc9fb0d9/node_modules/@radix-ui/react-tabs/dist/index.mjs
var React44 = __toESM(require_react(), 1);
var import_jsx_runtime22 = __toESM(require_jsx_runtime(), 1);
var TABS_NAME = "Tabs";
var [createTabsContext, createTabsScope] = createContextScope2(TABS_NAME, [
createRovingFocusGroupScope
]);
var useRovingFocusGroupScope2 = createRovingFocusGroupScope();
var [TabsProvider, useTabsContext] = createTabsContext(TABS_NAME);
var Tabs = React44.forwardRef(
(props, forwardedRef) => {
const {
__scopeTabs,
value: valueProp,
onValueChange,
defaultValue,
orientation = "horizontal",
dir,
activationMode = "automatic",
...tabsProps
} = props;
const direction = useDirection(dir);
const [value, setValue] = useControllableState({
prop: valueProp,
onChange: onValueChange,
defaultProp: defaultValue ?? "",
caller: TABS_NAME
});
return (0, import_jsx_runtime22.jsx)(
TabsProvider,
{
scope: __scopeTabs,
baseId: useId(),
value,
onValueChange: setValue,
orientation,
dir: direction,
activationMode,
children: (0, import_jsx_runtime22.jsx)(
Primitive2.div,
{
dir: direction,
"data-orientation": orientation,
...tabsProps,
ref: forwardedRef
}
)
}
);
}
);
Tabs.displayName = TABS_NAME;
var TAB_LIST_NAME = "TabsList";
var TabsList = React44.forwardRef(
(props, forwardedRef) => {
const { __scopeTabs, loop = true, ...listProps } = props;
const context = useTabsContext(TAB_LIST_NAME, __scopeTabs);
const rovingFocusGroupScope = useRovingFocusGroupScope2(__scopeTabs);
return (0, import_jsx_runtime22.jsx)(
Root3,
{
asChild: true,
...rovingFocusGroupScope,
orientation: context.orientation,
dir: context.dir,
loop,
children: (0, import_jsx_runtime22.jsx)(
Primitive2.div,
{
role: "tablist",
"aria-orientation": context.orientation,
...listProps,
ref: forwardedRef
}
)
}
);
}
);
TabsList.displayName = TAB_LIST_NAME;
var TRIGGER_NAME4 = "TabsTrigger";
var TabsTrigger = React44.forwardRef(
(props, forwardedRef) => {
const { __scopeTabs, value, disabled = false, ...triggerProps } = props;
const context = useTabsContext(TRIGGER_NAME4, __scopeTabs);
const rovingFocusGroupScope = useRovingFocusGroupScope2(__scopeTabs);
const triggerId = makeTriggerId(context.baseId, value);
const contentId = makeContentId(context.baseId, value);
const isSelected = value === context.value;
return (0, import_jsx_runtime22.jsx)(
Item,
{
asChild: true,
...rovingFocusGroupScope,
focusable: !disabled,
active: isSelected,
children: (0, import_jsx_runtime22.jsx)(
Primitive2.button,
{
type: "button",
role: "tab",
"aria-selected": isSelected,
"aria-controls": contentId,
"data-state": isSelected ? "active" : "inactive",
"data-disabled": disabled ? "" : void 0,
disabled,
id: triggerId,
...triggerProps,
ref: forwardedRef,
onMouseDown: composeEventHandlers(props.onMouseDown, (event) => {
if (!disabled && event.button === 0 && event.ctrlKey === false) {
context.onValueChange(value);
} else {
event.preventDefault();
}
}),
onKeyDown: composeEventHandlers(props.onKeyDown, (event) => {
if ([" ", "Enter"].includes(event.key)) context.onValueChange(value);
}),
onFocus: composeEventHandlers(props.onFocus, () => {
const isAutomaticActivation = context.activationMode !== "manual";
if (!isSelected && !disabled && isAutomaticActivation) {
context.onValueChange(value);
}
})
}
)
}
);
}
);
TabsTrigger.displayName = TRIGGER_NAME4;
var CONTENT_NAME6 = "TabsContent";
var TabsContent = React44.forwardRef(
(props, forwardedRef) => {
const { __scopeTabs, value, forceMount, children, ...contentProps } = props;
const context = useTabsContext(CONTENT_NAME6, __scopeTabs);
const triggerId = makeTriggerId(context.baseId, value);
const contentId = makeContentId(context.baseId, value);
const isSelected = value === context.value;
const isMountAnimationPreventedRef = React44.useRef(isSelected);
React44.useEffect(() => {
const rAF = requestAnimationFrame(() => isMountAnimationPreventedRef.current = false);
return () => cancelAnimationFrame(rAF);
}, []);
return (0, import_jsx_runtime22.jsx)(Presence, { present: forceMount || isSelected, children: ({ present }) => (0, import_jsx_runtime22.jsx)(
Primitive2.div,
{
"data-state": isSelected ? "active" : "inactive",
"data-orientation": context.orientation,
role: "tabpanel",
"aria-labelledby": triggerId,
hidden: !present,
id: contentId,
tabIndex: 0,
...contentProps,
ref: forwardedRef,
style: {
...props.style,
animationDuration: isMountAnimationPreventedRef.current ? "0s" : void 0
},
children: present && children
}
) });
}
);
TabsContent.displayName = CONTENT_NAME6;
function makeTriggerId(baseId, value) {
return `${baseId}-trigger-${value}`;
}
function makeContentId(baseId, value) {
return `${baseId}-content-${value}`;
}
var Root26 = Tabs;
var List2 = TabsList;
var Trigger4 = TabsTrigger;
var Content3 = TabsContent;
// ../../node_modules/.pnpm/@radix-ui+react-toggle@1.1.10_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_a69cdb4c0df20d1ea9fa0ab3b936c0f8/node_modules/@radix-ui/react-toggle/dist/index.mjs
var React45 = __toESM(require_react(), 1);
var import_jsx_runtime23 = __toESM(require_jsx_runtime(), 1);
var NAME4 = "Toggle";
var Toggle = React45.forwardRef((props, forwardedRef) => {
const { pressed: pressedProp, defaultPressed, onPressedChange, ...buttonProps } = props;
const [pressed, setPressed] = useControllableState({
prop: pressedProp,
onChange: onPressedChange,
defaultProp: defaultPressed ?? false,
caller: NAME4
});
return (0, import_jsx_runtime23.jsx)(
Primitive2.button,
{
type: "button",
"aria-pressed": pressed,
"data-state": pressed ? "on" : "off",
"data-disabled": props.disabled ? "" : void 0,
...buttonProps,
ref: forwardedRef,
onClick: composeEventHandlers(props.onClick, () => {
if (!props.disabled) {
setPressed(!pressed);
}
})
}
);
});
Toggle.displayName = NAME4;
var Root6 = Toggle;
// ../../node_modules/.pnpm/@radix-ui+react-tooltip@1.2.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_61903d443f318e235810cb4023b9ffb4/node_modules/@radix-ui/react-tooltip/dist/index.mjs
var React46 = __toESM(require_react(), 1);
var import_jsx_runtime24 = __toESM(require_jsx_runtime(), 1);
var [createTooltipContext, createTooltipScope] = createContextScope2("Tooltip", [
createPopperScope
]);
var usePopperScope4 = createPopperScope();
var PROVIDER_NAME = "TooltipProvider";
var DEFAULT_DELAY_DURATION = 700;
var TOOLTIP_OPEN = "tooltip.open";
var [TooltipProviderContextProvider, useTooltipProviderContext] = createTooltipContext(PROVIDER_NAME);
var TooltipProvider = (props) => {
const {
__scopeTooltip,
delayDuration = DEFAULT_DELAY_DURATION,
skipDelayDuration = 300,
disableHoverableContent = false,
children
} = props;
const isOpenDelayedRef = React46.useRef(true);
const isPointerInTransitRef = React46.useRef(false);
const skipDelayTimerRef = React46.useRef(0);
React46.useEffect(() => {
const skipDelayTimer = skipDelayTimerRef.current;
return () => window.clearTimeout(skipDelayTimer);
}, []);
return (0, import_jsx_runtime24.jsx)(
TooltipProviderContextProvider,
{
scope: __scopeTooltip,
isOpenDelayedRef,
delayDuration,
onOpen: React46.useCallback(() => {
window.clearTimeout(skipDelayTimerRef.current);
isOpenDelayedRef.current = false;
}, []),
onClose: React46.useCallback(() => {
window.clearTimeout(skipDelayTimerRef.current);
skipDelayTimerRef.current = window.setTimeout(
() => isOpenDelayedRef.current = true,
skipDelayDuration
);
}, [skipDelayDuration]),
isPointerInTransitRef,
onPointerInTransitChange: React46.useCallback((inTransit) => {
isPointerInTransitRef.current = inTransit;
}, []),
disableHoverableContent,
children
}
);
};
TooltipProvider.displayName = PROVIDER_NAME;
var TOOLTIP_NAME = "Tooltip";
var [TooltipContextProvider, useTooltipContext] = createTooltipContext(TOOLTIP_NAME);
var Tooltip = (props) => {
const {
__scopeTooltip,
children,
open: openProp,
defaultOpen,
onOpenChange,
disableHoverableContent: disableHoverableContentProp,
delayDuration: delayDurationProp
} = props;
const providerContext = useTooltipProviderContext(TOOLTIP_NAME, props.__scopeTooltip);
const popperScope = usePopperScope4(__scopeTooltip);
const [trigger, setTrigger] = React46.useState(null);
const contentId = useId();
const openTimerRef = React46.useRef(0);
const disableHoverableContent = disableHoverableContentProp ?? providerContext.disableHoverableContent;
const delayDuration = delayDurationProp ?? providerContext.delayDuration;
const wasOpenDelayedRef = React46.useRef(false);
const [open, setOpen] = useControllableState({
prop: openProp,
defaultProp: defaultOpen ?? false,
onChange: (open2) => {
if (open2) {
providerContext.onOpen();
document.dispatchEvent(new CustomEvent(TOOLTIP_OPEN));
} else {
providerContext.onClose();
}
onOpenChange == null ? void 0 : onOpenChange(open2);
},
caller: TOOLTIP_NAME
});
const stateAttribute = React46.useMemo(() => {
return open ? wasOpenDelayedRef.current ? "delayed-open" : "instant-open" : "closed";
}, [open]);
const handleOpen = React46.useCallback(() => {
window.clearTimeout(openTimerRef.current);
openTimerRef.current = 0;
wasOpenDelayedRef.current = false;
setOpen(true);
}, [setOpen]);
const handleClose = React46.useCallback(() => {
window.clearTimeout(openTimerRef.current);
openTimerRef.current = 0;
setOpen(false);
}, [setOpen]);
const handleDelayedOpen = React46.useCallback(() => {
window.clearTimeout(openTimerRef.current);
openTimerRef.current = window.setTimeout(() => {
wasOpenDelayedRef.current = true;
setOpen(true);
openTimerRef.current = 0;
}, delayDuration);
}, [delayDuration, setOpen]);
React46.useEffect(() => {
return () => {
if (openTimerRef.current) {
window.clearTimeout(openTimerRef.current);
openTimerRef.current = 0;
}
};
}, []);
return (0, import_jsx_runtime24.jsx)(Root22, { ...popperScope, children: (0, import_jsx_runtime24.jsx)(
TooltipContextProvider,
{
scope: __scopeTooltip,
contentId,
open,
stateAttribute,
trigger,
onTriggerChange: setTrigger,
onTriggerEnter: React46.useCallback(() => {
if (providerContext.isOpenDelayedRef.current) handleDelayedOpen();
else handleOpen();
}, [providerContext.isOpenDelayedRef, handleDelayedOpen, handleOpen]),
onTriggerLeave: React46.useCallback(() => {
if (disableHoverableContent) {
handleClose();
} else {
window.clearTimeout(openTimerRef.current);
openTimerRef.current = 0;
}
}, [handleClose, disableHoverableContent]),
onOpen: handleOpen,
onClose: handleClose,
disableHoverableContent,
children
}
) });
};
Tooltip.displayName = TOOLTIP_NAME;
var TRIGGER_NAME5 = "TooltipTrigger";
var TooltipTrigger = React46.forwardRef(
(props, forwardedRef) => {
const { __scopeTooltip, ...triggerProps } = props;
const context = useTooltipContext(TRIGGER_NAME5, __scopeTooltip);
const providerContext = useTooltipProviderContext(TRIGGER_NAME5, __scopeTooltip);
const popperScope = usePopperScope4(__scopeTooltip);
const ref = React46.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref, context.onTriggerChange);
const isPointerDownRef = React46.useRef(false);
const hasPointerMoveOpenedRef = React46.useRef(false);
const handlePointerUp = React46.useCallback(() => isPointerDownRef.current = false, []);
React46.useEffect(() => {
return () => document.removeEventListener("pointerup", handlePointerUp);
}, [handlePointerUp]);
return (0, import_jsx_runtime24.jsx)(Anchor, { asChild: true, ...popperScope, children: (0, import_jsx_runtime24.jsx)(
Primitive2.button,
{
"aria-describedby": context.open ? context.contentId : void 0,
"data-state": context.stateAttribute,
...triggerProps,
ref: composedRefs,
onPointerMove: composeEventHandlers(props.onPointerMove, (event) => {
if (event.pointerType === "touch") return;
if (!hasPointerMoveOpenedRef.current && !providerContext.isPointerInTransitRef.current) {
context.onTriggerEnter();
hasPointerMoveOpenedRef.current = true;
}
}),
onPointerLeave: composeEventHandlers(props.onPointerLeave, () => {
context.onTriggerLeave();
hasPointerMoveOpenedRef.current = false;
}),
onPointerDown: composeEventHandlers(props.onPointerDown, () => {
if (context.open) {
context.onClose();
}
isPointerDownRef.current = true;
document.addEventListener("pointerup", handlePointerUp, { once: true });
}),
onFocus: composeEventHandlers(props.onFocus, () => {
if (!isPointerDownRef.current) context.onOpen();
}),
onBlur: composeEventHandlers(props.onBlur, context.onClose),
onClick: composeEventHandlers(props.onClick, context.onClose)
}
) });
}
);
TooltipTrigger.displayName = TRIGGER_NAME5;
var PORTAL_NAME6 = "TooltipPortal";
var [PortalProvider3, usePortalContext3] = createTooltipContext(PORTAL_NAME6, {
forceMount: void 0
});
var TooltipPortal = (props) => {
const { __scopeTooltip, forceMount, children, container } = props;
const context = useTooltipContext(PORTAL_NAME6, __scopeTooltip);
return (0, import_jsx_runtime24.jsx)(PortalProvider3, { scope: __scopeTooltip, forceMount, children: (0, import_jsx_runtime24.jsx)(Presence, { present: forceMount || context.open, children: (0, import_jsx_runtime24.jsx)(Portal, { asChild: true, container, children }) }) });
};
TooltipPortal.displayName = PORTAL_NAME6;
var CONTENT_NAME7 = "TooltipContent";
var TooltipContent = React46.forwardRef(
(props, forwardedRef) => {
const portalContext = usePortalContext3(CONTENT_NAME7, props.__scopeTooltip);
const { forceMount = portalContext.forceMount, side = "top", ...contentProps } = props;
const context = useTooltipContext(CONTENT_NAME7, props.__scopeTooltip);
return (0, import_jsx_runtime24.jsx)(Presence, { present: forceMount || context.open, children: context.disableHoverableContent ? (0, import_jsx_runtime24.jsx)(TooltipContentImpl, { side, ...contentProps, ref: forwardedRef }) : (0, import_jsx_runtime24.jsx)(TooltipContentHoverable, { side, ...contentProps, ref: forwardedRef }) });
}
);
var TooltipContentHoverable = React46.forwardRef((props, forwardedRef) => {
const context = useTooltipContext(CONTENT_NAME7, props.__scopeTooltip);
const providerContext = useTooltipProviderContext(CONTENT_NAME7, props.__scopeTooltip);
const ref = React46.useRef(null);
const composedRefs = useComposedRefs(forwardedRef, ref);
const [pointerGraceArea, setPointerGraceArea] = React46.useState(null);
const { trigger, onClose } = context;
const content = ref.current;
const { onPointerInTransitChange } = providerContext;
const handleRemoveGraceArea = React46.useCallback(() => {
setPointerGraceArea(null);
onPointerInTransitChange(false);
}, [onPointerInTransitChange]);
const handleCreateGraceArea = React46.useCallback(
(event, hoverTarget) => {
const currentTarget = event.currentTarget;
const exitPoint = { x: event.clientX, y: event.clientY };
const exitSide = getExitSideFromRect(exitPoint, currentTarget.getBoundingClientRect());
const paddedExitPoints = getPaddedExitPoints(exitPoint, exitSide);
const hoverTargetPoints = getPointsFromRect(hoverTarget.getBoundingClientRect());
const graceArea = getHull([...paddedExitPoints, ...hoverTargetPoints]);
setPointerGraceArea(graceArea);
onPointerInTransitChange(true);
},
[onPointerInTransitChange]
);
React46.useEffect(() => {
return () => handleRemoveGraceArea();
}, [handleRemoveGraceArea]);
React46.useEffect(() => {
if (trigger && content) {
const handleTriggerLeave = (event) => handleCreateGraceArea(event, content);
const handleContentLeave = (event) => handleCreateGraceArea(event, trigger);
trigger.addEventListener("pointerleave", handleTriggerLeave);
content.addEventListener("pointerleave", handleContentLeave);
return () => {
trigger.removeEventListener("pointerleave", handleTriggerLeave);
content.removeEventListener("pointerleave", handleContentLeave);
};
}
}, [trigger, content, handleCreateGraceArea, handleRemoveGraceArea]);
React46.useEffect(() => {
if (pointerGraceArea) {
const handleTrackPointerGrace = (event) => {
const target = event.target;
const pointerPosition = { x: event.clientX, y: event.clientY };
const hasEnteredTarget = (trigger == null ? void 0 : trigger.contains(target)) || (content == null ? void 0 : content.contains(target));
const isPointerOutsideGraceArea = !isPointInPolygon2(pointerPosition, pointerGraceArea);
if (hasEnteredTarget) {
handleRemoveGraceArea();
} else if (isPointerOutsideGraceArea) {
handleRemoveGraceArea();
onClose();
}
};
document.addEventListener("pointermove", handleTrackPointerGrace);
return () => document.removeEventListener("pointermove", handleTrackPointerGrace);
}
}, [trigger, content, pointerGraceArea, onClose, handleRemoveGraceArea]);
return (0, import_jsx_runtime24.jsx)(TooltipContentImpl, { ...props, ref: composedRefs });
});
var [VisuallyHiddenContentContextProvider, useVisuallyHiddenContentContext] = createTooltipContext(TOOLTIP_NAME, { isInside: false });
var Slottable2 = createSlottable("TooltipContent");
var TooltipContentImpl = React46.forwardRef(
(props, forwardedRef) => {
const {
__scopeTooltip,
children,
"aria-label": ariaLabel,
onEscapeKeyDown,
onPointerDownOutside,
...contentProps
} = props;
const context = useTooltipContext(CONTENT_NAME7, __scopeTooltip);
const popperScope = usePopperScope4(__scopeTooltip);
const { onClose } = context;
React46.useEffect(() => {
document.addEventListener(TOOLTIP_OPEN, onClose);
return () => document.removeEventListener(TOOLTIP_OPEN, onClose);
}, [onClose]);
React46.useEffect(() => {
if (context.trigger) {
const handleScroll2 = (event) => {
const target = event.target;
if (target == null ? void 0 : target.contains(context.trigger)) onClose();
};
window.addEventListener("scroll", handleScroll2, { capture: true });
return () => window.removeEventListener("scroll", handleScroll2, { capture: true });
}
}, [context.trigger, onClose]);
return (0, import_jsx_runtime24.jsx)(
DismissableLayer,
{
asChild: true,
disableOutsidePointerEvents: false,
onEscapeKeyDown,
onPointerDownOutside,
onFocusOutside: (event) => event.preventDefault(),
onDismiss: onClose,
children: (0, import_jsx_runtime24.jsxs)(
Content,
{
"data-state": context.stateAttribute,
...popperScope,
...contentProps,
ref: forwardedRef,
style: {
...contentProps.style,
// re-namespace exposed content custom properties
...{
"--radix-tooltip-content-transform-origin": "var(--radix-popper-transform-origin)",
"--radix-tooltip-content-available-width": "var(--radix-popper-available-width)",
"--radix-tooltip-content-available-height": "var(--radix-popper-available-height)",
"--radix-tooltip-trigger-width": "var(--radix-popper-anchor-width)",
"--radix-tooltip-trigger-height": "var(--radix-popper-anchor-height)"
}
},
children: [
(0, import_jsx_runtime24.jsx)(Slottable2, { children }),
(0, import_jsx_runtime24.jsx)(VisuallyHiddenContentContextProvider, { scope: __scopeTooltip, isInside: true, children: (0, import_jsx_runtime24.jsx)(Root5, { id: context.contentId, role: "tooltip", children: ariaLabel || children }) })
]
}
)
}
);
}
);
TooltipContent.displayName = CONTENT_NAME7;
var ARROW_NAME6 = "TooltipArrow";
var TooltipArrow = React46.forwardRef(
(props, forwardedRef) => {
const { __scopeTooltip, ...arrowProps } = props;
const popperScope = usePopperScope4(__scopeTooltip);
const visuallyHiddenContentContext = useVisuallyHiddenContentContext(
ARROW_NAME6,
__scopeTooltip
);
return visuallyHiddenContentContext.isInside ? null : (0, import_jsx_runtime24.jsx)(Arrow2, { ...popperScope, ...arrowProps, ref: forwardedRef });
}
);
TooltipArrow.displayName = ARROW_NAME6;
function getExitSideFromRect(point, rect) {
const top = Math.abs(rect.top - point.y);
const bottom = Math.abs(rect.bottom - point.y);
const right = Math.abs(rect.right - point.x);
const left = Math.abs(rect.left - point.x);
switch (Math.min(top, bottom, right, left)) {
case left:
return "left";
case right:
return "right";
case top:
return "top";
case bottom:
return "bottom";
default:
throw new Error("unreachable");
}
}
function getPaddedExitPoints(exitPoint, exitSide, padding = 5) {
const paddedExitPoints = [];
switch (exitSide) {
case "top":
paddedExitPoints.push(
{ x: exitPoint.x - padding, y: exitPoint.y + padding },
{ x: exitPoint.x + padding, y: exitPoint.y + padding }
);
break;
case "bottom":
paddedExitPoints.push(
{ x: exitPoint.x - padding, y: exitPoint.y - padding },
{ x: exitPoint.x + padding, y: exitPoint.y - padding }
);
break;
case "left":
paddedExitPoints.push(
{ x: exitPoint.x + padding, y: exitPoint.y - padding },
{ x: exitPoint.x + padding, y: exitPoint.y + padding }
);
break;
case "right":
paddedExitPoints.push(
{ x: exitPoint.x - padding, y: exitPoint.y - padding },
{ x: exitPoint.x - padding, y: exitPoint.y + padding }
);
break;
}
return paddedExitPoints;
}
function getPointsFromRect(rect) {
const { top, right, bottom, left } = rect;
return [
{ x: left, y: top },
{ x: right, y: top },
{ x: right, y: bottom },
{ x: left, y: bottom }
];
}
function isPointInPolygon2(point, polygon) {
const { x, y } = point;
let inside = false;
for (let i = 0, j = polygon.length - 1; i < polygon.length; j = i++) {
const ii = polygon[i];
const jj = polygon[j];
const xi = ii.x;
const yi = ii.y;
const xj = jj.x;
const yj = jj.y;
const intersect = yi > y !== yj > y && x < (xj - xi) * (y - yi) / (yj - yi) + xi;
if (intersect) inside = !inside;
}
return inside;
}
function getHull(points) {
const newPoints = points.slice();
newPoints.sort((a, b) => {
if (a.x < b.x) return -1;
else if (a.x > b.x) return 1;
else if (a.y < b.y) return -1;
else if (a.y > b.y) return 1;
else return 0;
});
return getHullPresorted(newPoints);
}
function getHullPresorted(points) {
if (points.length <= 1) return points.slice();
const upperHull = [];
for (let i = 0; i < points.length; i++) {
const p2 = points[i];
while (upperHull.length >= 2) {
const q2 = upperHull[upperHull.length - 1];
const r = upperHull[upperHull.length - 2];
if ((q2.x - r.x) * (p2.y - r.y) >= (q2.y - r.y) * (p2.x - r.x)) upperHull.pop();
else break;
}
upperHull.push(p2);
}
upperHull.pop();
const lowerHull = [];
for (let i = points.length - 1; i >= 0; i--) {
const p2 = points[i];
while (lowerHull.length >= 2) {
const q2 = lowerHull[lowerHull.length - 1];
const r = lowerHull[lowerHull.length - 2];
if ((q2.x - r.x) * (p2.y - r.y) >= (q2.y - r.y) * (p2.x - r.x)) lowerHull.pop();
else break;
}
lowerHull.push(p2);
}
lowerHull.pop();
if (upperHull.length === 1 && lowerHull.length === 1 && upperHull[0].x === lowerHull[0].x && upperHull[0].y === lowerHull[0].y) {
return upperHull;
} else {
return upperHull.concat(lowerHull);
}
}
var Provider = TooltipProvider;
var Root33 = Tooltip;
var Trigger5 = TooltipTrigger;
var Content25 = TooltipContent;
var Arrow23 = TooltipArrow;
// ../../node_modules/.pnpm/@blocknote+shadcn@0.45.0_@floating-ui+dom@1.7.4_@tiptap+extensions@3.14.0_@tiptap+core@_ffb4794918886c8a19c364f2fbd1458d/node_modules/@blocknote/shadcn/dist/blocknote-shadcn.js
function d(...e) {
return twMerge(clsx(e));
}
function pe({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
Root,
{
"data-slot": "avatar",
className: d(
"relative flex size-8 shrink-0 overflow-hidden rounded-full",
e
),
...t
}
);
}
function ge({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
Image,
{
"data-slot": "avatar-image",
className: d("aspect-square size-full", e),
...t
}
);
}
function ve({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
Fallback,
{
"data-slot": "avatar-fallback",
className: d(
"bg-muted flex size-full items-center justify-center rounded-full",
e
),
...t
}
);
}
var fe = cva(
"inline-flex items-center justify-center rounded-md border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden",
{
variants: {
variant: {
default: "border-transparent bg-primary text-primary-foreground [a&]:hover:bg-primary/90",
secondary: "border-transparent bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90",
destructive: "border-transparent bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
outline: "text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground"
}
},
defaultVariants: {
variant: "default"
}
}
);
function be({
className: e,
variant: t,
asChild: n = false,
...a
}) {
return (0, import_jsx_runtime25.jsx)(
n ? Slot : "span",
{
"data-slot": "badge",
className: d(fe({ variant: t }), e),
...a
}
);
}
var he = cva(
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*=size-])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
{
variants: {
variant: {
default: "bg-primary text-primary-foreground shadow-xs hover:bg-primary/90",
destructive: "bg-destructive text-white shadow-xs hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
outline: "border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",
secondary: "bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80",
ghost: "hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",
link: "text-primary underline-offset-4 hover:underline"
},
size: {
default: "h-9 px-4 py-2 has-[>svg]:px-3",
sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",
lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
icon: "size-9"
}
},
defaultVariants: {
variant: "default",
size: "default"
}
}
);
function xe({
className: e,
variant: t,
size: n,
asChild: a = false,
...r
}) {
return (0, import_jsx_runtime25.jsx)(
a ? Slot : "button",
{
"data-slot": "button",
className: d(he({ variant: t, size: n, className: e })),
...r
}
);
}
function we({ className: e, ...t }) {
return (0, import_jsx_runtime25.jsx)(
"div",
{
"data-slot": "card",
className: d(
"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm",
e
),
...t
}
);
}
function Ce({ className: e, ...t }) {
return (0, import_jsx_runtime25.jsx)(
"div",
{
"data-slot": "card-content",
className: d("px-6", e),
...t
}
);
}
function Ne({
...e
}) {
return (0, import_jsx_runtime25.jsx)(Root23, { "data-slot": "dropdown-menu", ...e });
}
function Te({
...e
}) {
return (0, import_jsx_runtime25.jsx)(
Trigger,
{
"data-slot": "dropdown-menu-trigger",
...e
}
);
}
function Se({
className: e,
sideOffset: t = 4,
...n
}) {
return (0, import_jsx_runtime25.jsx)(
Content22,
{
"data-slot": "dropdown-menu-content",
sideOffset: t,
className: d(
"bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 max-h-(--radix-dropdown-menu-content-available-height) origin-(--radix-dropdown-menu-content-transform-origin) z-50 min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border p-1 shadow-md",
e
),
...n
}
);
}
function ye({
className: e,
inset: t,
variant: n = "default",
...a
}) {
return (0, import_jsx_runtime25.jsx)(
Item22,
{
"data-slot": "dropdown-menu-item",
"data-inset": t,
"data-variant": n,
className: d(
"focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:!text-destructive [&_svg:not([class*=text-])]:text-muted-foreground outline-hidden relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm data-[disabled]:pointer-events-none data-[inset]:pl-8 data-[disabled]:opacity-50 [&_svg:not([class*=size-])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
e
),
...a
}
);
}
function ke({
className: e,
children: t,
checked: n,
...a
}) {
return (0, import_jsx_runtime25.jsxs)(
CheckboxItem2,
{
"data-slot": "dropdown-menu-checkbox-item",
className: d(
"focus:bg-accent focus:text-accent-foreground outline-hidden relative flex cursor-default select-none items-center gap-2 rounded-sm py-1.5 pl-8 pr-2 text-sm data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg:not([class*=size-])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
e
),
checked: n,
...a,
children: [
(0, import_jsx_runtime25.jsx)("span", { className: "pointer-events-none absolute left-2 flex size-3.5 items-center justify-center", children: (0, import_jsx_runtime25.jsx)(ItemIndicator2, { children: (0, import_jsx_runtime25.jsx)(Check, { className: "size-4" }) }) }),
t
]
}
);
}
function Me({
className: e,
inset: t,
...n
}) {
return (0, import_jsx_runtime25.jsx)(
Label2,
{
"data-slot": "dropdown-menu-label",
"data-inset": t,
className: d(
"px-2 py-1.5 text-sm font-medium data-[inset]:pl-8",
e
),
...n
}
);
}
function ze({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
Separator2,
{
"data-slot": "dropdown-menu-separator",
className: d("bg-border -mx-1 my-1 h-px", e),
...t
}
);
}
function De({
...e
}) {
return (0, import_jsx_runtime25.jsx)(Sub2, { "data-slot": "dropdown-menu-sub", ...e });
}
function Ie({
className: e,
inset: t,
children: n,
...a
}) {
return (0, import_jsx_runtime25.jsxs)(
SubTrigger2,
{
"data-slot": "dropdown-menu-sub-trigger",
"data-inset": t,
className: d(
"focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground outline-hidden flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm data-[inset]:pl-8",
e
),
...a,
children: [
n,
(0, import_jsx_runtime25.jsx)(ChevronRight, { className: "ml-auto size-4" })
]
}
);
}
function Be({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
SubContent2,
{
"data-slot": "dropdown-menu-sub-content",
className: d(
"bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-(--radix-dropdown-menu-content-transform-origin) z-50 min-w-[8rem] overflow-hidden rounded-md border p-1 shadow-lg",
e
),
...t
}
);
}
function Pe({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
Root4,
{
"data-slot": "label",
className: d(
"flex select-none items-center gap-2 text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-50 group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50",
e
),
...t
}
);
}
var _e = FormProvider;
F.createContext(
{}
);
F.createContext(
{}
);
function Re({ className: e, type: t, ...n }) {
return (0, import_jsx_runtime25.jsx)(
"input",
{
type: t,
"data-slot": "input",
className: d(
"file:text-foreground placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 border-input shadow-xs flex h-9 w-full min-w-0 rounded-md border bg-transparent px-3 py-1 text-base outline-none transition-[color,box-shadow] file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
"focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px]",
"aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
e
),
...n
}
);
}
function Fe({
...e
}) {
return (0, import_jsx_runtime25.jsx)(Root24, { "data-slot": "popover", ...e });
}
function Le({
...e
}) {
return (0, import_jsx_runtime25.jsx)(Trigger2, { "data-slot": "popover-trigger", ...e });
}
function Ee({
className: e,
align: t = "center",
sideOffset: n = 4,
...a
}) {
return (0, import_jsx_runtime25.jsx)(
Content23,
{
"data-slot": "popover-content",
align: t,
sideOffset: n,
className: d(
"bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-(--radix-popover-content-transform-origin) outline-hidden z-50 w-72 rounded-md border p-4 shadow-md",
e
),
...a
}
);
}
function Ve({
...e
}) {
return (0, import_jsx_runtime25.jsx)(Root25, { "data-slot": "select", ...e });
}
function Ae({
...e
}) {
return (0, import_jsx_runtime25.jsx)(Value, { "data-slot": "select-value", ...e });
}
function je({
className: e,
size: t = "default",
children: n,
...a
}) {
return (0, import_jsx_runtime25.jsxs)(
Trigger3,
{
"data-slot": "select-trigger",
"data-size": t,
className: d(
"border-input data-[placeholder]:text-muted-foreground [&_svg:not([class*=text-])]:text-muted-foreground focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:bg-input/30 dark:hover:bg-input/50 shadow-xs flex w-fit items-center justify-between gap-2 whitespace-nowrap rounded-md border bg-transparent px-3 py-2 text-sm outline-none transition-[color,box-shadow] focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50 data-[size=default]:h-9 data-[size=sm]:h-8 *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-2 [&_svg:not([class*=size-])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
e
),
...a,
children: [
n,
(0, import_jsx_runtime25.jsx)(Icon2, { asChild: true, children: (0, import_jsx_runtime25.jsx)(ChevronDown, { className: "size-4 opacity-50" }) })
]
}
);
}
function qe({
className: e,
children: t,
position: n = "popper",
...a
}) {
return (0, import_jsx_runtime25.jsxs)(
Content24,
{
"data-slot": "select-content",
className: d(
"bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 max-h-(--radix-select-content-available-height) origin-(--radix-select-content-transform-origin) relative z-50 min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border shadow-md",
n === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
e
),
position: n,
...a,
children: [
(0, import_jsx_runtime25.jsx)(Ge, {}),
(0, import_jsx_runtime25.jsx)(
Viewport,
{
className: d(
"p-1",
n === "popper" && "h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)] scroll-my-1"
),
children: t
}
),
(0, import_jsx_runtime25.jsx)(Oe, {})
]
}
);
}
function $e({
className: e,
children: t,
...n
}) {
return (0, import_jsx_runtime25.jsxs)(
Item3,
{
"data-slot": "select-item",
className: d(
"focus:bg-accent focus:text-accent-foreground [&_svg:not([class*=text-])]:text-muted-foreground outline-hidden *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2 relative flex w-full cursor-default select-none items-center gap-2 rounded-sm py-1.5 pl-2 pr-8 text-sm data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg:not([class*=size-])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
e
),
...n,
children: [
(0, import_jsx_runtime25.jsx)("span", { className: "absolute right-2 flex size-3.5 items-center justify-center", children: (0, import_jsx_runtime25.jsx)(ItemIndicator3, { children: (0, import_jsx_runtime25.jsx)(Check, { className: "size-4" }) }) }),
(0, import_jsx_runtime25.jsx)(ItemText, { children: t })
]
}
);
}
function Ge({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
ScrollUpButton,
{
"data-slot": "select-scroll-up-button",
className: d(
"flex cursor-default items-center justify-center py-1",
e
),
...t,
children: (0, import_jsx_runtime25.jsx)(ChevronUp, { className: "size-4" })
}
);
}
function Oe({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
ScrollDownButton,
{
"data-slot": "select-scroll-down-button",
className: d(
"flex cursor-default items-center justify-center py-1",
e
),
...t,
children: (0, import_jsx_runtime25.jsx)(ChevronDown, { className: "size-4" })
}
);
}
function Ue({ className: e, ...t }) {
return (0, import_jsx_runtime25.jsx)(
"div",
{
"data-slot": "skeleton",
className: d("bg-accent animate-pulse rounded-md", e),
...t
}
);
}
function He({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
Root26,
{
"data-slot": "tabs",
className: d("flex flex-col gap-2", e),
...t
}
);
}
function Ke({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
List2,
{
"data-slot": "tabs-list",
className: d(
"bg-muted text-muted-foreground inline-flex h-9 w-fit items-center justify-center rounded-lg p-[3px]",
e
),
...t
}
);
}
function Qe({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
Trigger4,
{
"data-slot": "tabs-trigger",
className: d(
"data-[state=active]:bg-background dark:data-[state=active]:text-foreground focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:outline-ring dark:data-[state=active]:border-input dark:data-[state=active]:bg-input/30 text-foreground dark:text-muted-foreground inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 whitespace-nowrap rounded-md border border-transparent px-2 py-1 text-sm font-medium transition-[color,box-shadow] focus-visible:outline-1 focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 data-[state=active]:shadow-sm [&_svg:not([class*=size-])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
e
),
...t
}
);
}
function We({
className: e,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
Content3,
{
"data-slot": "tabs-content",
className: d("flex-1 outline-none", e),
...t
}
);
}
var Ze = cva(
"inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium hover:bg-muted hover:text-muted-foreground disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg:not([class*=size-])]:size-4 [&_svg]:shrink-0 focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] outline-none transition-[color,box-shadow] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive whitespace-nowrap",
{
variants: {
variant: {
default: "bg-transparent",
outline: "border border-input bg-transparent shadow-xs hover:bg-accent hover:text-accent-foreground"
},
size: {
default: "h-9 px-2 min-w-9",
sm: "h-8 px-1.5 min-w-8",
lg: "h-10 px-2.5 min-w-10"
}
},
defaultVariants: {
variant: "default",
size: "default"
}
}
);
function Je({
className: e,
variant: t,
size: n,
...a
}) {
return (0, import_jsx_runtime25.jsx)(
Root6,
{
"data-slot": "toggle",
className: d(Ze({ variant: t, size: n, className: e })),
...a
}
);
}
function $({
delayDuration: e = 0,
...t
}) {
return (0, import_jsx_runtime25.jsx)(
Provider,
{
"data-slot": "tooltip-provider",
delayDuration: e,
...t
}
);
}
function Xe({
...e
}) {
return (0, import_jsx_runtime25.jsx)($, { children: (0, import_jsx_runtime25.jsx)(Root33, { "data-slot": "tooltip", ...e }) });
}
function Ye({
...e
}) {
return (0, import_jsx_runtime25.jsx)(Trigger5, { "data-slot": "tooltip-trigger", ...e });
}
function et({
className: e,
sideOffset: t = 0,
children: n,
...a
}) {
return (0, import_jsx_runtime25.jsxs)(
Content25,
{
"data-slot": "tooltip-content",
sideOffset: t,
className: d(
"bg-primary text-primary-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-(--radix-tooltip-content-transform-origin) z-50 w-fit text-balance rounded-md px-3 py-1.5 text-xs",
e
),
...a,
children: [
n,
(0, import_jsx_runtime25.jsx)(Arrow23, { className: "bg-primary fill-primary z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px]" })
]
}
);
}
var tt = {
Avatar: {
Avatar: pe,
AvatarFallback: ve,
AvatarImage: ge
},
Badge: {
Badge: be
},
Button: {
Button: xe
},
Card: {
Card: we,
CardContent: Ce
},
DropdownMenu: {
DropdownMenu: Ne,
DropdownMenuCheckboxItem: ke,
DropdownMenuContent: Se,
DropdownMenuItem: ye,
DropdownMenuLabel: Me,
DropdownMenuSeparator: ze,
DropdownMenuSub: De,
DropdownMenuSubContent: Be,
DropdownMenuSubTrigger: Ie,
DropdownMenuTrigger: Te
},
Form: {
Form: _e
},
Input: {
Input: Re
},
Label: {
Label: Pe
},
Popover: {
Popover: Fe,
PopoverContent: Ee,
PopoverTrigger: Le
},
Select: {
Select: Ve,
SelectContent: qe,
SelectItem: $e,
SelectTrigger: je,
SelectValue: Ae
},
Skeleton: {
Skeleton: Ue
},
Tabs: {
Tabs: He,
TabsContent: We,
TabsList: Ke,
TabsTrigger: Qe
},
Toggle: {
Toggle: Je
},
Tooltip: {
Tooltip: Xe,
TooltipContent: et,
TooltipProvider: $,
TooltipTrigger: Ye
}
};
var G = (0, import_react10.createContext)(void 0);
function f() {
return (0, import_react10.useContext)(G);
}
var nt = (e) => {
const { children: t, ...n } = e;
At(n);
const a = f(), r = useForm();
return (0, import_jsx_runtime25.jsx)(a.Form.Form, { ...r, children: t });
};
var ot = (0, import_react10.forwardRef)((e, t) => {
const {
className: n,
name: a,
label: r,
variant: s,
icon: i,
// TODO: implement
value: c,
autoFocus: u,
placeholder: l,
disabled: g,
onKeyDown: b,
onChange: h,
onSubmit: C,
autoComplete: T,
rightSection: y,
// TODO: add rightSection
...O
} = e;
At(O);
const P = f();
return (0, import_jsx_runtime25.jsxs)(
"div",
{
className: d(
n,
"border-input bg-background ring-offset-background placeholder:text-muted-foreground focus-visible:ring-ring flex h-10 w-full rounded-md border px-3 py-2 text-sm file:border-0 file:bg-transparent file:text-sm file:font-medium focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
"text-foreground items-center gap-2"
),
children: [
i,
(0, import_jsx_runtime25.jsxs)("div", { className: "flex-1", children: [
r && (0, import_jsx_runtime25.jsx)(P.Label.Label, { htmlFor: r, children: r }),
(0, import_jsx_runtime25.jsx)(
P.Input.Input,
{
className: d(n, "h-auto border-none p-0"),
id: r,
name: a,
autoFocus: u,
placeholder: l,
disabled: g,
value: c,
onKeyDown: b,
onChange: h,
onSubmit: C,
ref: t
}
)
] }),
y
]
}
);
});
var at = (e) => (0, import_react10.forwardRef)(
(t, n) => (0, import_jsx_runtime25.jsx)(
e,
{
onPointerDown: (a) => {
a.nativeEvent.fakeEvent || (a.ctrlKey = true);
},
onPointerUp: (a) => {
const r = new PointerEvent("pointerdown", a.nativeEvent);
r.fakeEvent = true, a.target.dispatchEvent(r);
},
...t,
ref: n
}
)
);
var rt = (e) => {
const {
children: t,
onOpenChange: n,
position: a,
// Unused
sub: r,
...s
} = e;
At(s);
const i = f();
return r ? (0, import_jsx_runtime25.jsx)(
i.DropdownMenu.DropdownMenuSub,
{
onOpenChange: n,
children: t
}
) : (0, import_jsx_runtime25.jsx)(
i.DropdownMenu.DropdownMenu,
{
modal: false,
onOpenChange: n,
children: t
}
);
};
var st = (e) => {
const { children: t, sub: n, ...a } = e;
At(a);
const r = f(), s = (0, import_react10.useMemo)(
() => at(
r.DropdownMenu.DropdownMenuTrigger
),
[r.DropdownMenu.DropdownMenuTrigger]
);
return n ? (0, import_jsx_runtime25.jsx)(r.DropdownMenu.DropdownMenuSubTrigger, { children: t }) : (0, import_jsx_runtime25.jsx)(s, { asChild: true, ...a, children: t });
};
var it = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, sub: r, ...s } = e;
At(s);
const i = f();
return r ? (0, import_jsx_runtime25.jsx)(
i.DropdownMenu.DropdownMenuSubContent,
{
className: n,
ref: t,
children: a
}
) : (0, import_jsx_runtime25.jsx)(
i.DropdownMenu.DropdownMenuContent,
{
className: n,
ref: t,
children: a
}
);
});
var dt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, icon: r, checked: s, subTrigger: i, onClick: c, ...u } = e;
At(u);
const l = f();
return i ? (0, import_jsx_runtime25.jsxs)(import_jsx_runtime25.Fragment, { children: [
r,
a
] }) : s !== void 0 ? (0, import_jsx_runtime25.jsxs)(
l.DropdownMenu.DropdownMenuCheckboxItem,
{
className: d(n, "gap-1", s ? "" : "px-2"),
ref: t,
checked: s,
onClick: c,
...u,
children: [
r,
a
]
}
) : (0, import_jsx_runtime25.jsxs)(
l.DropdownMenu.DropdownMenuItem,
{
className: n,
ref: t,
onClick: c,
...u,
children: [
r,
a,
i && (0, import_jsx_runtime25.jsx)(ChevronRight, { className: "ml-auto h-4 w-4" })
]
}
);
});
var lt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, ...a } = e;
At(a);
const r = f();
return (0, import_jsx_runtime25.jsx)(
r.DropdownMenu.DropdownMenuSeparator,
{
className: n,
ref: t
}
);
});
var ct = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, ...r } = e;
At(r);
const s = f();
return (0, import_jsx_runtime25.jsx)(
s.DropdownMenu.DropdownMenuLabel,
{
className: n,
ref: t,
children: a
}
);
});
var ut = (0, import_react10.forwardRef)((e, t) => {
const {
className: n,
children: a,
icon: r,
onClick: s,
onDragEnd: i,
onDragStart: c,
draggable: u,
label: l,
...g
} = e;
At(g, false);
const b = f();
return (0, import_jsx_runtime25.jsxs)(
b.Button.Button,
{
variant: "ghost",
className: d(n, "text-gray-400"),
ref: t,
"aria-label": l,
onClick: s,
onDragStart: c,
onDragEnd: i,
draggable: u,
...g,
children: [
r,
a
]
}
);
});
var mt = (0, import_react10.forwardRef)((e, t) => {
const {
className: n,
tabs: a,
defaultOpenTab: r,
openTab: s,
setOpenTab: i,
loading: c,
// TODO: implement loader
...u
} = e;
At(u);
const l = f();
return (0, import_jsx_runtime25.jsxs)(
l.Tabs.Tabs,
{
className: d(n, "bg-popover max-w-screen rounded-lg p-2"),
ref: t,
value: s,
defaultValue: r,
onValueChange: i,
children: [
(0, import_jsx_runtime25.jsx)(l.Tabs.TabsList, { children: a.map((g) => (0, import_jsx_runtime25.jsx)(l.Tabs.TabsTrigger, { value: g.name, children: g.name }, g.name)) }),
a.map((g) => (0, import_jsx_runtime25.jsx)(l.Tabs.TabsContent, { value: g.name, children: (0, import_jsx_runtime25.jsx)(l.Card.Card, { children: (0, import_jsx_runtime25.jsx)(l.Card.CardContent, { className: "p-4", children: g.tabPanel }) }) }, g.name))
]
}
);
});
var pt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, ...r } = e;
return At(r), (0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
n,
"flex flex-col items-start justify-center gap-2"
),
ref: t,
children: a
}
);
});
var gt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, value: a, placeholder: r, onKeyDown: s, onChange: i, ...c } = e;
At(c);
const u = f();
return (0, import_jsx_runtime25.jsx)(
u.Input.Input,
{
"data-test": "embed-input",
className: d(n, "w-80 max-w-full"),
ref: t,
value: a,
placeholder: r,
onKeyDown: s,
onChange: i
}
);
});
var vt = (e) => {
const {
children: t,
open: n,
onOpenChange: a,
position: r,
// unused
...s
} = e;
At(s);
const i = f();
return (0, import_jsx_runtime25.jsx)(i.Popover.Popover, { open: n, onOpenChange: a, children: t });
};
var ft = (0, import_react10.forwardRef)(
(e, t) => {
const { children: n, ...a } = e;
At(a);
const r = f();
return (0, import_jsx_runtime25.jsx)(r.Popover.PopoverTrigger, { ref: t, asChild: true, children: n });
}
);
var bt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, variant: a, children: r, ...s } = e;
At(s);
const i = f();
return (0, import_jsx_runtime25.jsx)(
i.Popover.PopoverContent,
{
sideOffset: 8,
className: d(
n,
"z-[10000] flex flex-col gap-2",
a === "panel-popover" ? "w-fit max-w-none border-none p-0 shadow-none" : ""
),
ref: t,
children: r
}
);
});
var ht = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, ...r } = e;
return At(r, false), (0, import_jsx_runtime25.jsx)("div", { className: n, ref: t, ...r, children: a });
});
var xt = (0, import_react10.forwardRef)((e, t) => {
const {
className: n,
children: a,
icon: r,
onClick: s,
onDragEnd: i,
onDragStart: c,
draggable: u,
label: l,
...g
} = e;
At(g, false);
const b = f();
return (0, import_jsx_runtime25.jsxs)(
b.Button.Button,
{
variant: "ghost",
className: d(n, "text-gray-400"),
ref: t,
"aria-label": l,
onClick: s,
onDragStart: c,
onDragEnd: i,
draggable: u,
...g,
children: [
r,
a
]
}
);
});
var wt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, id: r, columns: s, ...i } = e;
return At(i), (0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
"bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 max-h-(--radix-dropdown-menu-content-available-height) origin-(--radix-dropdown-menu-content-transform-origin) z-50 min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border p-1 shadow-md",
"grid",
n
),
style: { gridTemplateColumns: `repeat(${s}, 1fr)` },
ref: t,
id: r,
role: "grid",
children: a
}
);
});
var Ct = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, columns: r, ...s } = e;
return At(s), (0, import_jsx_runtime25.jsx)(
"div",
{
className: n,
style: { gridColumn: `1 / ${r + 1}` },
ref: t,
children: a
}
);
});
var Nt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, id: r, ...s } = e;
return At(s), (0, import_jsx_runtime25.jsx)(
"div",
{
id: r,
role: "listbox",
className: d(
"bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 max-h-(--radix-dropdown-menu-content-available-height) origin-(--radix-dropdown-menu-content-transform-origin) z-50 min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border p-1 shadow-md",
n
),
ref: t,
children: a
}
);
});
var Tt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, ...r } = e;
return At(r), (0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
"focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:!text-destructive [&_svg:not([class*=text-])]:text-muted-foreground outline-hidden relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm data-[disabled]:pointer-events-none data-[inset]:pl-8 data-[disabled]:opacity-50 [&_svg:not([class*=size-])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
"hover:bg-accent hover:text-accent-foreground data-[variant=destructive]:hover:bg-destructive/10 dark:data-[variant=destructive]:hover:bg-destructive/20 data-[variant=destructive]:hover:text-destructive",
"aria-selected:bg-accent aria-selected:text-accent-foreground data-[variant=destructive]:aria-selected:bg-destructive/10 dark:data-[variant=destructive]:aria-selected:bg-destructive/20 data-[variant=destructive]:aria-selected:text-destructive",
n
),
ref: t,
children: (0, import_jsx_runtime25.jsx)("div", { children: a })
}
);
});
var St = (0, import_react10.forwardRef)((e, t) => {
const n = f(), { className: a, item: r, isSelected: s, onClick: i, id: c, ...u } = e;
At(u);
const l = (0, import_react10.useRef)(null);
return (0, import_react10.useEffect)(() => {
if (!l.current || !s)
return;
const g = Ul(
l.current,
l.current.closest(".bn-suggestion-menu, #ai-suggestion-menu")
);
g === "top" ? l.current.scrollIntoView(true) : g === "bottom" && l.current.scrollIntoView(false);
}, [s]), (0, import_jsx_runtime25.jsxs)(
"div",
{
className: d(
"focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:!text-destructive [&_svg:not([class*=text-])]:text-muted-foreground outline-hidden relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm data-[disabled]:pointer-events-none data-[inset]:pl-8 data-[disabled]:opacity-50 [&_svg:not([class*=size-])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
"hover:bg-accent hover:text-accent-foreground data-[variant=destructive]:hover:bg-destructive/10 dark:data-[variant=destructive]:hover:bg-destructive/20 data-[variant=destructive]:hover:text-destructive",
"aria-selected:bg-accent aria-selected:text-accent-foreground data-[variant=destructive]:aria-selected:bg-destructive/10 dark:data-[variant=destructive]:aria-selected:bg-destructive/20 data-[variant=destructive]:aria-selected:text-destructive",
e.item.size === "small" ? "gap-3 py-1" : "",
a
),
"data-highlighted": true,
ref: jl([t, l]),
id: c,
onMouseDown: (g) => g.preventDefault(),
onClick: i,
role: "option",
"aria-selected": s || void 0,
children: [
r.icon && (0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
"p-3",
e.item.size === "small" ? "p-0" : "",
a
),
"data-position": "left",
children: r.icon
}
),
(0, import_jsx_runtime25.jsxs)("div", { className: "flex-1", children: [
(0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
"text-base",
e.item.size === "small" ? "text-sm" : "",
a
),
children: r.title
}
),
(0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
"text-xs",
e.item.size === "small" ? "hidden" : "",
a
),
children: r.subtext
}
)
] }),
r.badge && (0, import_jsx_runtime25.jsx)("div", { "data-position": "right", className: "text-xs", children: (0, import_jsx_runtime25.jsx)(n.Badge.Badge, { variant: "secondary", children: r.badge }) })
]
}
);
});
var yt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, ...r } = e;
return At(r), (0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
"px-2 py-1.5 text-sm font-medium data-[inset]:pl-8",
n
),
ref: t,
children: a
}
);
});
var kt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, ...a } = e;
return At(a), (0, import_jsx_runtime25.jsx)("div", { className: d(n, "animate-spin"), ref: t, children: (0, import_jsx_runtime25.jsx)(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
height: "1em",
viewBox: "0 -960 960 960",
width: "1em",
fill: "#e8eaed",
children: (0, import_jsx_runtime25.jsx)("path", { d: "M480-80q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 31.5-155.5t86-127Q252-817 325-848.5T480-880q17 0 28.5 11.5T520-840q0 17-11.5 28.5T480-800q-133 0-226.5 93.5T160-480q0 133 93.5 226.5T480-160q133 0 226.5-93.5T800-480q0-17 11.5-28.5T840-520q17 0 28.5 11.5T880-480q0 82-31.5 155t-86 127.5q-54.5 54.5-127 86T480-80Z" })
}
) });
});
var Mt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, onMouseDown: r, onClick: s, ...i } = e;
At(i, false);
const c = f();
return (0, import_jsx_runtime25.jsx)(
c.Button.Button,
{
variant: "ghost",
className: d(
n,
"h-full w-full p-0 text-gray-400",
n != null && n.includes("extend-button-add-remove-columns") ? "ml-1" : "mt-1",
n != null && n.includes("extend-button-editing") ? "bg-accent text-accent-foreground" : ""
),
ref: t,
onClick: s,
onMouseDown: r,
...i,
children: a
}
);
});
var zt = (0, import_react10.forwardRef)((e, t) => {
const {
className: n,
children: a,
draggable: r,
onDragStart: s,
onDragEnd: i,
style: c,
label: u,
...l
} = e;
At(l, false);
const g = f();
return (0, import_jsx_runtime25.jsx)(
g.Button.Button,
{
variant: "ghost",
className: d(n, "h-fit w-fit p-0 text-gray-400"),
ref: t,
"aria-label": u,
draggable: r,
onDragStart: s,
onDragEnd: i,
style: c,
...l,
children: a
}
);
});
var k = (0, import_react10.forwardRef)(
(e, t) => {
const {
className: n,
children: a,
onMouseEnter: r,
onMouseLeave: s,
variant: i,
...c
} = e;
At(c);
const u = f();
return (0, import_jsx_runtime25.jsx)(u.Tooltip.TooltipProvider, { delayDuration: 0, children: (0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
n,
"bg-popover text-popover-foreground flex h-fit gap-1 rounded-lg border p-1 shadow-md",
i === "action-toolbar" ? "w-fit" : ""
),
ref: t,
onMouseEnter: r,
onMouseLeave: s,
children: a
}
) });
}
);
var M2 = (0, import_react10.forwardRef)(
(e, t) => {
const {
className: n,
children: a,
mainTooltip: r,
secondaryTooltip: s,
icon: i,
isSelected: c,
isDisabled: u,
onClick: l,
label: g,
variant: b,
...h
} = e;
At(h, false);
const C = f(), T = c === void 0 ? (0, import_jsx_runtime25.jsxs)(
C.Button.Button,
{
className: d(
n,
b === "compact" ? "h-6 min-w-6 p-0" : ""
),
variant: "ghost",
size: b === "compact" ? "sm" : "default",
disabled: u,
onClick: l,
ref: t,
"aria-label": g,
...h,
children: [
i,
a
]
}
) : (0, import_jsx_runtime25.jsxs)(
C.Toggle.Toggle,
{
className: d(
n,
"data-[state=open]:bg-accent data-[state=closed]:text-accent-foreground",
b === "compact" ? "h-6 min-w-6 p-0" : ""
),
size: b === "compact" ? "sm" : "default",
"aria-label": g,
onClick: l,
pressed: c,
disabled: u,
"data-state": c ? "on" : "off",
"data-disabled": u,
ref: t,
...h,
children: [
i,
a
]
}
);
return (0, import_jsx_runtime25.jsxs)(C.Tooltip.Tooltip, { children: [
(0, import_jsx_runtime25.jsx)(C.Tooltip.TooltipTrigger, { asChild: true, children: T }),
(0, import_jsx_runtime25.jsxs)(
C.Tooltip.TooltipContent,
{
className: "flex flex-col items-center whitespace-pre-wrap",
children: [
(0, import_jsx_runtime25.jsx)("span", { children: r }),
s && (0, import_jsx_runtime25.jsx)("span", { children: s })
]
}
)
] });
}
);
var z = (0, import_react10.forwardRef)((e, t) => {
const { className: n, items: a, isDisabled: r, ...s } = e;
At(s);
const i = f(), c = (l) => (0, import_jsx_runtime25.jsxs)("div", { className: "flex items-center gap-1", children: [
l.icon,
l.text
] }), u = a.filter((l) => l.isSelected)[0];
return u ? (0, import_jsx_runtime25.jsxs)(
i.Select.Select,
{
value: u.text,
onValueChange: (l) => {
var g, b;
return (b = (g = a.find((h) => h.text === l)).onClick) == null ? void 0 : b.call(g);
},
disabled: r,
children: [
(0, import_jsx_runtime25.jsx)(i.Select.SelectTrigger, { className: "border-none", children: (0, import_jsx_runtime25.jsx)(i.Select.SelectValue, {}) }),
(0, import_jsx_runtime25.jsx)(i.Select.SelectContent, { className: n, ref: t, children: a.map((l) => (0, import_jsx_runtime25.jsx)(
i.Select.SelectItem,
{
disabled: l.isDisabled,
value: l.text,
children: (0, import_jsx_runtime25.jsx)(c, { ...l })
},
l.text
)) })
]
}
) : null;
});
var Dt = (0, import_react10.forwardRef)((e, t) => {
const {
className: n,
children: a,
selected: r,
headerText: s,
onFocus: i,
onBlur: c,
tabIndex: u,
...l
} = e;
At(l);
const g = f();
return (0, import_jsx_runtime25.jsxs)(
g.Card.Card,
{
className: d(
n,
"w-[300px]",
r ? "bg-accent text-accent-foreground" : ""
),
onFocus: i,
onBlur: c,
tabIndex: u,
ref: t,
children: [
s && (0, import_jsx_runtime25.jsx)("div", { className: "px-4 pt-4 text-sm italic", children: s }),
a
]
}
);
});
var It = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, ...r } = e;
return At(r), (0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
n,
"p-4",
n != null && n.includes("thread-comments") ? "flex flex-col gap-6 border-b" : ""
),
ref: t,
children: a
}
);
});
var Bt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, ...r } = e;
At(r, false);
const s = f();
return (0, import_jsx_runtime25.jsx)(
s.Button.Button,
{
className: d(
n,
"text-foreground w-fit bg-transparent p-0 hover:bg-transparent"
),
ref: t,
children: a
}
);
});
var Pt = (0, import_react10.forwardRef)((e, t) => {
const { authorInfo: n, timeString: a, edited: r, ...s } = e, i = M();
At(s, false);
const c = f();
return n === "loading" ? (0, import_jsx_runtime25.jsxs)("div", { className: "flex flex-row flex-nowrap items-center gap-4", children: [
(0, import_jsx_runtime25.jsx)(
c.Skeleton.Skeleton,
{
className: "size-7 animate-pulse rounded-full bg-neutral-400"
}
),
(0, import_jsx_runtime25.jsx)(
c.Skeleton.Skeleton,
{
className: "h-3 w-32 animate-pulse rounded-full bg-neutral-400"
}
)
] }) : (0, import_jsx_runtime25.jsxs)("div", { className: "flex flex-row flex-nowrap items-center gap-4", children: [
(0, import_jsx_runtime25.jsxs)(c.Avatar.Avatar, { children: [
(0, import_jsx_runtime25.jsx)(
c.Avatar.AvatarImage,
{
src: n.avatarUrl,
alt: n.username,
className: "h-7 rounded-full"
}
),
(0, import_jsx_runtime25.jsx)(c.Avatar.AvatarFallback, { children: n.username[0] })
] }),
(0, import_jsx_runtime25.jsxs)("div", { className: "flex flex-row flex-nowrap items-center gap-2", children: [
(0, import_jsx_runtime25.jsx)("span", { className: "text-sm font-bold", children: n.username }),
(0, import_jsx_runtime25.jsxs)("span", { className: "text-xs", children: [
a,
" ",
r && `(${i.comments.edited})`
] })
] })
] });
});
var _t = (0, import_react10.forwardRef)((e, t) => {
const {
className: n,
showActions: a,
authorInfo: r,
timeString: s,
actions: i,
edited: c,
emojiPickerOpen: u,
// Unused
children: l,
...g
} = e;
At(g);
const [b, h] = (0, import_react10.useState)(false), { focused: C, ref: T } = Dl(), y = i && (a === true || a === void 0 || a === "hover" && b || C);
return (0, import_jsx_runtime25.jsxs)(
"div",
{
ref: t,
className: d(n, "relative flex flex-col gap-2"),
onMouseEnter: () => h(true),
onMouseLeave: () => h(false),
children: [
y ? (0, import_jsx_runtime25.jsx)("div", { className: "absolute right-0 top-0 z-10", ref: T, children: i }) : null,
(0, import_jsx_runtime25.jsx)(Pt, { ...e }),
l
]
}
);
});
var Rt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, onFocus: a, onBlur: r, autoFocus: s, editor: i, editable: c, ...u } = e;
At(u);
const l = q();
return (0, import_jsx_runtime25.jsx)(
Gt,
{
autoFocus: s,
className: d(n, ""),
theme: l == null ? void 0 : l.colorSchemePreference,
editor: e.editor,
sideMenu: false,
slashMenu: false,
tableHandles: false,
filePanel: false,
formattingToolbar: false,
editable: c,
ref: t,
onFocus: a,
onBlur: r,
children: (0, import_jsx_runtime25.jsx)(
_r,
{
formattingToolbar: Ft
}
)
}
);
});
var Ft = () => {
const e = Vr([]).filter(
(t) => t.key !== "nestBlockButton" && t.key !== "unnestBlockButton"
);
return (0, import_jsx_runtime25.jsx)(qt, { blockTypeSelectItems: [], children: e });
};
var Lt = (0, import_react10.forwardRef)((e, t) => {
const {
className: n,
text: a,
icon: r,
isSelected: s,
mainTooltip: i,
secondaryTooltip: c,
onClick: u,
onMouseEnter: l,
...g
} = e;
At(g, false);
const b = f(), h = (0, import_jsx_runtime25.jsxs)(
b.Button.Button,
{
variant: s ? "secondary" : "outline",
className: d(
n,
"flex h-7 items-center gap-1 rounded-full px-2.5"
),
onClick: u,
onMouseEnter: l,
ref: t,
children: [
(0, import_jsx_runtime25.jsx)("span", { children: r }),
(0, import_jsx_runtime25.jsx)("span", { children: a })
]
}
);
return i ? (0, import_jsx_runtime25.jsxs)(b.Tooltip.Tooltip, { children: [
(0, import_jsx_runtime25.jsx)(b.Tooltip.TooltipTrigger, { asChild: true, children: h }),
(0, import_jsx_runtime25.jsxs)(
b.Tooltip.TooltipContent,
{
className: "flex flex-col items-center whitespace-pre-wrap",
children: [
(0, import_jsx_runtime25.jsx)("span", { children: i }),
c && (0, import_jsx_runtime25.jsx)("span", { children: c })
]
}
)
] }) : h;
});
var Et = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, ...r } = e;
At(r);
const s = f();
return (0, import_jsx_runtime25.jsx)(s.Tooltip.TooltipProvider, { delayDuration: 0, children: (0, import_jsx_runtime25.jsx)(
"div",
{
className: d(n, "flex w-full flex-row flex-wrap gap-1"),
ref: t,
children: a
}
) });
});
var Vt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, children: a, onClick: r, label: s, ...i } = e;
At(i);
const c = f();
return (0, import_jsx_runtime25.jsx)(
c.Button.Button,
{
type: "submit",
className: n,
"aria-label": s,
ref: t,
onClick: r,
children: a
}
);
});
var At2 = (0, import_react10.forwardRef)((e, t) => {
const { className: n, accept: a, value: r, placeholder: s, onChange: i, ...c } = e;
At(c);
const u = f();
return (0, import_jsx_runtime25.jsx)(
u.Input.Input,
{
type: "file",
className: n,
ref: t,
accept: a,
value: r ? r.name : void 0,
onChange: async (l) => i == null ? void 0 : i(l.target.files[0]),
placeholder: s
}
);
});
var jt = (0, import_react10.forwardRef)((e, t) => {
const { className: n, isSelected: a, onClick: r, item: s, id: i, ...c } = e;
At(c);
const u = (0, import_react10.useRef)(null);
return (0, import_react10.useEffect)(() => {
if (!u.current || !a)
return;
const l = Ul(
u.current,
u.current.closest(".bn-grid-suggestion-menu")
);
l === "top" ? u.current.scrollIntoView(true) : l === "bottom" && u.current.scrollIntoView(false);
}, [a]), (0, import_jsx_runtime25.jsx)(
"div",
{
className: d(
"focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:!text-destructive [&_svg:not([class*=text-])]:text-muted-foreground outline-hidden relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm data-[disabled]:pointer-events-none data-[inset]:pl-8 data-[disabled]:opacity-50 [&_svg:not([class*=size-])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
"hover:bg-accent hover:text-accent-foreground data-[variant=destructive]:hover:bg-destructive/10 dark:data-[variant=destructive]:hover:bg-destructive/20 data-[variant=destructive]:hover:text-destructive",
"aria-selected:bg-accent aria-selected:text-accent-foreground data-[variant=destructive]:aria-selected:bg-destructive/10 dark:data-[variant=destructive]:aria-selected:bg-destructive/20 data-[variant=destructive]:aria-selected:text-destructive",
"text-lg!",
n
),
ref: jl([t, u]),
id: i,
role: "option",
onClick: r,
"aria-selected": a || void 0,
children: s.icon
}
);
});
var qt2 = (0, import_react10.forwardRef)((e, t) => {
const {
className: n,
children: a,
// unused, using "dots" instead
columns: r,
...s
} = e;
return At(s), (0, import_jsx_runtime25.jsx)(
"div",
{
className: n,
style: { gridColumn: `1 / ${r + 1}` },
ref: t,
children: a
}
);
});
var $t = {
FormattingToolbar: {
Root: k,
Button: M2,
Select: z
},
FilePanel: {
Root: mt,
Button: Vt,
FileInput: At2,
TabPanel: pt,
TextInput: gt
},
LinkToolbar: {
Root: k,
Button: M2,
Select: z
},
SideMenu: {
Root: ht,
Button: xt
},
SuggestionMenu: {
Root: Nt,
Item: St,
EmptyItem: Tt,
Label: yt,
Loader: kt
},
GridSuggestionMenu: {
Root: wt,
Item: jt,
EmptyItem: Ct,
Loader: qt2
},
TableHandle: {
Root: zt,
ExtendButton: Mt
},
Comments: {
Comment: _t,
Editor: Rt,
Card: Dt,
CardSection: It,
ExpandSectionsPrompt: Bt
},
Generic: {
Badge: {
Root: Lt,
Group: Et
},
Toolbar: {
Root: k,
Button: M2,
Select: z
},
Form: {
Root: nt,
TextInput: ot
},
Menu: {
Root: rt,
Trigger: st,
Dropdown: it,
Divider: lt,
Label: ct,
Item: dt,
Button: ut
},
Popover: {
Root: vt,
Trigger: ft,
Content: bt
}
}
};
var Gt = (e) => {
const { className: t, shadCNComponents: n, ...a } = e, r = (0, import_react10.useMemo)(() => ({
...tt,
...n
}), [n]);
return (0, import_jsx_runtime25.jsx)(G.Provider, { value: r, children: (0, import_jsx_runtime25.jsx)(lo.Provider, { value: $t, children: (0, import_jsx_runtime25.jsx)(
yl,
{
className: D("bn-shadcn", t || ""),
...a
}
) }) });
};
export {
Gt as BlockNoteView,
G as ShadCNComponentsContext,
tt as ShadCNDefaultComponents,
$t as components,
f as useShadCNComponentsContext
};
/*! Bundled license information:
lucide-react/dist/esm/shared/src/utils.js:
lucide-react/dist/esm/defaultAttributes.js:
lucide-react/dist/esm/Icon.js:
lucide-react/dist/esm/createLucideIcon.js:
lucide-react/dist/esm/icons/a-arrow-down.js:
lucide-react/dist/esm/icons/a-large-small.js:
lucide-react/dist/esm/icons/a-arrow-up.js:
lucide-react/dist/esm/icons/accessibility.js:
lucide-react/dist/esm/icons/activity.js:
lucide-react/dist/esm/icons/air-vent.js:
lucide-react/dist/esm/icons/airplay.js:
lucide-react/dist/esm/icons/alarm-clock-check.js:
lucide-react/dist/esm/icons/alarm-clock-minus.js:
lucide-react/dist/esm/icons/alarm-clock-off.js:
lucide-react/dist/esm/icons/alarm-clock-plus.js:
lucide-react/dist/esm/icons/alarm-clock.js:
lucide-react/dist/esm/icons/alarm-smoke.js:
lucide-react/dist/esm/icons/album.js:
lucide-react/dist/esm/icons/align-center-horizontal.js:
lucide-react/dist/esm/icons/align-center-vertical.js:
lucide-react/dist/esm/icons/align-center.js:
lucide-react/dist/esm/icons/align-end-horizontal.js:
lucide-react/dist/esm/icons/align-end-vertical.js:
lucide-react/dist/esm/icons/align-horizontal-distribute-center.js:
lucide-react/dist/esm/icons/align-horizontal-distribute-end.js:
lucide-react/dist/esm/icons/align-horizontal-distribute-start.js:
lucide-react/dist/esm/icons/align-horizontal-justify-center.js:
lucide-react/dist/esm/icons/align-horizontal-justify-end.js:
lucide-react/dist/esm/icons/align-horizontal-justify-start.js:
lucide-react/dist/esm/icons/align-horizontal-space-around.js:
lucide-react/dist/esm/icons/align-horizontal-space-between.js:
lucide-react/dist/esm/icons/align-justify.js:
lucide-react/dist/esm/icons/align-left.js:
lucide-react/dist/esm/icons/align-right.js:
lucide-react/dist/esm/icons/align-start-horizontal.js:
lucide-react/dist/esm/icons/align-start-vertical.js:
lucide-react/dist/esm/icons/align-vertical-distribute-center.js:
lucide-react/dist/esm/icons/align-vertical-distribute-end.js:
lucide-react/dist/esm/icons/align-vertical-distribute-start.js:
lucide-react/dist/esm/icons/align-vertical-justify-center.js:
lucide-react/dist/esm/icons/align-vertical-justify-end.js:
lucide-react/dist/esm/icons/align-vertical-justify-start.js:
lucide-react/dist/esm/icons/align-vertical-space-around.js:
lucide-react/dist/esm/icons/align-vertical-space-between.js:
lucide-react/dist/esm/icons/ambulance.js:
lucide-react/dist/esm/icons/ampersand.js:
lucide-react/dist/esm/icons/ampersands.js:
lucide-react/dist/esm/icons/amphora.js:
lucide-react/dist/esm/icons/anchor.js:
lucide-react/dist/esm/icons/angry.js:
lucide-react/dist/esm/icons/annoyed.js:
lucide-react/dist/esm/icons/antenna.js:
lucide-react/dist/esm/icons/anvil.js:
lucide-react/dist/esm/icons/aperture.js:
lucide-react/dist/esm/icons/app-window-mac.js:
lucide-react/dist/esm/icons/app-window.js:
lucide-react/dist/esm/icons/apple.js:
lucide-react/dist/esm/icons/archive-restore.js:
lucide-react/dist/esm/icons/archive-x.js:
lucide-react/dist/esm/icons/archive.js:
lucide-react/dist/esm/icons/armchair.js:
lucide-react/dist/esm/icons/arrow-big-down-dash.js:
lucide-react/dist/esm/icons/arrow-big-down.js:
lucide-react/dist/esm/icons/arrow-big-left-dash.js:
lucide-react/dist/esm/icons/arrow-big-left.js:
lucide-react/dist/esm/icons/arrow-big-right-dash.js:
lucide-react/dist/esm/icons/arrow-big-right.js:
lucide-react/dist/esm/icons/arrow-big-up-dash.js:
lucide-react/dist/esm/icons/arrow-big-up.js:
lucide-react/dist/esm/icons/arrow-down-0-1.js:
lucide-react/dist/esm/icons/arrow-down-1-0.js:
lucide-react/dist/esm/icons/arrow-down-a-z.js:
lucide-react/dist/esm/icons/arrow-down-from-line.js:
lucide-react/dist/esm/icons/arrow-down-left.js:
lucide-react/dist/esm/icons/arrow-down-narrow-wide.js:
lucide-react/dist/esm/icons/arrow-down-right.js:
lucide-react/dist/esm/icons/arrow-down-to-dot.js:
lucide-react/dist/esm/icons/arrow-down-to-line.js:
lucide-react/dist/esm/icons/arrow-down-up.js:
lucide-react/dist/esm/icons/arrow-down-wide-narrow.js:
lucide-react/dist/esm/icons/arrow-down-z-a.js:
lucide-react/dist/esm/icons/arrow-down.js:
lucide-react/dist/esm/icons/arrow-left-from-line.js:
lucide-react/dist/esm/icons/arrow-left-right.js:
lucide-react/dist/esm/icons/arrow-left-to-line.js:
lucide-react/dist/esm/icons/arrow-left.js:
lucide-react/dist/esm/icons/arrow-right-left.js:
lucide-react/dist/esm/icons/arrow-right-to-line.js:
lucide-react/dist/esm/icons/arrow-right-from-line.js:
lucide-react/dist/esm/icons/arrow-right.js:
lucide-react/dist/esm/icons/arrow-up-0-1.js:
lucide-react/dist/esm/icons/arrow-up-1-0.js:
lucide-react/dist/esm/icons/arrow-up-a-z.js:
lucide-react/dist/esm/icons/arrow-up-down.js:
lucide-react/dist/esm/icons/arrow-up-from-dot.js:
lucide-react/dist/esm/icons/arrow-up-from-line.js:
lucide-react/dist/esm/icons/arrow-up-left.js:
lucide-react/dist/esm/icons/arrow-up-narrow-wide.js:
lucide-react/dist/esm/icons/arrow-up-right.js:
lucide-react/dist/esm/icons/arrow-up-to-line.js:
lucide-react/dist/esm/icons/arrow-up-wide-narrow.js:
lucide-react/dist/esm/icons/arrow-up-z-a.js:
lucide-react/dist/esm/icons/arrow-up.js:
lucide-react/dist/esm/icons/arrows-up-from-line.js:
lucide-react/dist/esm/icons/asterisk.js:
lucide-react/dist/esm/icons/at-sign.js:
lucide-react/dist/esm/icons/atom.js:
lucide-react/dist/esm/icons/audio-lines.js:
lucide-react/dist/esm/icons/audio-waveform.js:
lucide-react/dist/esm/icons/award.js:
lucide-react/dist/esm/icons/axe.js:
lucide-react/dist/esm/icons/axis-3d.js:
lucide-react/dist/esm/icons/baby.js:
lucide-react/dist/esm/icons/backpack.js:
lucide-react/dist/esm/icons/badge-alert.js:
lucide-react/dist/esm/icons/badge-cent.js:
lucide-react/dist/esm/icons/badge-check.js:
lucide-react/dist/esm/icons/badge-dollar-sign.js:
lucide-react/dist/esm/icons/badge-euro.js:
lucide-react/dist/esm/icons/badge-indian-rupee.js:
lucide-react/dist/esm/icons/badge-info.js:
lucide-react/dist/esm/icons/badge-japanese-yen.js:
lucide-react/dist/esm/icons/badge-minus.js:
lucide-react/dist/esm/icons/badge-percent.js:
lucide-react/dist/esm/icons/badge-plus.js:
lucide-react/dist/esm/icons/badge-pound-sterling.js:
lucide-react/dist/esm/icons/badge-question-mark.js:
lucide-react/dist/esm/icons/badge-russian-ruble.js:
lucide-react/dist/esm/icons/badge-swiss-franc.js:
lucide-react/dist/esm/icons/badge-x.js:
lucide-react/dist/esm/icons/badge.js:
lucide-react/dist/esm/icons/baggage-claim.js:
lucide-react/dist/esm/icons/ban.js:
lucide-react/dist/esm/icons/banana.js:
lucide-react/dist/esm/icons/bandage.js:
lucide-react/dist/esm/icons/banknote-arrow-down.js:
lucide-react/dist/esm/icons/banknote-arrow-up.js:
lucide-react/dist/esm/icons/banknote-x.js:
lucide-react/dist/esm/icons/barcode.js:
lucide-react/dist/esm/icons/banknote.js:
lucide-react/dist/esm/icons/barrel.js:
lucide-react/dist/esm/icons/baseline.js:
lucide-react/dist/esm/icons/bath.js:
lucide-react/dist/esm/icons/battery-charging.js:
lucide-react/dist/esm/icons/battery-full.js:
lucide-react/dist/esm/icons/battery-low.js:
lucide-react/dist/esm/icons/battery-medium.js:
lucide-react/dist/esm/icons/battery-plus.js:
lucide-react/dist/esm/icons/battery-warning.js:
lucide-react/dist/esm/icons/battery.js:
lucide-react/dist/esm/icons/beaker.js:
lucide-react/dist/esm/icons/bean-off.js:
lucide-react/dist/esm/icons/bed-double.js:
lucide-react/dist/esm/icons/bean.js:
lucide-react/dist/esm/icons/bed-single.js:
lucide-react/dist/esm/icons/bed.js:
lucide-react/dist/esm/icons/beer-off.js:
lucide-react/dist/esm/icons/beef.js:
lucide-react/dist/esm/icons/beer.js:
lucide-react/dist/esm/icons/bell-dot.js:
lucide-react/dist/esm/icons/bell-electric.js:
lucide-react/dist/esm/icons/bell-minus.js:
lucide-react/dist/esm/icons/bell-off.js:
lucide-react/dist/esm/icons/bell-plus.js:
lucide-react/dist/esm/icons/bell-ring.js:
lucide-react/dist/esm/icons/bell.js:
lucide-react/dist/esm/icons/between-horizontal-end.js:
lucide-react/dist/esm/icons/between-horizontal-start.js:
lucide-react/dist/esm/icons/between-vertical-end.js:
lucide-react/dist/esm/icons/between-vertical-start.js:
lucide-react/dist/esm/icons/biceps-flexed.js:
lucide-react/dist/esm/icons/bike.js:
lucide-react/dist/esm/icons/binary.js:
lucide-react/dist/esm/icons/binoculars.js:
lucide-react/dist/esm/icons/biohazard.js:
lucide-react/dist/esm/icons/bird.js:
lucide-react/dist/esm/icons/bitcoin.js:
lucide-react/dist/esm/icons/blend.js:
lucide-react/dist/esm/icons/blinds.js:
lucide-react/dist/esm/icons/blocks.js:
lucide-react/dist/esm/icons/bluetooth-connected.js:
lucide-react/dist/esm/icons/bluetooth-off.js:
lucide-react/dist/esm/icons/bluetooth-searching.js:
lucide-react/dist/esm/icons/bluetooth.js:
lucide-react/dist/esm/icons/bold.js:
lucide-react/dist/esm/icons/bolt.js:
lucide-react/dist/esm/icons/bomb.js:
lucide-react/dist/esm/icons/bone.js:
lucide-react/dist/esm/icons/book-a.js:
lucide-react/dist/esm/icons/book-audio.js:
lucide-react/dist/esm/icons/book-alert.js:
lucide-react/dist/esm/icons/book-check.js:
lucide-react/dist/esm/icons/book-copy.js:
lucide-react/dist/esm/icons/book-dashed.js:
lucide-react/dist/esm/icons/book-down.js:
lucide-react/dist/esm/icons/book-headphones.js:
lucide-react/dist/esm/icons/book-heart.js:
lucide-react/dist/esm/icons/book-image.js:
lucide-react/dist/esm/icons/book-key.js:
lucide-react/dist/esm/icons/book-lock.js:
lucide-react/dist/esm/icons/book-marked.js:
lucide-react/dist/esm/icons/book-minus.js:
lucide-react/dist/esm/icons/book-open-check.js:
lucide-react/dist/esm/icons/book-open-text.js:
lucide-react/dist/esm/icons/book-open.js:
lucide-react/dist/esm/icons/book-plus.js:
lucide-react/dist/esm/icons/book-text.js:
lucide-react/dist/esm/icons/book-type.js:
lucide-react/dist/esm/icons/book-up-2.js:
lucide-react/dist/esm/icons/book-up.js:
lucide-react/dist/esm/icons/book-x.js:
lucide-react/dist/esm/icons/book-user.js:
lucide-react/dist/esm/icons/book.js:
lucide-react/dist/esm/icons/bookmark-check.js:
lucide-react/dist/esm/icons/bookmark-minus.js:
lucide-react/dist/esm/icons/bookmark-plus.js:
lucide-react/dist/esm/icons/bookmark-x.js:
lucide-react/dist/esm/icons/bookmark.js:
lucide-react/dist/esm/icons/boom-box.js:
lucide-react/dist/esm/icons/bot-message-square.js:
lucide-react/dist/esm/icons/bot-off.js:
lucide-react/dist/esm/icons/bot.js:
lucide-react/dist/esm/icons/bottle-wine.js:
lucide-react/dist/esm/icons/bow-arrow.js:
lucide-react/dist/esm/icons/box.js:
lucide-react/dist/esm/icons/boxes.js:
lucide-react/dist/esm/icons/braces.js:
lucide-react/dist/esm/icons/brackets.js:
lucide-react/dist/esm/icons/brain-circuit.js:
lucide-react/dist/esm/icons/brain-cog.js:
lucide-react/dist/esm/icons/brain.js:
lucide-react/dist/esm/icons/brick-wall-fire.js:
lucide-react/dist/esm/icons/brick-wall.js:
lucide-react/dist/esm/icons/briefcase-business.js:
lucide-react/dist/esm/icons/briefcase-conveyor-belt.js:
lucide-react/dist/esm/icons/briefcase-medical.js:
lucide-react/dist/esm/icons/briefcase.js:
lucide-react/dist/esm/icons/bring-to-front.js:
lucide-react/dist/esm/icons/brush-cleaning.js:
lucide-react/dist/esm/icons/brush.js:
lucide-react/dist/esm/icons/bubbles.js:
lucide-react/dist/esm/icons/bug-off.js:
lucide-react/dist/esm/icons/bug-play.js:
lucide-react/dist/esm/icons/bug.js:
lucide-react/dist/esm/icons/building-2.js:
lucide-react/dist/esm/icons/building.js:
lucide-react/dist/esm/icons/bus-front.js:
lucide-react/dist/esm/icons/bus.js:
lucide-react/dist/esm/icons/cable-car.js:
lucide-react/dist/esm/icons/cable.js:
lucide-react/dist/esm/icons/cake-slice.js:
lucide-react/dist/esm/icons/cake.js:
lucide-react/dist/esm/icons/calculator.js:
lucide-react/dist/esm/icons/calendar-1.js:
lucide-react/dist/esm/icons/calendar-arrow-down.js:
lucide-react/dist/esm/icons/calendar-arrow-up.js:
lucide-react/dist/esm/icons/calendar-check-2.js:
lucide-react/dist/esm/icons/calendar-check.js:
lucide-react/dist/esm/icons/calendar-clock.js:
lucide-react/dist/esm/icons/calendar-cog.js:
lucide-react/dist/esm/icons/calendar-days.js:
lucide-react/dist/esm/icons/calendar-fold.js:
lucide-react/dist/esm/icons/calendar-heart.js:
lucide-react/dist/esm/icons/calendar-minus-2.js:
lucide-react/dist/esm/icons/calendar-minus.js:
lucide-react/dist/esm/icons/calendar-off.js:
lucide-react/dist/esm/icons/calendar-plus-2.js:
lucide-react/dist/esm/icons/calendar-plus.js:
lucide-react/dist/esm/icons/calendar-range.js:
lucide-react/dist/esm/icons/calendar-sync.js:
lucide-react/dist/esm/icons/calendar-search.js:
lucide-react/dist/esm/icons/calendar-x-2.js:
lucide-react/dist/esm/icons/calendar-x.js:
lucide-react/dist/esm/icons/calendar.js:
lucide-react/dist/esm/icons/camera-off.js:
lucide-react/dist/esm/icons/camera.js:
lucide-react/dist/esm/icons/candy-cane.js:
lucide-react/dist/esm/icons/candy-off.js:
lucide-react/dist/esm/icons/candy.js:
lucide-react/dist/esm/icons/cannabis.js:
lucide-react/dist/esm/icons/captions-off.js:
lucide-react/dist/esm/icons/captions.js:
lucide-react/dist/esm/icons/car-front.js:
lucide-react/dist/esm/icons/car-taxi-front.js:
lucide-react/dist/esm/icons/caravan.js:
lucide-react/dist/esm/icons/card-sim.js:
lucide-react/dist/esm/icons/car.js:
lucide-react/dist/esm/icons/carrot.js:
lucide-react/dist/esm/icons/case-lower.js:
lucide-react/dist/esm/icons/case-sensitive.js:
lucide-react/dist/esm/icons/case-upper.js:
lucide-react/dist/esm/icons/cassette-tape.js:
lucide-react/dist/esm/icons/cast.js:
lucide-react/dist/esm/icons/castle.js:
lucide-react/dist/esm/icons/cat.js:
lucide-react/dist/esm/icons/cctv.js:
lucide-react/dist/esm/icons/chart-area.js:
lucide-react/dist/esm/icons/chart-bar-big.js:
lucide-react/dist/esm/icons/chart-bar-increasing.js:
lucide-react/dist/esm/icons/chart-bar-decreasing.js:
lucide-react/dist/esm/icons/chart-bar-stacked.js:
lucide-react/dist/esm/icons/chart-bar.js:
lucide-react/dist/esm/icons/chart-candlestick.js:
lucide-react/dist/esm/icons/chart-column-big.js:
lucide-react/dist/esm/icons/chart-column-decreasing.js:
lucide-react/dist/esm/icons/chart-column-increasing.js:
lucide-react/dist/esm/icons/chart-column-stacked.js:
lucide-react/dist/esm/icons/chart-column.js:
lucide-react/dist/esm/icons/chart-gantt.js:
lucide-react/dist/esm/icons/chart-line.js:
lucide-react/dist/esm/icons/chart-network.js:
lucide-react/dist/esm/icons/chart-no-axes-column-decreasing.js:
lucide-react/dist/esm/icons/chart-no-axes-column-increasing.js:
lucide-react/dist/esm/icons/chart-no-axes-column.js:
lucide-react/dist/esm/icons/chart-no-axes-combined.js:
lucide-react/dist/esm/icons/chart-no-axes-gantt.js:
lucide-react/dist/esm/icons/chart-pie.js:
lucide-react/dist/esm/icons/chart-scatter.js:
lucide-react/dist/esm/icons/chart-spline.js:
lucide-react/dist/esm/icons/check-check.js:
lucide-react/dist/esm/icons/check-line.js:
lucide-react/dist/esm/icons/check.js:
lucide-react/dist/esm/icons/chef-hat.js:
lucide-react/dist/esm/icons/cherry.js:
lucide-react/dist/esm/icons/chevron-down.js:
lucide-react/dist/esm/icons/chevron-first.js:
lucide-react/dist/esm/icons/chevron-last.js:
lucide-react/dist/esm/icons/chevron-left.js:
lucide-react/dist/esm/icons/chevron-right.js:
lucide-react/dist/esm/icons/chevron-up.js:
lucide-react/dist/esm/icons/chevrons-down-up.js:
lucide-react/dist/esm/icons/chevrons-down.js:
lucide-react/dist/esm/icons/chevrons-left-right-ellipsis.js:
lucide-react/dist/esm/icons/chevrons-left-right.js:
lucide-react/dist/esm/icons/chevrons-left.js:
lucide-react/dist/esm/icons/chevrons-right-left.js:
lucide-react/dist/esm/icons/chevrons-right.js:
lucide-react/dist/esm/icons/chevrons-up-down.js:
lucide-react/dist/esm/icons/chevrons-up.js:
lucide-react/dist/esm/icons/chrome.js:
lucide-react/dist/esm/icons/cigarette-off.js:
lucide-react/dist/esm/icons/church.js:
lucide-react/dist/esm/icons/cigarette.js:
lucide-react/dist/esm/icons/circle-alert.js:
lucide-react/dist/esm/icons/circle-arrow-down.js:
lucide-react/dist/esm/icons/circle-arrow-left.js:
lucide-react/dist/esm/icons/circle-arrow-out-down-left.js:
lucide-react/dist/esm/icons/circle-arrow-out-down-right.js:
lucide-react/dist/esm/icons/circle-arrow-out-up-left.js:
lucide-react/dist/esm/icons/circle-arrow-out-up-right.js:
lucide-react/dist/esm/icons/circle-arrow-right.js:
lucide-react/dist/esm/icons/circle-arrow-up.js:
lucide-react/dist/esm/icons/circle-check-big.js:
lucide-react/dist/esm/icons/circle-check.js:
lucide-react/dist/esm/icons/circle-chevron-down.js:
lucide-react/dist/esm/icons/circle-chevron-left.js:
lucide-react/dist/esm/icons/circle-chevron-right.js:
lucide-react/dist/esm/icons/circle-chevron-up.js:
lucide-react/dist/esm/icons/circle-dashed.js:
lucide-react/dist/esm/icons/circle-divide.js:
lucide-react/dist/esm/icons/circle-dollar-sign.js:
lucide-react/dist/esm/icons/circle-dot-dashed.js:
lucide-react/dist/esm/icons/circle-dot.js:
lucide-react/dist/esm/icons/circle-ellipsis.js:
lucide-react/dist/esm/icons/circle-equal.js:
lucide-react/dist/esm/icons/circle-fading-arrow-up.js:
lucide-react/dist/esm/icons/circle-fading-plus.js:
lucide-react/dist/esm/icons/circle-gauge.js:
lucide-react/dist/esm/icons/circle-minus.js:
lucide-react/dist/esm/icons/circle-off.js:
lucide-react/dist/esm/icons/circle-parking-off.js:
lucide-react/dist/esm/icons/circle-parking.js:
lucide-react/dist/esm/icons/circle-pause.js:
lucide-react/dist/esm/icons/circle-percent.js:
lucide-react/dist/esm/icons/circle-play.js:
lucide-react/dist/esm/icons/circle-plus.js:
lucide-react/dist/esm/icons/circle-pound-sterling.js:
lucide-react/dist/esm/icons/circle-power.js:
lucide-react/dist/esm/icons/circle-question-mark.js:
lucide-react/dist/esm/icons/circle-slash-2.js:
lucide-react/dist/esm/icons/circle-slash.js:
lucide-react/dist/esm/icons/circle-small.js:
lucide-react/dist/esm/icons/circle-stop.js:
lucide-react/dist/esm/icons/circle-user-round.js:
lucide-react/dist/esm/icons/circle-user.js:
lucide-react/dist/esm/icons/circle-x.js:
lucide-react/dist/esm/icons/circle.js:
lucide-react/dist/esm/icons/circuit-board.js:
lucide-react/dist/esm/icons/citrus.js:
lucide-react/dist/esm/icons/clapperboard.js:
lucide-react/dist/esm/icons/clipboard-check.js:
lucide-react/dist/esm/icons/clipboard-copy.js:
lucide-react/dist/esm/icons/clipboard-list.js:
lucide-react/dist/esm/icons/clipboard-minus.js:
lucide-react/dist/esm/icons/clipboard-paste.js:
lucide-react/dist/esm/icons/clipboard-pen-line.js:
lucide-react/dist/esm/icons/clipboard-pen.js:
lucide-react/dist/esm/icons/clipboard-plus.js:
lucide-react/dist/esm/icons/clipboard-type.js:
lucide-react/dist/esm/icons/clipboard-x.js:
lucide-react/dist/esm/icons/clipboard.js:
lucide-react/dist/esm/icons/clock-1.js:
lucide-react/dist/esm/icons/clock-10.js:
lucide-react/dist/esm/icons/clock-11.js:
lucide-react/dist/esm/icons/clock-2.js:
lucide-react/dist/esm/icons/clock-12.js:
lucide-react/dist/esm/icons/clock-3.js:
lucide-react/dist/esm/icons/clock-4.js:
lucide-react/dist/esm/icons/clock-5.js:
lucide-react/dist/esm/icons/clock-6.js:
lucide-react/dist/esm/icons/clock-7.js:
lucide-react/dist/esm/icons/clock-8.js:
lucide-react/dist/esm/icons/clock-9.js:
lucide-react/dist/esm/icons/clock-alert.js:
lucide-react/dist/esm/icons/clock-arrow-down.js:
lucide-react/dist/esm/icons/clock-arrow-up.js:
lucide-react/dist/esm/icons/clock-fading.js:
lucide-react/dist/esm/icons/clock-plus.js:
lucide-react/dist/esm/icons/clock.js:
lucide-react/dist/esm/icons/cloud-alert.js:
lucide-react/dist/esm/icons/cloud-check.js:
lucide-react/dist/esm/icons/cloud-cog.js:
lucide-react/dist/esm/icons/cloud-download.js:
lucide-react/dist/esm/icons/cloud-drizzle.js:
lucide-react/dist/esm/icons/cloud-fog.js:
lucide-react/dist/esm/icons/cloud-hail.js:
lucide-react/dist/esm/icons/cloud-lightning.js:
lucide-react/dist/esm/icons/cloud-moon-rain.js:
lucide-react/dist/esm/icons/cloud-moon.js:
lucide-react/dist/esm/icons/cloud-off.js:
lucide-react/dist/esm/icons/cloud-rain.js:
lucide-react/dist/esm/icons/cloud-rain-wind.js:
lucide-react/dist/esm/icons/cloud-snow.js:
lucide-react/dist/esm/icons/cloud-sun-rain.js:
lucide-react/dist/esm/icons/cloud-sun.js:
lucide-react/dist/esm/icons/cloud-upload.js:
lucide-react/dist/esm/icons/cloud.js:
lucide-react/dist/esm/icons/clover.js:
lucide-react/dist/esm/icons/cloudy.js:
lucide-react/dist/esm/icons/club.js:
lucide-react/dist/esm/icons/code-xml.js:
lucide-react/dist/esm/icons/code.js:
lucide-react/dist/esm/icons/codepen.js:
lucide-react/dist/esm/icons/codesandbox.js:
lucide-react/dist/esm/icons/coffee.js:
lucide-react/dist/esm/icons/cog.js:
lucide-react/dist/esm/icons/coins.js:
lucide-react/dist/esm/icons/columns-2.js:
lucide-react/dist/esm/icons/columns-3-cog.js:
lucide-react/dist/esm/icons/columns-3.js:
lucide-react/dist/esm/icons/columns-4.js:
lucide-react/dist/esm/icons/combine.js:
lucide-react/dist/esm/icons/command.js:
lucide-react/dist/esm/icons/compass.js:
lucide-react/dist/esm/icons/component.js:
lucide-react/dist/esm/icons/computer.js:
lucide-react/dist/esm/icons/concierge-bell.js:
lucide-react/dist/esm/icons/cone.js:
lucide-react/dist/esm/icons/construction.js:
lucide-react/dist/esm/icons/contact-round.js:
lucide-react/dist/esm/icons/contact.js:
lucide-react/dist/esm/icons/container.js:
lucide-react/dist/esm/icons/contrast.js:
lucide-react/dist/esm/icons/cookie.js:
lucide-react/dist/esm/icons/cooking-pot.js:
lucide-react/dist/esm/icons/copy-check.js:
lucide-react/dist/esm/icons/copy-minus.js:
lucide-react/dist/esm/icons/copy-plus.js:
lucide-react/dist/esm/icons/copy-x.js:
lucide-react/dist/esm/icons/copy-slash.js:
lucide-react/dist/esm/icons/copy.js:
lucide-react/dist/esm/icons/copyright.js:
lucide-react/dist/esm/icons/copyleft.js:
lucide-react/dist/esm/icons/corner-down-left.js:
lucide-react/dist/esm/icons/corner-down-right.js:
lucide-react/dist/esm/icons/corner-left-down.js:
lucide-react/dist/esm/icons/corner-left-up.js:
lucide-react/dist/esm/icons/corner-right-down.js:
lucide-react/dist/esm/icons/corner-right-up.js:
lucide-react/dist/esm/icons/corner-up-left.js:
lucide-react/dist/esm/icons/corner-up-right.js:
lucide-react/dist/esm/icons/cpu.js:
lucide-react/dist/esm/icons/creative-commons.js:
lucide-react/dist/esm/icons/credit-card.js:
lucide-react/dist/esm/icons/croissant.js:
lucide-react/dist/esm/icons/crop.js:
lucide-react/dist/esm/icons/cross.js:
lucide-react/dist/esm/icons/crosshair.js:
lucide-react/dist/esm/icons/crown.js:
lucide-react/dist/esm/icons/cuboid.js:
lucide-react/dist/esm/icons/cup-soda.js:
lucide-react/dist/esm/icons/currency.js:
lucide-react/dist/esm/icons/cylinder.js:
lucide-react/dist/esm/icons/dam.js:
lucide-react/dist/esm/icons/database-backup.js:
lucide-react/dist/esm/icons/database-zap.js:
lucide-react/dist/esm/icons/database.js:
lucide-react/dist/esm/icons/decimals-arrow-left.js:
lucide-react/dist/esm/icons/decimals-arrow-right.js:
lucide-react/dist/esm/icons/delete.js:
lucide-react/dist/esm/icons/dessert.js:
lucide-react/dist/esm/icons/diamond-minus.js:
lucide-react/dist/esm/icons/diameter.js:
lucide-react/dist/esm/icons/diamond-percent.js:
lucide-react/dist/esm/icons/diamond-plus.js:
lucide-react/dist/esm/icons/diamond.js:
lucide-react/dist/esm/icons/dice-1.js:
lucide-react/dist/esm/icons/dice-2.js:
lucide-react/dist/esm/icons/dice-3.js:
lucide-react/dist/esm/icons/dice-4.js:
lucide-react/dist/esm/icons/dice-5.js:
lucide-react/dist/esm/icons/dice-6.js:
lucide-react/dist/esm/icons/dices.js:
lucide-react/dist/esm/icons/diff.js:
lucide-react/dist/esm/icons/disc-2.js:
lucide-react/dist/esm/icons/disc-3.js:
lucide-react/dist/esm/icons/disc-album.js:
lucide-react/dist/esm/icons/disc.js:
lucide-react/dist/esm/icons/divide.js:
lucide-react/dist/esm/icons/dna-off.js:
lucide-react/dist/esm/icons/dna.js:
lucide-react/dist/esm/icons/dock.js:
lucide-react/dist/esm/icons/dog.js:
lucide-react/dist/esm/icons/dollar-sign.js:
lucide-react/dist/esm/icons/door-closed-locked.js:
lucide-react/dist/esm/icons/donut.js:
lucide-react/dist/esm/icons/door-closed.js:
lucide-react/dist/esm/icons/dot.js:
lucide-react/dist/esm/icons/download.js:
lucide-react/dist/esm/icons/door-open.js:
lucide-react/dist/esm/icons/drafting-compass.js:
lucide-react/dist/esm/icons/drama.js:
lucide-react/dist/esm/icons/dribbble.js:
lucide-react/dist/esm/icons/drill.js:
lucide-react/dist/esm/icons/drone.js:
lucide-react/dist/esm/icons/droplet-off.js:
lucide-react/dist/esm/icons/droplet.js:
lucide-react/dist/esm/icons/droplets.js:
lucide-react/dist/esm/icons/drum.js:
lucide-react/dist/esm/icons/drumstick.js:
lucide-react/dist/esm/icons/dumbbell.js:
lucide-react/dist/esm/icons/ear-off.js:
lucide-react/dist/esm/icons/ear.js:
lucide-react/dist/esm/icons/earth-lock.js:
lucide-react/dist/esm/icons/earth.js:
lucide-react/dist/esm/icons/eclipse.js:
lucide-react/dist/esm/icons/egg-fried.js:
lucide-react/dist/esm/icons/egg-off.js:
lucide-react/dist/esm/icons/egg.js:
lucide-react/dist/esm/icons/ellipsis-vertical.js:
lucide-react/dist/esm/icons/ellipsis.js:
lucide-react/dist/esm/icons/equal-not.js:
lucide-react/dist/esm/icons/equal-approximately.js:
lucide-react/dist/esm/icons/equal.js:
lucide-react/dist/esm/icons/eraser.js:
lucide-react/dist/esm/icons/ethernet-port.js:
lucide-react/dist/esm/icons/euro.js:
lucide-react/dist/esm/icons/expand.js:
lucide-react/dist/esm/icons/external-link.js:
lucide-react/dist/esm/icons/eye-closed.js:
lucide-react/dist/esm/icons/eye-off.js:
lucide-react/dist/esm/icons/eye.js:
lucide-react/dist/esm/icons/facebook.js:
lucide-react/dist/esm/icons/factory.js:
lucide-react/dist/esm/icons/fan.js:
lucide-react/dist/esm/icons/fast-forward.js:
lucide-react/dist/esm/icons/feather.js:
lucide-react/dist/esm/icons/fence.js:
lucide-react/dist/esm/icons/ferris-wheel.js:
lucide-react/dist/esm/icons/figma.js:
lucide-react/dist/esm/icons/file-archive.js:
lucide-react/dist/esm/icons/file-audio-2.js:
lucide-react/dist/esm/icons/file-audio.js:
lucide-react/dist/esm/icons/file-axis-3d.js:
lucide-react/dist/esm/icons/file-badge-2.js:
lucide-react/dist/esm/icons/file-badge.js:
lucide-react/dist/esm/icons/file-box.js:
lucide-react/dist/esm/icons/file-chart-column-increasing.js:
lucide-react/dist/esm/icons/file-chart-column.js:
lucide-react/dist/esm/icons/file-chart-pie.js:
lucide-react/dist/esm/icons/file-chart-line.js:
lucide-react/dist/esm/icons/file-check-2.js:
lucide-react/dist/esm/icons/file-check.js:
lucide-react/dist/esm/icons/file-code-2.js:
lucide-react/dist/esm/icons/file-clock.js:
lucide-react/dist/esm/icons/file-code.js:
lucide-react/dist/esm/icons/file-cog.js:
lucide-react/dist/esm/icons/file-diff.js:
lucide-react/dist/esm/icons/file-digit.js:
lucide-react/dist/esm/icons/file-down.js:
lucide-react/dist/esm/icons/file-heart.js:
lucide-react/dist/esm/icons/file-image.js:
lucide-react/dist/esm/icons/file-input.js:
lucide-react/dist/esm/icons/file-json-2.js:
lucide-react/dist/esm/icons/file-json.js:
lucide-react/dist/esm/icons/file-key-2.js:
lucide-react/dist/esm/icons/file-key.js:
lucide-react/dist/esm/icons/file-lock-2.js:
lucide-react/dist/esm/icons/file-lock.js:
lucide-react/dist/esm/icons/file-minus-2.js:
lucide-react/dist/esm/icons/file-minus.js:
lucide-react/dist/esm/icons/file-music.js:
lucide-react/dist/esm/icons/file-output.js:
lucide-react/dist/esm/icons/file-pen-line.js:
lucide-react/dist/esm/icons/file-pen.js:
lucide-react/dist/esm/icons/file-plus-2.js:
lucide-react/dist/esm/icons/file-plus.js:
lucide-react/dist/esm/icons/file-question-mark.js:
lucide-react/dist/esm/icons/file-scan.js:
lucide-react/dist/esm/icons/file-search-2.js:
lucide-react/dist/esm/icons/file-search.js:
lucide-react/dist/esm/icons/file-sliders.js:
lucide-react/dist/esm/icons/file-spreadsheet.js:
lucide-react/dist/esm/icons/file-stack.js:
lucide-react/dist/esm/icons/file-symlink.js:
lucide-react/dist/esm/icons/file-terminal.js:
lucide-react/dist/esm/icons/file-text.js:
lucide-react/dist/esm/icons/file-type-2.js:
lucide-react/dist/esm/icons/file-type.js:
lucide-react/dist/esm/icons/file-up.js:
lucide-react/dist/esm/icons/file-video-2.js:
lucide-react/dist/esm/icons/file-user.js:
lucide-react/dist/esm/icons/file-video.js:
lucide-react/dist/esm/icons/file-volume-2.js:
lucide-react/dist/esm/icons/file-volume.js:
lucide-react/dist/esm/icons/file-warning.js:
lucide-react/dist/esm/icons/file-x-2.js:
lucide-react/dist/esm/icons/file-x.js:
lucide-react/dist/esm/icons/file.js:
lucide-react/dist/esm/icons/files.js:
lucide-react/dist/esm/icons/film.js:
lucide-react/dist/esm/icons/fingerprint.js:
lucide-react/dist/esm/icons/fire-extinguisher.js:
lucide-react/dist/esm/icons/fish-off.js:
lucide-react/dist/esm/icons/fish-symbol.js:
lucide-react/dist/esm/icons/fish.js:
lucide-react/dist/esm/icons/flag-off.js:
lucide-react/dist/esm/icons/flag-triangle-left.js:
lucide-react/dist/esm/icons/flag-triangle-right.js:
lucide-react/dist/esm/icons/flag.js:
lucide-react/dist/esm/icons/flame-kindling.js:
lucide-react/dist/esm/icons/flame.js:
lucide-react/dist/esm/icons/flashlight-off.js:
lucide-react/dist/esm/icons/flashlight.js:
lucide-react/dist/esm/icons/flask-conical-off.js:
lucide-react/dist/esm/icons/flask-conical.js:
lucide-react/dist/esm/icons/flask-round.js:
lucide-react/dist/esm/icons/flip-horizontal-2.js:
lucide-react/dist/esm/icons/flip-horizontal.js:
lucide-react/dist/esm/icons/flip-vertical-2.js:
lucide-react/dist/esm/icons/flip-vertical.js:
lucide-react/dist/esm/icons/flower-2.js:
lucide-react/dist/esm/icons/flower.js:
lucide-react/dist/esm/icons/focus.js:
lucide-react/dist/esm/icons/fold-horizontal.js:
lucide-react/dist/esm/icons/fold-vertical.js:
lucide-react/dist/esm/icons/folder-archive.js:
lucide-react/dist/esm/icons/folder-check.js:
lucide-react/dist/esm/icons/folder-clock.js:
lucide-react/dist/esm/icons/folder-closed.js:
lucide-react/dist/esm/icons/folder-code.js:
lucide-react/dist/esm/icons/folder-cog.js:
lucide-react/dist/esm/icons/folder-dot.js:
lucide-react/dist/esm/icons/folder-down.js:
lucide-react/dist/esm/icons/folder-git-2.js:
lucide-react/dist/esm/icons/folder-git.js:
lucide-react/dist/esm/icons/folder-heart.js:
lucide-react/dist/esm/icons/folder-input.js:
lucide-react/dist/esm/icons/folder-kanban.js:
lucide-react/dist/esm/icons/folder-key.js:
lucide-react/dist/esm/icons/folder-minus.js:
lucide-react/dist/esm/icons/folder-lock.js:
lucide-react/dist/esm/icons/folder-open-dot.js:
lucide-react/dist/esm/icons/folder-open.js:
lucide-react/dist/esm/icons/folder-output.js:
lucide-react/dist/esm/icons/folder-pen.js:
lucide-react/dist/esm/icons/folder-plus.js:
lucide-react/dist/esm/icons/folder-root.js:
lucide-react/dist/esm/icons/folder-search-2.js:
lucide-react/dist/esm/icons/folder-search.js:
lucide-react/dist/esm/icons/folder-symlink.js:
lucide-react/dist/esm/icons/folder-sync.js:
lucide-react/dist/esm/icons/folder-tree.js:
lucide-react/dist/esm/icons/folder-up.js:
lucide-react/dist/esm/icons/folder-x.js:
lucide-react/dist/esm/icons/folder.js:
lucide-react/dist/esm/icons/folders.js:
lucide-react/dist/esm/icons/footprints.js:
lucide-react/dist/esm/icons/forklift.js:
lucide-react/dist/esm/icons/forward.js:
lucide-react/dist/esm/icons/frame.js:
lucide-react/dist/esm/icons/framer.js:
lucide-react/dist/esm/icons/frown.js:
lucide-react/dist/esm/icons/fuel.js:
lucide-react/dist/esm/icons/fullscreen.js:
lucide-react/dist/esm/icons/funnel-plus.js:
lucide-react/dist/esm/icons/funnel-x.js:
lucide-react/dist/esm/icons/funnel.js:
lucide-react/dist/esm/icons/gallery-horizontal-end.js:
lucide-react/dist/esm/icons/gallery-horizontal.js:
lucide-react/dist/esm/icons/gallery-thumbnails.js:
lucide-react/dist/esm/icons/gallery-vertical-end.js:
lucide-react/dist/esm/icons/gallery-vertical.js:
lucide-react/dist/esm/icons/gamepad-2.js:
lucide-react/dist/esm/icons/gamepad.js:
lucide-react/dist/esm/icons/gauge.js:
lucide-react/dist/esm/icons/gavel.js:
lucide-react/dist/esm/icons/gem.js:
lucide-react/dist/esm/icons/georgian-lari.js:
lucide-react/dist/esm/icons/ghost.js:
lucide-react/dist/esm/icons/gift.js:
lucide-react/dist/esm/icons/git-branch-plus.js:
lucide-react/dist/esm/icons/git-branch.js:
lucide-react/dist/esm/icons/git-commit-horizontal.js:
lucide-react/dist/esm/icons/git-commit-vertical.js:
lucide-react/dist/esm/icons/git-compare-arrows.js:
lucide-react/dist/esm/icons/git-fork.js:
lucide-react/dist/esm/icons/git-compare.js:
lucide-react/dist/esm/icons/git-graph.js:
lucide-react/dist/esm/icons/git-merge.js:
lucide-react/dist/esm/icons/git-pull-request-arrow.js:
lucide-react/dist/esm/icons/git-pull-request-closed.js:
lucide-react/dist/esm/icons/git-pull-request-create-arrow.js:
lucide-react/dist/esm/icons/git-pull-request-create.js:
lucide-react/dist/esm/icons/git-pull-request-draft.js:
lucide-react/dist/esm/icons/git-pull-request.js:
lucide-react/dist/esm/icons/github.js:
lucide-react/dist/esm/icons/gitlab.js:
lucide-react/dist/esm/icons/glass-water.js:
lucide-react/dist/esm/icons/glasses.js:
lucide-react/dist/esm/icons/globe-lock.js:
lucide-react/dist/esm/icons/globe.js:
lucide-react/dist/esm/icons/goal.js:
lucide-react/dist/esm/icons/gpu.js:
lucide-react/dist/esm/icons/grab.js:
lucide-react/dist/esm/icons/graduation-cap.js:
lucide-react/dist/esm/icons/grape.js:
lucide-react/dist/esm/icons/grid-2x2-check.js:
lucide-react/dist/esm/icons/grid-2x2-plus.js:
lucide-react/dist/esm/icons/grid-2x2-x.js:
lucide-react/dist/esm/icons/grid-2x2.js:
lucide-react/dist/esm/icons/grid-3x2.js:
lucide-react/dist/esm/icons/grid-3x3.js:
lucide-react/dist/esm/icons/grip-horizontal.js:
lucide-react/dist/esm/icons/grip-vertical.js:
lucide-react/dist/esm/icons/grip.js:
lucide-react/dist/esm/icons/guitar.js:
lucide-react/dist/esm/icons/group.js:
lucide-react/dist/esm/icons/ham.js:
lucide-react/dist/esm/icons/hamburger.js:
lucide-react/dist/esm/icons/hammer.js:
lucide-react/dist/esm/icons/hand-coins.js:
lucide-react/dist/esm/icons/hand-heart.js:
lucide-react/dist/esm/icons/hand-helping.js:
lucide-react/dist/esm/icons/hand-metal.js:
lucide-react/dist/esm/icons/hand-platter.js:
lucide-react/dist/esm/icons/hand.js:
lucide-react/dist/esm/icons/handshake.js:
lucide-react/dist/esm/icons/hard-drive-download.js:
lucide-react/dist/esm/icons/hard-drive-upload.js:
lucide-react/dist/esm/icons/hard-drive.js:
lucide-react/dist/esm/icons/hard-hat.js:
lucide-react/dist/esm/icons/hash.js:
lucide-react/dist/esm/icons/haze.js:
lucide-react/dist/esm/icons/hdmi-port.js:
lucide-react/dist/esm/icons/heading-1.js:
lucide-react/dist/esm/icons/heading-2.js:
lucide-react/dist/esm/icons/heading-3.js:
lucide-react/dist/esm/icons/heading-4.js:
lucide-react/dist/esm/icons/heading-5.js:
lucide-react/dist/esm/icons/heading-6.js:
lucide-react/dist/esm/icons/heading.js:
lucide-react/dist/esm/icons/headphone-off.js:
lucide-react/dist/esm/icons/headphones.js:
lucide-react/dist/esm/icons/headset.js:
lucide-react/dist/esm/icons/heart-crack.js:
lucide-react/dist/esm/icons/heart-handshake.js:
lucide-react/dist/esm/icons/heart-off.js:
lucide-react/dist/esm/icons/heart-minus.js:
lucide-react/dist/esm/icons/heart-plus.js:
lucide-react/dist/esm/icons/heart-pulse.js:
lucide-react/dist/esm/icons/heart.js:
lucide-react/dist/esm/icons/heater.js:
lucide-react/dist/esm/icons/hexagon.js:
lucide-react/dist/esm/icons/highlighter.js:
lucide-react/dist/esm/icons/history.js:
lucide-react/dist/esm/icons/hop-off.js:
lucide-react/dist/esm/icons/hop.js:
lucide-react/dist/esm/icons/hospital.js:
lucide-react/dist/esm/icons/hotel.js:
lucide-react/dist/esm/icons/hourglass.js:
lucide-react/dist/esm/icons/house-plug.js:
lucide-react/dist/esm/icons/house-plus.js:
lucide-react/dist/esm/icons/house.js:
lucide-react/dist/esm/icons/house-wifi.js:
lucide-react/dist/esm/icons/ice-cream-bowl.js:
lucide-react/dist/esm/icons/ice-cream-cone.js:
lucide-react/dist/esm/icons/id-card-lanyard.js:
lucide-react/dist/esm/icons/id-card.js:
lucide-react/dist/esm/icons/image-down.js:
lucide-react/dist/esm/icons/image-minus.js:
lucide-react/dist/esm/icons/image-off.js:
lucide-react/dist/esm/icons/image-play.js:
lucide-react/dist/esm/icons/image-plus.js:
lucide-react/dist/esm/icons/image-up.js:
lucide-react/dist/esm/icons/image-upscale.js:
lucide-react/dist/esm/icons/image.js:
lucide-react/dist/esm/icons/images.js:
lucide-react/dist/esm/icons/import.js:
lucide-react/dist/esm/icons/inbox.js:
lucide-react/dist/esm/icons/indent-decrease.js:
lucide-react/dist/esm/icons/indent-increase.js:
lucide-react/dist/esm/icons/indian-rupee.js:
lucide-react/dist/esm/icons/infinity.js:
lucide-react/dist/esm/icons/info.js:
lucide-react/dist/esm/icons/instagram.js:
lucide-react/dist/esm/icons/inspection-panel.js:
lucide-react/dist/esm/icons/italic.js:
lucide-react/dist/esm/icons/iteration-ccw.js:
lucide-react/dist/esm/icons/iteration-cw.js:
lucide-react/dist/esm/icons/japanese-yen.js:
lucide-react/dist/esm/icons/joystick.js:
lucide-react/dist/esm/icons/kanban.js:
lucide-react/dist/esm/icons/key-round.js:
lucide-react/dist/esm/icons/key-square.js:
lucide-react/dist/esm/icons/key.js:
lucide-react/dist/esm/icons/keyboard-off.js:
lucide-react/dist/esm/icons/keyboard-music.js:
lucide-react/dist/esm/icons/lamp-ceiling.js:
lucide-react/dist/esm/icons/keyboard.js:
lucide-react/dist/esm/icons/lamp-desk.js:
lucide-react/dist/esm/icons/lamp-floor.js:
lucide-react/dist/esm/icons/lamp-wall-down.js:
lucide-react/dist/esm/icons/lamp-wall-up.js:
lucide-react/dist/esm/icons/lamp.js:
lucide-react/dist/esm/icons/land-plot.js:
lucide-react/dist/esm/icons/landmark.js:
lucide-react/dist/esm/icons/languages.js:
lucide-react/dist/esm/icons/laptop-minimal-check.js:
lucide-react/dist/esm/icons/laptop-minimal.js:
lucide-react/dist/esm/icons/laptop.js:
lucide-react/dist/esm/icons/lasso-select.js:
lucide-react/dist/esm/icons/lasso.js:
lucide-react/dist/esm/icons/layers-2.js:
lucide-react/dist/esm/icons/laugh.js:
lucide-react/dist/esm/icons/layers.js:
lucide-react/dist/esm/icons/layout-dashboard.js:
lucide-react/dist/esm/icons/layout-list.js:
lucide-react/dist/esm/icons/layout-grid.js:
lucide-react/dist/esm/icons/layout-panel-left.js:
lucide-react/dist/esm/icons/layout-panel-top.js:
lucide-react/dist/esm/icons/layout-template.js:
lucide-react/dist/esm/icons/leaf.js:
lucide-react/dist/esm/icons/leafy-green.js:
lucide-react/dist/esm/icons/lectern.js:
lucide-react/dist/esm/icons/letter-text.js:
lucide-react/dist/esm/icons/library-big.js:
lucide-react/dist/esm/icons/library.js:
lucide-react/dist/esm/icons/life-buoy.js:
lucide-react/dist/esm/icons/ligature.js:
lucide-react/dist/esm/icons/lightbulb.js:
lucide-react/dist/esm/icons/lightbulb-off.js:
lucide-react/dist/esm/icons/line-squiggle.js:
lucide-react/dist/esm/icons/link-2-off.js:
lucide-react/dist/esm/icons/link-2.js:
lucide-react/dist/esm/icons/link.js:
lucide-react/dist/esm/icons/list-check.js:
lucide-react/dist/esm/icons/linkedin.js:
lucide-react/dist/esm/icons/list-checks.js:
lucide-react/dist/esm/icons/list-collapse.js:
lucide-react/dist/esm/icons/list-end.js:
lucide-react/dist/esm/icons/list-filter-plus.js:
lucide-react/dist/esm/icons/list-filter.js:
lucide-react/dist/esm/icons/list-minus.js:
lucide-react/dist/esm/icons/list-music.js:
lucide-react/dist/esm/icons/list-ordered.js:
lucide-react/dist/esm/icons/list-plus.js:
lucide-react/dist/esm/icons/list-restart.js:
lucide-react/dist/esm/icons/list-start.js:
lucide-react/dist/esm/icons/list-todo.js:
lucide-react/dist/esm/icons/list-tree.js:
lucide-react/dist/esm/icons/list-video.js:
lucide-react/dist/esm/icons/list-x.js:
lucide-react/dist/esm/icons/list.js:
lucide-react/dist/esm/icons/loader-circle.js:
lucide-react/dist/esm/icons/loader-pinwheel.js:
lucide-react/dist/esm/icons/loader.js:
lucide-react/dist/esm/icons/locate-off.js:
lucide-react/dist/esm/icons/locate-fixed.js:
lucide-react/dist/esm/icons/locate.js:
lucide-react/dist/esm/icons/location-edit.js:
lucide-react/dist/esm/icons/lock-keyhole-open.js:
lucide-react/dist/esm/icons/lock-keyhole.js:
lucide-react/dist/esm/icons/lock-open.js:
lucide-react/dist/esm/icons/log-in.js:
lucide-react/dist/esm/icons/lock.js:
lucide-react/dist/esm/icons/log-out.js:
lucide-react/dist/esm/icons/logs.js:
lucide-react/dist/esm/icons/lollipop.js:
lucide-react/dist/esm/icons/luggage.js:
lucide-react/dist/esm/icons/magnet.js:
lucide-react/dist/esm/icons/mail-check.js:
lucide-react/dist/esm/icons/mail-minus.js:
lucide-react/dist/esm/icons/mail-open.js:
lucide-react/dist/esm/icons/mail-plus.js:
lucide-react/dist/esm/icons/mail-question-mark.js:
lucide-react/dist/esm/icons/mail-search.js:
lucide-react/dist/esm/icons/mail-warning.js:
lucide-react/dist/esm/icons/mail-x.js:
lucide-react/dist/esm/icons/mail.js:
lucide-react/dist/esm/icons/mailbox.js:
lucide-react/dist/esm/icons/mails.js:
lucide-react/dist/esm/icons/map-pin-check-inside.js:
lucide-react/dist/esm/icons/map-pin-check.js:
lucide-react/dist/esm/icons/map-pin-house.js:
lucide-react/dist/esm/icons/map-pin-minus-inside.js:
lucide-react/dist/esm/icons/map-pin-minus.js:
lucide-react/dist/esm/icons/map-pin-off.js:
lucide-react/dist/esm/icons/map-pin-plus-inside.js:
lucide-react/dist/esm/icons/map-pin-plus.js:
lucide-react/dist/esm/icons/map-pin-x-inside.js:
lucide-react/dist/esm/icons/map-pin-x.js:
lucide-react/dist/esm/icons/map-pin.js:
lucide-react/dist/esm/icons/map-pinned.js:
lucide-react/dist/esm/icons/map-plus.js:
lucide-react/dist/esm/icons/map.js:
lucide-react/dist/esm/icons/mars-stroke.js:
lucide-react/dist/esm/icons/mars.js:
lucide-react/dist/esm/icons/maximize-2.js:
lucide-react/dist/esm/icons/martini.js:
lucide-react/dist/esm/icons/maximize.js:
lucide-react/dist/esm/icons/medal.js:
lucide-react/dist/esm/icons/megaphone-off.js:
lucide-react/dist/esm/icons/megaphone.js:
lucide-react/dist/esm/icons/meh.js:
lucide-react/dist/esm/icons/memory-stick.js:
lucide-react/dist/esm/icons/menu.js:
lucide-react/dist/esm/icons/merge.js:
lucide-react/dist/esm/icons/message-circle-code.js:
lucide-react/dist/esm/icons/message-circle-heart.js:
lucide-react/dist/esm/icons/message-circle-dashed.js:
lucide-react/dist/esm/icons/message-circle-more.js:
lucide-react/dist/esm/icons/message-circle-off.js:
lucide-react/dist/esm/icons/message-circle-plus.js:
lucide-react/dist/esm/icons/message-circle-question-mark.js:
lucide-react/dist/esm/icons/message-circle-reply.js:
lucide-react/dist/esm/icons/message-circle-warning.js:
lucide-react/dist/esm/icons/message-circle-x.js:
lucide-react/dist/esm/icons/message-circle.js:
lucide-react/dist/esm/icons/message-square-code.js:
lucide-react/dist/esm/icons/message-square-dashed.js:
lucide-react/dist/esm/icons/message-square-diff.js:
lucide-react/dist/esm/icons/message-square-dot.js:
lucide-react/dist/esm/icons/message-square-heart.js:
lucide-react/dist/esm/icons/message-square-lock.js:
lucide-react/dist/esm/icons/message-square-more.js:
lucide-react/dist/esm/icons/message-square-off.js:
lucide-react/dist/esm/icons/message-square-plus.js:
lucide-react/dist/esm/icons/message-square-quote.js:
lucide-react/dist/esm/icons/message-square-reply.js:
lucide-react/dist/esm/icons/message-square-share.js:
lucide-react/dist/esm/icons/message-square-text.js:
lucide-react/dist/esm/icons/message-square-warning.js:
lucide-react/dist/esm/icons/message-square-x.js:
lucide-react/dist/esm/icons/message-square.js:
lucide-react/dist/esm/icons/messages-square.js:
lucide-react/dist/esm/icons/mic-off.js:
lucide-react/dist/esm/icons/mic-vocal.js:
lucide-react/dist/esm/icons/mic.js:
lucide-react/dist/esm/icons/microchip.js:
lucide-react/dist/esm/icons/microscope.js:
lucide-react/dist/esm/icons/microwave.js:
lucide-react/dist/esm/icons/milestone.js:
lucide-react/dist/esm/icons/milk-off.js:
lucide-react/dist/esm/icons/milk.js:
lucide-react/dist/esm/icons/minimize-2.js:
lucide-react/dist/esm/icons/minimize.js:
lucide-react/dist/esm/icons/minus.js:
lucide-react/dist/esm/icons/monitor-check.js:
lucide-react/dist/esm/icons/monitor-cog.js:
lucide-react/dist/esm/icons/monitor-dot.js:
lucide-react/dist/esm/icons/monitor-down.js:
lucide-react/dist/esm/icons/monitor-off.js:
lucide-react/dist/esm/icons/monitor-pause.js:
lucide-react/dist/esm/icons/monitor-play.js:
lucide-react/dist/esm/icons/monitor-smartphone.js:
lucide-react/dist/esm/icons/monitor-stop.js:
lucide-react/dist/esm/icons/monitor-up.js:
lucide-react/dist/esm/icons/monitor-speaker.js:
lucide-react/dist/esm/icons/monitor-x.js:
lucide-react/dist/esm/icons/monitor.js:
lucide-react/dist/esm/icons/moon-star.js:
lucide-react/dist/esm/icons/moon.js:
lucide-react/dist/esm/icons/mountain-snow.js:
lucide-react/dist/esm/icons/mountain.js:
lucide-react/dist/esm/icons/mouse-off.js:
lucide-react/dist/esm/icons/mouse-pointer-2.js:
lucide-react/dist/esm/icons/mouse-pointer-click.js:
lucide-react/dist/esm/icons/mouse-pointer-ban.js:
lucide-react/dist/esm/icons/mouse-pointer.js:
lucide-react/dist/esm/icons/mouse.js:
lucide-react/dist/esm/icons/move-3d.js:
lucide-react/dist/esm/icons/move-diagonal-2.js:
lucide-react/dist/esm/icons/move-diagonal.js:
lucide-react/dist/esm/icons/move-down-left.js:
lucide-react/dist/esm/icons/move-down-right.js:
lucide-react/dist/esm/icons/move-down.js:
lucide-react/dist/esm/icons/move-horizontal.js:
lucide-react/dist/esm/icons/move-left.js:
lucide-react/dist/esm/icons/move-up-left.js:
lucide-react/dist/esm/icons/move-right.js:
lucide-react/dist/esm/icons/move-up-right.js:
lucide-react/dist/esm/icons/move-up.js:
lucide-react/dist/esm/icons/move-vertical.js:
lucide-react/dist/esm/icons/move.js:
lucide-react/dist/esm/icons/music-2.js:
lucide-react/dist/esm/icons/music-3.js:
lucide-react/dist/esm/icons/music-4.js:
lucide-react/dist/esm/icons/music.js:
lucide-react/dist/esm/icons/navigation-2-off.js:
lucide-react/dist/esm/icons/navigation-2.js:
lucide-react/dist/esm/icons/navigation-off.js:
lucide-react/dist/esm/icons/navigation.js:
lucide-react/dist/esm/icons/network.js:
lucide-react/dist/esm/icons/newspaper.js:
lucide-react/dist/esm/icons/nfc.js:
lucide-react/dist/esm/icons/non-binary.js:
lucide-react/dist/esm/icons/notebook-pen.js:
lucide-react/dist/esm/icons/notebook-tabs.js:
lucide-react/dist/esm/icons/notebook-text.js:
lucide-react/dist/esm/icons/notebook.js:
lucide-react/dist/esm/icons/notepad-text-dashed.js:
lucide-react/dist/esm/icons/notepad-text.js:
lucide-react/dist/esm/icons/nut-off.js:
lucide-react/dist/esm/icons/nut.js:
lucide-react/dist/esm/icons/octagon-alert.js:
lucide-react/dist/esm/icons/octagon-minus.js:
lucide-react/dist/esm/icons/octagon-pause.js:
lucide-react/dist/esm/icons/octagon-x.js:
lucide-react/dist/esm/icons/octagon.js:
lucide-react/dist/esm/icons/omega.js:
lucide-react/dist/esm/icons/option.js:
lucide-react/dist/esm/icons/orbit.js:
lucide-react/dist/esm/icons/origami.js:
lucide-react/dist/esm/icons/package-2.js:
lucide-react/dist/esm/icons/package-check.js:
lucide-react/dist/esm/icons/package-minus.js:
lucide-react/dist/esm/icons/package-open.js:
lucide-react/dist/esm/icons/package-plus.js:
lucide-react/dist/esm/icons/package-search.js:
lucide-react/dist/esm/icons/package-x.js:
lucide-react/dist/esm/icons/package.js:
lucide-react/dist/esm/icons/paint-bucket.js:
lucide-react/dist/esm/icons/paint-roller.js:
lucide-react/dist/esm/icons/paintbrush-vertical.js:
lucide-react/dist/esm/icons/paintbrush.js:
lucide-react/dist/esm/icons/palette.js:
lucide-react/dist/esm/icons/panda.js:
lucide-react/dist/esm/icons/panel-bottom-close.js:
lucide-react/dist/esm/icons/panel-bottom-dashed.js:
lucide-react/dist/esm/icons/panel-bottom-open.js:
lucide-react/dist/esm/icons/panel-bottom.js:
lucide-react/dist/esm/icons/panel-left-dashed.js:
lucide-react/dist/esm/icons/panel-left-close.js:
lucide-react/dist/esm/icons/panel-left-open.js:
lucide-react/dist/esm/icons/panel-left.js:
lucide-react/dist/esm/icons/panel-right-close.js:
lucide-react/dist/esm/icons/panel-right-dashed.js:
lucide-react/dist/esm/icons/panel-right-open.js:
lucide-react/dist/esm/icons/panel-right.js:
lucide-react/dist/esm/icons/panel-top-close.js:
lucide-react/dist/esm/icons/panel-top-dashed.js:
lucide-react/dist/esm/icons/panel-top-open.js:
lucide-react/dist/esm/icons/panel-top.js:
lucide-react/dist/esm/icons/panels-left-bottom.js:
lucide-react/dist/esm/icons/panels-right-bottom.js:
lucide-react/dist/esm/icons/panels-top-left.js:
lucide-react/dist/esm/icons/paperclip.js:
lucide-react/dist/esm/icons/parentheses.js:
lucide-react/dist/esm/icons/parking-meter.js:
lucide-react/dist/esm/icons/party-popper.js:
lucide-react/dist/esm/icons/pause.js:
lucide-react/dist/esm/icons/paw-print.js:
lucide-react/dist/esm/icons/pc-case.js:
lucide-react/dist/esm/icons/pen-off.js:
lucide-react/dist/esm/icons/pen-line.js:
lucide-react/dist/esm/icons/pen-tool.js:
lucide-react/dist/esm/icons/pen.js:
lucide-react/dist/esm/icons/pencil-off.js:
lucide-react/dist/esm/icons/pencil-line.js:
lucide-react/dist/esm/icons/pencil-ruler.js:
lucide-react/dist/esm/icons/pencil.js:
lucide-react/dist/esm/icons/pentagon.js:
lucide-react/dist/esm/icons/percent.js:
lucide-react/dist/esm/icons/person-standing.js:
lucide-react/dist/esm/icons/philippine-peso.js:
lucide-react/dist/esm/icons/phone-call.js:
lucide-react/dist/esm/icons/phone-forwarded.js:
lucide-react/dist/esm/icons/phone-incoming.js:
lucide-react/dist/esm/icons/phone-missed.js:
lucide-react/dist/esm/icons/phone-off.js:
lucide-react/dist/esm/icons/phone-outgoing.js:
lucide-react/dist/esm/icons/phone.js:
lucide-react/dist/esm/icons/pi.js:
lucide-react/dist/esm/icons/piano.js:
lucide-react/dist/esm/icons/pickaxe.js:
lucide-react/dist/esm/icons/picture-in-picture-2.js:
lucide-react/dist/esm/icons/picture-in-picture.js:
lucide-react/dist/esm/icons/piggy-bank.js:
lucide-react/dist/esm/icons/pilcrow-left.js:
lucide-react/dist/esm/icons/pilcrow-right.js:
lucide-react/dist/esm/icons/pilcrow.js:
lucide-react/dist/esm/icons/pill-bottle.js:
lucide-react/dist/esm/icons/pill.js:
lucide-react/dist/esm/icons/pin-off.js:
lucide-react/dist/esm/icons/pin.js:
lucide-react/dist/esm/icons/pipette.js:
lucide-react/dist/esm/icons/pizza.js:
lucide-react/dist/esm/icons/plane-landing.js:
lucide-react/dist/esm/icons/plane-takeoff.js:
lucide-react/dist/esm/icons/plane.js:
lucide-react/dist/esm/icons/play.js:
lucide-react/dist/esm/icons/plug-2.js:
lucide-react/dist/esm/icons/plug-zap.js:
lucide-react/dist/esm/icons/plug.js:
lucide-react/dist/esm/icons/plus.js:
lucide-react/dist/esm/icons/pocket.js:
lucide-react/dist/esm/icons/pocket-knife.js:
lucide-react/dist/esm/icons/podcast.js:
lucide-react/dist/esm/icons/pointer-off.js:
lucide-react/dist/esm/icons/pointer.js:
lucide-react/dist/esm/icons/popcorn.js:
lucide-react/dist/esm/icons/popsicle.js:
lucide-react/dist/esm/icons/pound-sterling.js:
lucide-react/dist/esm/icons/power-off.js:
lucide-react/dist/esm/icons/power.js:
lucide-react/dist/esm/icons/presentation.js:
lucide-react/dist/esm/icons/printer-check.js:
lucide-react/dist/esm/icons/printer.js:
lucide-react/dist/esm/icons/projector.js:
lucide-react/dist/esm/icons/proportions.js:
lucide-react/dist/esm/icons/puzzle.js:
lucide-react/dist/esm/icons/pyramid.js:
lucide-react/dist/esm/icons/qr-code.js:
lucide-react/dist/esm/icons/quote.js:
lucide-react/dist/esm/icons/rabbit.js:
lucide-react/dist/esm/icons/radar.js:
lucide-react/dist/esm/icons/radical.js:
lucide-react/dist/esm/icons/radiation.js:
lucide-react/dist/esm/icons/radio-receiver.js:
lucide-react/dist/esm/icons/radio-tower.js:
lucide-react/dist/esm/icons/radius.js:
lucide-react/dist/esm/icons/radio.js:
lucide-react/dist/esm/icons/rail-symbol.js:
lucide-react/dist/esm/icons/rainbow.js:
lucide-react/dist/esm/icons/rat.js:
lucide-react/dist/esm/icons/ratio.js:
lucide-react/dist/esm/icons/receipt-euro.js:
lucide-react/dist/esm/icons/receipt-cent.js:
lucide-react/dist/esm/icons/receipt-indian-rupee.js:
lucide-react/dist/esm/icons/receipt-japanese-yen.js:
lucide-react/dist/esm/icons/receipt-pound-sterling.js:
lucide-react/dist/esm/icons/receipt-russian-ruble.js:
lucide-react/dist/esm/icons/receipt-swiss-franc.js:
lucide-react/dist/esm/icons/receipt-text.js:
lucide-react/dist/esm/icons/rectangle-circle.js:
lucide-react/dist/esm/icons/receipt.js:
lucide-react/dist/esm/icons/rectangle-ellipsis.js:
lucide-react/dist/esm/icons/rectangle-goggles.js:
lucide-react/dist/esm/icons/rectangle-horizontal.js:
lucide-react/dist/esm/icons/recycle.js:
lucide-react/dist/esm/icons/rectangle-vertical.js:
lucide-react/dist/esm/icons/redo-dot.js:
lucide-react/dist/esm/icons/redo-2.js:
lucide-react/dist/esm/icons/redo.js:
lucide-react/dist/esm/icons/refresh-ccw-dot.js:
lucide-react/dist/esm/icons/refresh-ccw.js:
lucide-react/dist/esm/icons/refresh-cw-off.js:
lucide-react/dist/esm/icons/refresh-cw.js:
lucide-react/dist/esm/icons/refrigerator.js:
lucide-react/dist/esm/icons/regex.js:
lucide-react/dist/esm/icons/remove-formatting.js:
lucide-react/dist/esm/icons/repeat-2.js:
lucide-react/dist/esm/icons/repeat.js:
lucide-react/dist/esm/icons/repeat-1.js:
lucide-react/dist/esm/icons/replace-all.js:
lucide-react/dist/esm/icons/replace.js:
lucide-react/dist/esm/icons/reply-all.js:
lucide-react/dist/esm/icons/reply.js:
lucide-react/dist/esm/icons/rewind.js:
lucide-react/dist/esm/icons/ribbon.js:
lucide-react/dist/esm/icons/rocket.js:
lucide-react/dist/esm/icons/rocking-chair.js:
lucide-react/dist/esm/icons/roller-coaster.js:
lucide-react/dist/esm/icons/rotate-3d.js:
lucide-react/dist/esm/icons/rotate-ccw-key.js:
lucide-react/dist/esm/icons/rotate-ccw-square.js:
lucide-react/dist/esm/icons/rotate-ccw.js:
lucide-react/dist/esm/icons/rotate-cw-square.js:
lucide-react/dist/esm/icons/rotate-cw.js:
lucide-react/dist/esm/icons/route-off.js:
lucide-react/dist/esm/icons/route.js:
lucide-react/dist/esm/icons/router.js:
lucide-react/dist/esm/icons/rows-2.js:
lucide-react/dist/esm/icons/rows-3.js:
lucide-react/dist/esm/icons/rows-4.js:
lucide-react/dist/esm/icons/rss.js:
lucide-react/dist/esm/icons/ruler-dimension-line.js:
lucide-react/dist/esm/icons/ruler.js:
lucide-react/dist/esm/icons/russian-ruble.js:
lucide-react/dist/esm/icons/sailboat.js:
lucide-react/dist/esm/icons/salad.js:
lucide-react/dist/esm/icons/sandwich.js:
lucide-react/dist/esm/icons/satellite-dish.js:
lucide-react/dist/esm/icons/satellite.js:
lucide-react/dist/esm/icons/saudi-riyal.js:
lucide-react/dist/esm/icons/save-all.js:
lucide-react/dist/esm/icons/save-off.js:
lucide-react/dist/esm/icons/save.js:
lucide-react/dist/esm/icons/scale-3d.js:
lucide-react/dist/esm/icons/scale.js:
lucide-react/dist/esm/icons/scaling.js:
lucide-react/dist/esm/icons/scan-barcode.js:
lucide-react/dist/esm/icons/scan-eye.js:
lucide-react/dist/esm/icons/scan-face.js:
lucide-react/dist/esm/icons/scan-heart.js:
lucide-react/dist/esm/icons/scan-line.js:
lucide-react/dist/esm/icons/scan-qr-code.js:
lucide-react/dist/esm/icons/scan-search.js:
lucide-react/dist/esm/icons/scan-text.js:
lucide-react/dist/esm/icons/scan.js:
lucide-react/dist/esm/icons/school.js:
lucide-react/dist/esm/icons/scissors-line-dashed.js:
lucide-react/dist/esm/icons/scissors.js:
lucide-react/dist/esm/icons/screen-share-off.js:
lucide-react/dist/esm/icons/screen-share.js:
lucide-react/dist/esm/icons/scroll-text.js:
lucide-react/dist/esm/icons/scroll.js:
lucide-react/dist/esm/icons/search-check.js:
lucide-react/dist/esm/icons/search-code.js:
lucide-react/dist/esm/icons/search-slash.js:
lucide-react/dist/esm/icons/search-x.js:
lucide-react/dist/esm/icons/search.js:
lucide-react/dist/esm/icons/section.js:
lucide-react/dist/esm/icons/send-horizontal.js:
lucide-react/dist/esm/icons/send-to-back.js:
lucide-react/dist/esm/icons/send.js:
lucide-react/dist/esm/icons/separator-horizontal.js:
lucide-react/dist/esm/icons/separator-vertical.js:
lucide-react/dist/esm/icons/server-cog.js:
lucide-react/dist/esm/icons/server-crash.js:
lucide-react/dist/esm/icons/server-off.js:
lucide-react/dist/esm/icons/server.js:
lucide-react/dist/esm/icons/settings-2.js:
lucide-react/dist/esm/icons/settings.js:
lucide-react/dist/esm/icons/shapes.js:
lucide-react/dist/esm/icons/share-2.js:
lucide-react/dist/esm/icons/share.js:
lucide-react/dist/esm/icons/sheet.js:
lucide-react/dist/esm/icons/shell.js:
lucide-react/dist/esm/icons/shield-alert.js:
lucide-react/dist/esm/icons/shield-ban.js:
lucide-react/dist/esm/icons/shield-check.js:
lucide-react/dist/esm/icons/shield-half.js:
lucide-react/dist/esm/icons/shield-ellipsis.js:
lucide-react/dist/esm/icons/shield-minus.js:
lucide-react/dist/esm/icons/shield-off.js:
lucide-react/dist/esm/icons/shield-plus.js:
lucide-react/dist/esm/icons/shield-user.js:
lucide-react/dist/esm/icons/shield-question-mark.js:
lucide-react/dist/esm/icons/shield-x.js:
lucide-react/dist/esm/icons/shield.js:
lucide-react/dist/esm/icons/ship-wheel.js:
lucide-react/dist/esm/icons/ship.js:
lucide-react/dist/esm/icons/shirt.js:
lucide-react/dist/esm/icons/shopping-bag.js:
lucide-react/dist/esm/icons/shopping-basket.js:
lucide-react/dist/esm/icons/shopping-cart.js:
lucide-react/dist/esm/icons/shovel.js:
lucide-react/dist/esm/icons/shower-head.js:
lucide-react/dist/esm/icons/shredder.js:
lucide-react/dist/esm/icons/shrimp.js:
lucide-react/dist/esm/icons/shrink.js:
lucide-react/dist/esm/icons/shrub.js:
lucide-react/dist/esm/icons/shuffle.js:
lucide-react/dist/esm/icons/sigma.js:
lucide-react/dist/esm/icons/signal-high.js:
lucide-react/dist/esm/icons/signal-low.js:
lucide-react/dist/esm/icons/signal-medium.js:
lucide-react/dist/esm/icons/signal-zero.js:
lucide-react/dist/esm/icons/signal.js:
lucide-react/dist/esm/icons/signature.js:
lucide-react/dist/esm/icons/signpost-big.js:
lucide-react/dist/esm/icons/siren.js:
lucide-react/dist/esm/icons/signpost.js:
lucide-react/dist/esm/icons/skip-back.js:
lucide-react/dist/esm/icons/skull.js:
lucide-react/dist/esm/icons/skip-forward.js:
lucide-react/dist/esm/icons/slack.js:
lucide-react/dist/esm/icons/slash.js:
lucide-react/dist/esm/icons/slice.js:
lucide-react/dist/esm/icons/sliders-horizontal.js:
lucide-react/dist/esm/icons/sliders-vertical.js:
lucide-react/dist/esm/icons/smartphone-charging.js:
lucide-react/dist/esm/icons/smartphone-nfc.js:
lucide-react/dist/esm/icons/smartphone.js:
lucide-react/dist/esm/icons/smile-plus.js:
lucide-react/dist/esm/icons/smile.js:
lucide-react/dist/esm/icons/snail.js:
lucide-react/dist/esm/icons/snowflake.js:
lucide-react/dist/esm/icons/sofa.js:
lucide-react/dist/esm/icons/soap-dispenser-droplet.js:
lucide-react/dist/esm/icons/soup.js:
lucide-react/dist/esm/icons/space.js:
lucide-react/dist/esm/icons/spade.js:
lucide-react/dist/esm/icons/sparkle.js:
lucide-react/dist/esm/icons/sparkles.js:
lucide-react/dist/esm/icons/speaker.js:
lucide-react/dist/esm/icons/speech.js:
lucide-react/dist/esm/icons/spell-check-2.js:
lucide-react/dist/esm/icons/spell-check.js:
lucide-react/dist/esm/icons/spline-pointer.js:
lucide-react/dist/esm/icons/spline.js:
lucide-react/dist/esm/icons/split.js:
lucide-react/dist/esm/icons/spool.js:
lucide-react/dist/esm/icons/spray-can.js:
lucide-react/dist/esm/icons/sprout.js:
lucide-react/dist/esm/icons/square-activity.js:
lucide-react/dist/esm/icons/square-arrow-down-left.js:
lucide-react/dist/esm/icons/square-arrow-down-right.js:
lucide-react/dist/esm/icons/square-arrow-down.js:
lucide-react/dist/esm/icons/square-arrow-left.js:
lucide-react/dist/esm/icons/square-arrow-out-down-left.js:
lucide-react/dist/esm/icons/square-arrow-out-down-right.js:
lucide-react/dist/esm/icons/square-arrow-out-up-right.js:
lucide-react/dist/esm/icons/square-arrow-right.js:
lucide-react/dist/esm/icons/square-arrow-out-up-left.js:
lucide-react/dist/esm/icons/square-arrow-up-left.js:
lucide-react/dist/esm/icons/square-arrow-up-right.js:
lucide-react/dist/esm/icons/square-arrow-up.js:
lucide-react/dist/esm/icons/square-asterisk.js:
lucide-react/dist/esm/icons/square-bottom-dashed-scissors.js:
lucide-react/dist/esm/icons/square-chart-gantt.js:
lucide-react/dist/esm/icons/square-check-big.js:
lucide-react/dist/esm/icons/square-check.js:
lucide-react/dist/esm/icons/square-chevron-down.js:
lucide-react/dist/esm/icons/square-chevron-left.js:
lucide-react/dist/esm/icons/square-chevron-right.js:
lucide-react/dist/esm/icons/square-chevron-up.js:
lucide-react/dist/esm/icons/square-code.js:
lucide-react/dist/esm/icons/square-dashed-bottom-code.js:
lucide-react/dist/esm/icons/square-dashed-bottom.js:
lucide-react/dist/esm/icons/square-dashed-kanban.js:
lucide-react/dist/esm/icons/square-dashed-mouse-pointer.js:
lucide-react/dist/esm/icons/square-dashed-top-solid.js:
lucide-react/dist/esm/icons/square-dashed.js:
lucide-react/dist/esm/icons/square-divide.js:
lucide-react/dist/esm/icons/square-dot.js:
lucide-react/dist/esm/icons/square-equal.js:
lucide-react/dist/esm/icons/square-function.js:
lucide-react/dist/esm/icons/square-kanban.js:
lucide-react/dist/esm/icons/square-library.js:
lucide-react/dist/esm/icons/square-m.js:
lucide-react/dist/esm/icons/square-menu.js:
lucide-react/dist/esm/icons/square-minus.js:
lucide-react/dist/esm/icons/square-mouse-pointer.js:
lucide-react/dist/esm/icons/square-parking-off.js:
lucide-react/dist/esm/icons/square-parking.js:
lucide-react/dist/esm/icons/square-pen.js:
lucide-react/dist/esm/icons/square-percent.js:
lucide-react/dist/esm/icons/square-pi.js:
lucide-react/dist/esm/icons/square-pilcrow.js:
lucide-react/dist/esm/icons/square-play.js:
lucide-react/dist/esm/icons/square-plus.js:
lucide-react/dist/esm/icons/square-power.js:
lucide-react/dist/esm/icons/square-radical.js:
lucide-react/dist/esm/icons/square-round-corner.js:
lucide-react/dist/esm/icons/square-scissors.js:
lucide-react/dist/esm/icons/square-sigma.js:
lucide-react/dist/esm/icons/square-slash.js:
lucide-react/dist/esm/icons/square-split-horizontal.js:
lucide-react/dist/esm/icons/square-split-vertical.js:
lucide-react/dist/esm/icons/square-square.js:
lucide-react/dist/esm/icons/square-stack.js:
lucide-react/dist/esm/icons/square-terminal.js:
lucide-react/dist/esm/icons/square-user-round.js:
lucide-react/dist/esm/icons/square-user.js:
lucide-react/dist/esm/icons/square-x.js:
lucide-react/dist/esm/icons/square.js:
lucide-react/dist/esm/icons/squares-exclude.js:
lucide-react/dist/esm/icons/squares-intersect.js:
lucide-react/dist/esm/icons/squares-subtract.js:
lucide-react/dist/esm/icons/squares-unite.js:
lucide-react/dist/esm/icons/squircle-dashed.js:
lucide-react/dist/esm/icons/squircle.js:
lucide-react/dist/esm/icons/squirrel.js:
lucide-react/dist/esm/icons/stamp.js:
lucide-react/dist/esm/icons/star-half.js:
lucide-react/dist/esm/icons/star-off.js:
lucide-react/dist/esm/icons/star.js:
lucide-react/dist/esm/icons/step-back.js:
lucide-react/dist/esm/icons/step-forward.js:
lucide-react/dist/esm/icons/stethoscope.js:
lucide-react/dist/esm/icons/sticker.js:
lucide-react/dist/esm/icons/sticky-note.js:
lucide-react/dist/esm/icons/store.js:
lucide-react/dist/esm/icons/stretch-horizontal.js:
lucide-react/dist/esm/icons/stretch-vertical.js:
lucide-react/dist/esm/icons/strikethrough.js:
lucide-react/dist/esm/icons/subscript.js:
lucide-react/dist/esm/icons/sun-dim.js:
lucide-react/dist/esm/icons/sun-medium.js:
lucide-react/dist/esm/icons/sun-moon.js:
lucide-react/dist/esm/icons/sun-snow.js:
lucide-react/dist/esm/icons/sun.js:
lucide-react/dist/esm/icons/sunrise.js:
lucide-react/dist/esm/icons/superscript.js:
lucide-react/dist/esm/icons/sunset.js:
lucide-react/dist/esm/icons/swatch-book.js:
lucide-react/dist/esm/icons/swiss-franc.js:
lucide-react/dist/esm/icons/switch-camera.js:
lucide-react/dist/esm/icons/sword.js:
lucide-react/dist/esm/icons/swords.js:
lucide-react/dist/esm/icons/syringe.js:
lucide-react/dist/esm/icons/table-2.js:
lucide-react/dist/esm/icons/table-cells-merge.js:
lucide-react/dist/esm/icons/table-cells-split.js:
lucide-react/dist/esm/icons/table-columns-split.js:
lucide-react/dist/esm/icons/table-of-contents.js:
lucide-react/dist/esm/icons/table-properties.js:
lucide-react/dist/esm/icons/table-rows-split.js:
lucide-react/dist/esm/icons/table.js:
lucide-react/dist/esm/icons/tablet-smartphone.js:
lucide-react/dist/esm/icons/tablet.js:
lucide-react/dist/esm/icons/tablets.js:
lucide-react/dist/esm/icons/tag.js:
lucide-react/dist/esm/icons/tags.js:
lucide-react/dist/esm/icons/tally-1.js:
lucide-react/dist/esm/icons/tally-2.js:
lucide-react/dist/esm/icons/tally-3.js:
lucide-react/dist/esm/icons/tally-4.js:
lucide-react/dist/esm/icons/tally-5.js:
lucide-react/dist/esm/icons/tangent.js:
lucide-react/dist/esm/icons/target.js:
lucide-react/dist/esm/icons/telescope.js:
lucide-react/dist/esm/icons/tent-tree.js:
lucide-react/dist/esm/icons/tent.js:
lucide-react/dist/esm/icons/terminal.js:
lucide-react/dist/esm/icons/test-tube-diagonal.js:
lucide-react/dist/esm/icons/test-tube.js:
lucide-react/dist/esm/icons/test-tubes.js:
lucide-react/dist/esm/icons/text-cursor-input.js:
lucide-react/dist/esm/icons/text-quote.js:
lucide-react/dist/esm/icons/text-cursor.js:
lucide-react/dist/esm/icons/text-search.js:
lucide-react/dist/esm/icons/text-select.js:
lucide-react/dist/esm/icons/text.js:
lucide-react/dist/esm/icons/theater.js:
lucide-react/dist/esm/icons/thermometer-snowflake.js:
lucide-react/dist/esm/icons/thermometer-sun.js:
lucide-react/dist/esm/icons/thermometer.js:
lucide-react/dist/esm/icons/thumbs-down.js:
lucide-react/dist/esm/icons/thumbs-up.js:
lucide-react/dist/esm/icons/ticket-check.js:
lucide-react/dist/esm/icons/ticket-minus.js:
lucide-react/dist/esm/icons/ticket-percent.js:
lucide-react/dist/esm/icons/ticket-plus.js:
lucide-react/dist/esm/icons/ticket-slash.js:
lucide-react/dist/esm/icons/ticket-x.js:
lucide-react/dist/esm/icons/ticket.js:
lucide-react/dist/esm/icons/tickets-plane.js:
lucide-react/dist/esm/icons/tickets.js:
lucide-react/dist/esm/icons/timer-off.js:
lucide-react/dist/esm/icons/timer-reset.js:
lucide-react/dist/esm/icons/timer.js:
lucide-react/dist/esm/icons/toggle-left.js:
lucide-react/dist/esm/icons/toggle-right.js:
lucide-react/dist/esm/icons/toilet.js:
lucide-react/dist/esm/icons/tool-case.js:
lucide-react/dist/esm/icons/tornado.js:
lucide-react/dist/esm/icons/torus.js:
lucide-react/dist/esm/icons/touchpad.js:
lucide-react/dist/esm/icons/touchpad-off.js:
lucide-react/dist/esm/icons/tower-control.js:
lucide-react/dist/esm/icons/toy-brick.js:
lucide-react/dist/esm/icons/tractor.js:
lucide-react/dist/esm/icons/traffic-cone.js:
lucide-react/dist/esm/icons/train-front-tunnel.js:
lucide-react/dist/esm/icons/train-front.js:
lucide-react/dist/esm/icons/train-track.js:
lucide-react/dist/esm/icons/tram-front.js:
lucide-react/dist/esm/icons/transgender.js:
lucide-react/dist/esm/icons/trash-2.js:
lucide-react/dist/esm/icons/trash.js:
lucide-react/dist/esm/icons/tree-deciduous.js:
lucide-react/dist/esm/icons/tree-palm.js:
lucide-react/dist/esm/icons/tree-pine.js:
lucide-react/dist/esm/icons/trees.js:
lucide-react/dist/esm/icons/trending-down.js:
lucide-react/dist/esm/icons/trello.js:
lucide-react/dist/esm/icons/trending-up-down.js:
lucide-react/dist/esm/icons/trending-up.js:
lucide-react/dist/esm/icons/triangle-alert.js:
lucide-react/dist/esm/icons/triangle-dashed.js:
lucide-react/dist/esm/icons/triangle-right.js:
lucide-react/dist/esm/icons/triangle.js:
lucide-react/dist/esm/icons/trophy.js:
lucide-react/dist/esm/icons/truck-electric.js:
lucide-react/dist/esm/icons/truck.js:
lucide-react/dist/esm/icons/turtle.js:
lucide-react/dist/esm/icons/tv-minimal.js:
lucide-react/dist/esm/icons/tv-minimal-play.js:
lucide-react/dist/esm/icons/tv.js:
lucide-react/dist/esm/icons/twitch.js:
lucide-react/dist/esm/icons/twitter.js:
lucide-react/dist/esm/icons/type.js:
lucide-react/dist/esm/icons/type-outline.js:
lucide-react/dist/esm/icons/umbrella-off.js:
lucide-react/dist/esm/icons/umbrella.js:
lucide-react/dist/esm/icons/underline.js:
lucide-react/dist/esm/icons/undo-2.js:
lucide-react/dist/esm/icons/undo-dot.js:
lucide-react/dist/esm/icons/undo.js:
lucide-react/dist/esm/icons/unfold-horizontal.js:
lucide-react/dist/esm/icons/unfold-vertical.js:
lucide-react/dist/esm/icons/ungroup.js:
lucide-react/dist/esm/icons/university.js:
lucide-react/dist/esm/icons/unlink-2.js:
lucide-react/dist/esm/icons/unlink.js:
lucide-react/dist/esm/icons/unplug.js:
lucide-react/dist/esm/icons/upload.js:
lucide-react/dist/esm/icons/usb.js:
lucide-react/dist/esm/icons/user-check.js:
lucide-react/dist/esm/icons/user-cog.js:
lucide-react/dist/esm/icons/user-lock.js:
lucide-react/dist/esm/icons/user-minus.js:
lucide-react/dist/esm/icons/user-pen.js:
lucide-react/dist/esm/icons/user-plus.js:
lucide-react/dist/esm/icons/user-round-check.js:
lucide-react/dist/esm/icons/user-round-cog.js:
lucide-react/dist/esm/icons/user-round-minus.js:
lucide-react/dist/esm/icons/user-round-pen.js:
lucide-react/dist/esm/icons/user-round-plus.js:
lucide-react/dist/esm/icons/user-round-search.js:
lucide-react/dist/esm/icons/user-round-x.js:
lucide-react/dist/esm/icons/user-round.js:
lucide-react/dist/esm/icons/user-search.js:
lucide-react/dist/esm/icons/user-x.js:
lucide-react/dist/esm/icons/user.js:
lucide-react/dist/esm/icons/users-round.js:
lucide-react/dist/esm/icons/users.js:
lucide-react/dist/esm/icons/utensils-crossed.js:
lucide-react/dist/esm/icons/utensils.js:
lucide-react/dist/esm/icons/variable.js:
lucide-react/dist/esm/icons/utility-pole.js:
lucide-react/dist/esm/icons/vault.js:
lucide-react/dist/esm/icons/vector-square.js:
lucide-react/dist/esm/icons/vegan.js:
lucide-react/dist/esm/icons/venetian-mask.js:
lucide-react/dist/esm/icons/venus-and-mars.js:
lucide-react/dist/esm/icons/venus.js:
lucide-react/dist/esm/icons/vibrate-off.js:
lucide-react/dist/esm/icons/vibrate.js:
lucide-react/dist/esm/icons/video-off.js:
lucide-react/dist/esm/icons/video.js:
lucide-react/dist/esm/icons/videotape.js:
lucide-react/dist/esm/icons/view.js:
lucide-react/dist/esm/icons/voicemail.js:
lucide-react/dist/esm/icons/volleyball.js:
lucide-react/dist/esm/icons/volume-1.js:
lucide-react/dist/esm/icons/volume-2.js:
lucide-react/dist/esm/icons/volume-off.js:
lucide-react/dist/esm/icons/volume-x.js:
lucide-react/dist/esm/icons/volume.js:
lucide-react/dist/esm/icons/vote.js:
lucide-react/dist/esm/icons/wallet-cards.js:
lucide-react/dist/esm/icons/wallet-minimal.js:
lucide-react/dist/esm/icons/wallet.js:
lucide-react/dist/esm/icons/wallpaper.js:
lucide-react/dist/esm/icons/wand-sparkles.js:
lucide-react/dist/esm/icons/wand.js:
lucide-react/dist/esm/icons/warehouse.js:
lucide-react/dist/esm/icons/washing-machine.js:
lucide-react/dist/esm/icons/watch.js:
lucide-react/dist/esm/icons/waves-ladder.js:
lucide-react/dist/esm/icons/waves.js:
lucide-react/dist/esm/icons/waypoints.js:
lucide-react/dist/esm/icons/webcam.js:
lucide-react/dist/esm/icons/webhook-off.js:
lucide-react/dist/esm/icons/webhook.js:
lucide-react/dist/esm/icons/weight.js:
lucide-react/dist/esm/icons/wheat-off.js:
lucide-react/dist/esm/icons/wheat.js:
lucide-react/dist/esm/icons/whole-word.js:
lucide-react/dist/esm/icons/wifi-cog.js:
lucide-react/dist/esm/icons/wifi-high.js:
lucide-react/dist/esm/icons/wifi-low.js:
lucide-react/dist/esm/icons/wifi-off.js:
lucide-react/dist/esm/icons/wifi-pen.js:
lucide-react/dist/esm/icons/wifi-zero.js:
lucide-react/dist/esm/icons/wifi.js:
lucide-react/dist/esm/icons/wind-arrow-down.js:
lucide-react/dist/esm/icons/wine-off.js:
lucide-react/dist/esm/icons/wind.js:
lucide-react/dist/esm/icons/wine.js:
lucide-react/dist/esm/icons/workflow.js:
lucide-react/dist/esm/icons/worm.js:
lucide-react/dist/esm/icons/wrap-text.js:
lucide-react/dist/esm/icons/wrench.js:
lucide-react/dist/esm/icons/x.js:
lucide-react/dist/esm/icons/youtube.js:
lucide-react/dist/esm/icons/zap-off.js:
lucide-react/dist/esm/icons/zap.js:
lucide-react/dist/esm/icons/zoom-in.js:
lucide-react/dist/esm/icons/zoom-out.js:
lucide-react/dist/esm/icons/index.js:
lucide-react/dist/esm/lucide-react.js:
(**
* @license lucide-react v0.525.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*)
*/
//# sourceMappingURL=@blocknote_shadcn.js.map