lucide
Version:
A Lucide icon library package for web and javascript applications.
1,795 lines (1,580 loc) • 510 kB
JavaScript
/**
* @license lucide 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.
*/
'use strict';
const defaultAttributes = {
xmlns: "http://www.w3.org/2000/svg",
width: 24,
height: 24,
viewBox: "0 0 24 24",
fill: "none",
stroke: "currentColor",
"stroke-width": 2,
"stroke-linecap": "round",
"stroke-linejoin": "round"
};
const createSVGElement = ([tag, attrs, children]) => {
const element = document.createElementNS("http://www.w3.org/2000/svg", tag);
Object.keys(attrs).forEach((name) => {
element.setAttribute(name, String(attrs[name]));
});
if (children?.length) {
children.forEach((child) => {
const childElement = createSVGElement(child);
element.appendChild(childElement);
});
}
return element;
};
const createElement = (iconNode, customAttrs = {}) => {
const tag = "svg";
const attrs = {
...defaultAttributes,
...customAttrs
};
return createSVGElement([tag, attrs, iconNode]);
};
const getAttrs = (element) => Array.from(element.attributes).reduce((attrs, attr) => {
attrs[attr.name] = attr.value;
return attrs;
}, {});
const getClassNames = (attrs) => {
if (typeof attrs === "string") return attrs;
if (!attrs || !attrs.class) return "";
if (attrs.class && typeof attrs.class === "string") {
return attrs.class.split(" ");
}
if (attrs.class && Array.isArray(attrs.class)) {
return attrs.class;
}
return "";
};
const combineClassNames = (arrayOfClassnames) => {
const classNameArray = arrayOfClassnames.flatMap(getClassNames);
return classNameArray.map((classItem) => classItem.trim()).filter(Boolean).filter((value, index, self) => self.indexOf(value) === index).join(" ");
};
const toPascalCase = (string) => string.replace(/(\w)(\w*)(_|-|\s*)/g, (g0, g1, g2) => g1.toUpperCase() + g2.toLowerCase());
const replaceElement = (element, { nameAttr, icons, attrs }) => {
const iconName = element.getAttribute(nameAttr);
if (iconName == null) return;
const ComponentName = toPascalCase(iconName);
const iconNode = icons[ComponentName];
if (!iconNode) {
return console.warn(
`${element.outerHTML} icon name was not found in the provided icons object.`
);
}
const elementAttrs = getAttrs(element);
const iconAttrs = {
...defaultAttributes,
"data-lucide": iconName,
...attrs,
...elementAttrs
};
const classNames = combineClassNames(["lucide", `lucide-${iconName}`, elementAttrs, attrs]);
if (classNames) {
Object.assign(iconAttrs, {
class: classNames
});
}
const svgElement = createElement(iconNode, iconAttrs);
return element.parentNode?.replaceChild(svgElement, element);
};
const AArrowDown = [
["path", { d: "M3.5 13h6" }],
["path", { d: "m2 16 4.5-9 4.5 9" }],
["path", { d: "M18 7v9" }],
["path", { d: "m14 12 4 4 4-4" }]
];
const ALargeSmall = [
["path", { d: "M21 14h-5" }],
["path", { d: "M16 16v-3.5a2.5 2.5 0 0 1 5 0V16" }],
["path", { d: "M4.5 13h6" }],
["path", { d: "m3 16 4.5-9 4.5 9" }]
];
const AArrowUp = [
["path", { d: "M3.5 13h6" }],
["path", { d: "m2 16 4.5-9 4.5 9" }],
["path", { d: "M18 16V7" }],
["path", { d: "m14 11 4-4 4 4" }]
];
const Accessibility = [
["circle", { cx: "16", cy: "4", r: "1" }],
["path", { d: "m18 19 1-7-6 1" }],
["path", { d: "m5 8 3-3 5.5 3-2.36 3.5" }],
["path", { d: "M4.24 14.5a5 5 0 0 0 6.88 6" }],
["path", { d: "M13.76 17.5a5 5 0 0 0-6.88-6" }]
];
const Activity = [
[
"path",
{
d: "M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"
}
]
];
const AirVent = [
["path", { d: "M18 17.5a2.5 2.5 0 1 1-4 2.03V12" }],
["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" }],
["path", { d: "M6 8h12" }],
["path", { d: "M6.6 15.572A2 2 0 1 0 10 17v-5" }]
];
const Airplay = [
["path", { d: "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1" }],
["path", { d: "m12 15 5 6H7Z" }]
];
const AlarmClockCheck = [
["circle", { cx: "12", cy: "13", r: "8" }],
["path", { d: "M5 3 2 6" }],
["path", { d: "m22 6-3-3" }],
["path", { d: "M6.38 18.7 4 21" }],
["path", { d: "M17.64 18.67 20 21" }],
["path", { d: "m9 13 2 2 4-4" }]
];
const AlarmClockMinus = [
["circle", { cx: "12", cy: "13", r: "8" }],
["path", { d: "M5 3 2 6" }],
["path", { d: "m22 6-3-3" }],
["path", { d: "M6.38 18.7 4 21" }],
["path", { d: "M17.64 18.67 20 21" }],
["path", { d: "M9 13h6" }]
];
const AlarmClockOff = [
["path", { d: "M6.87 6.87a8 8 0 1 0 11.26 11.26" }],
["path", { d: "M19.9 14.25a8 8 0 0 0-9.15-9.15" }],
["path", { d: "m22 6-3-3" }],
["path", { d: "M6.26 18.67 4 21" }],
["path", { d: "m2 2 20 20" }],
["path", { d: "M4 4 2 6" }]
];
const AlarmClockPlus = [
["circle", { cx: "12", cy: "13", r: "8" }],
["path", { d: "M5 3 2 6" }],
["path", { d: "m22 6-3-3" }],
["path", { d: "M6.38 18.7 4 21" }],
["path", { d: "M17.64 18.67 20 21" }],
["path", { d: "M12 10v6" }],
["path", { d: "M9 13h6" }]
];
const AlarmClock = [
["circle", { cx: "12", cy: "13", r: "8" }],
["path", { d: "M12 9v4l2 2" }],
["path", { d: "M5 3 2 6" }],
["path", { d: "m22 6-3-3" }],
["path", { d: "M6.38 18.7 4 21" }],
["path", { d: "M17.64 18.67 20 21" }]
];
const AlarmSmoke = [
["path", { d: "M11 21c0-2.5 2-2.5 2-5" }],
["path", { d: "M16 21c0-2.5 2-2.5 2-5" }],
["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" }],
["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" }],
["path", { d: "M6 21c0-2.5 2-2.5 2-5" }]
];
const Album = [
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }],
["polyline", { points: "11 3 11 11 14 8 17 11 17 3" }]
];
const AlignCenterHorizontal = [
["path", { d: "M2 12h20" }],
["path", { d: "M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4" }],
["path", { d: "M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4" }],
["path", { d: "M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1" }],
["path", { d: "M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1" }]
];
const AlignCenterVertical = [
["path", { d: "M12 2v20" }],
["path", { d: "M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4" }],
["path", { d: "M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4" }],
["path", { d: "M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1" }],
["path", { d: "M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1" }]
];
const AlignCenter = [
["path", { d: "M17 12H7" }],
["path", { d: "M19 18H5" }],
["path", { d: "M21 6H3" }]
];
const AlignEndHorizontal = [
["rect", { width: "6", height: "16", x: "4", y: "2", rx: "2" }],
["rect", { width: "6", height: "9", x: "14", y: "9", rx: "2" }],
["path", { d: "M22 22H2" }]
];
const AlignEndVertical = [
["rect", { width: "16", height: "6", x: "2", y: "4", rx: "2" }],
["rect", { width: "9", height: "6", x: "9", y: "14", rx: "2" }],
["path", { d: "M22 22V2" }]
];
const AlignHorizontalDistributeCenter = [
["rect", { width: "6", height: "14", x: "4", y: "5", rx: "2" }],
["rect", { width: "6", height: "10", x: "14", y: "7", rx: "2" }],
["path", { d: "M17 22v-5" }],
["path", { d: "M17 7V2" }],
["path", { d: "M7 22v-3" }],
["path", { d: "M7 5V2" }]
];
const AlignHorizontalDistributeStart = [
["rect", { width: "6", height: "14", x: "4", y: "5", rx: "2" }],
["rect", { width: "6", height: "10", x: "14", y: "7", rx: "2" }],
["path", { d: "M4 2v20" }],
["path", { d: "M14 2v20" }]
];
const AlignHorizontalDistributeEnd = [
["rect", { width: "6", height: "14", x: "4", y: "5", rx: "2" }],
["rect", { width: "6", height: "10", x: "14", y: "7", rx: "2" }],
["path", { d: "M10 2v20" }],
["path", { d: "M20 2v20" }]
];
const AlignHorizontalJustifyCenter = [
["rect", { width: "6", height: "14", x: "2", y: "5", rx: "2" }],
["rect", { width: "6", height: "10", x: "16", y: "7", rx: "2" }],
["path", { d: "M12 2v20" }]
];
const AlignHorizontalJustifyStart = [
["rect", { width: "6", height: "14", x: "6", y: "5", rx: "2" }],
["rect", { width: "6", height: "10", x: "16", y: "7", rx: "2" }],
["path", { d: "M2 2v20" }]
];
const AlignHorizontalJustifyEnd = [
["rect", { width: "6", height: "14", x: "2", y: "5", rx: "2" }],
["rect", { width: "6", height: "10", x: "12", y: "7", rx: "2" }],
["path", { d: "M22 2v20" }]
];
const AlignHorizontalSpaceAround = [
["rect", { width: "6", height: "10", x: "9", y: "7", rx: "2" }],
["path", { d: "M4 22V2" }],
["path", { d: "M20 22V2" }]
];
const AlignHorizontalSpaceBetween = [
["rect", { width: "6", height: "14", x: "3", y: "5", rx: "2" }],
["rect", { width: "6", height: "10", x: "15", y: "7", rx: "2" }],
["path", { d: "M3 2v20" }],
["path", { d: "M21 2v20" }]
];
const AlignJustify = [
["path", { d: "M3 12h18" }],
["path", { d: "M3 18h18" }],
["path", { d: "M3 6h18" }]
];
const AlignLeft = [
["path", { d: "M15 12H3" }],
["path", { d: "M17 18H3" }],
["path", { d: "M21 6H3" }]
];
const AlignRight = [
["path", { d: "M21 12H9" }],
["path", { d: "M21 18H7" }],
["path", { d: "M21 6H3" }]
];
const AlignStartHorizontal = [
["rect", { width: "6", height: "16", x: "4", y: "6", rx: "2" }],
["rect", { width: "6", height: "9", x: "14", y: "6", rx: "2" }],
["path", { d: "M22 2H2" }]
];
const AlignStartVertical = [
["rect", { width: "9", height: "6", x: "6", y: "14", rx: "2" }],
["rect", { width: "16", height: "6", x: "6", y: "4", rx: "2" }],
["path", { d: "M2 2v20" }]
];
const AlignVerticalDistributeCenter = [
["path", { d: "M22 17h-3" }],
["path", { d: "M22 7h-5" }],
["path", { d: "M5 17H2" }],
["path", { d: "M7 7H2" }],
["rect", { x: "5", y: "14", width: "14", height: "6", rx: "2" }],
["rect", { x: "7", y: "4", width: "10", height: "6", rx: "2" }]
];
const AlignVerticalDistributeEnd = [
["rect", { width: "14", height: "6", x: "5", y: "14", rx: "2" }],
["rect", { width: "10", height: "6", x: "7", y: "4", rx: "2" }],
["path", { d: "M2 20h20" }],
["path", { d: "M2 10h20" }]
];
const AlignVerticalDistributeStart = [
["rect", { width: "14", height: "6", x: "5", y: "14", rx: "2" }],
["rect", { width: "10", height: "6", x: "7", y: "4", rx: "2" }],
["path", { d: "M2 14h20" }],
["path", { d: "M2 4h20" }]
];
const AlignVerticalJustifyCenter = [
["rect", { width: "14", height: "6", x: "5", y: "16", rx: "2" }],
["rect", { width: "10", height: "6", x: "7", y: "2", rx: "2" }],
["path", { d: "M2 12h20" }]
];
const AlignVerticalJustifyEnd = [
["rect", { width: "14", height: "6", x: "5", y: "12", rx: "2" }],
["rect", { width: "10", height: "6", x: "7", y: "2", rx: "2" }],
["path", { d: "M2 22h20" }]
];
const AlignVerticalJustifyStart = [
["rect", { width: "14", height: "6", x: "5", y: "16", rx: "2" }],
["rect", { width: "10", height: "6", x: "7", y: "6", rx: "2" }],
["path", { d: "M2 2h20" }]
];
const AlignVerticalSpaceAround = [
["rect", { width: "10", height: "6", x: "7", y: "9", rx: "2" }],
["path", { d: "M22 20H2" }],
["path", { d: "M22 4H2" }]
];
const AlignVerticalSpaceBetween = [
["rect", { width: "14", height: "6", x: "5", y: "15", rx: "2" }],
["rect", { width: "10", height: "6", x: "7", y: "3", rx: "2" }],
["path", { d: "M2 21h20" }],
["path", { d: "M2 3h20" }]
];
const Ambulance = [
["path", { d: "M10 10H6" }],
["path", { d: "M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2" }],
[
"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"
}
],
["path", { d: "M8 8v4" }],
["path", { d: "M9 18h6" }],
["circle", { cx: "17", cy: "18", r: "2" }],
["circle", { cx: "7", cy: "18", r: "2" }]
];
const Ampersand = [
[
"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"
}
],
["path", { d: "M16 12h3" }]
];
const Ampersands = [
[
"path",
{ d: "M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5" }
],
[
"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" }
]
];
const Amphora = [
["path", { d: "M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8" }],
["path", { d: "M10 5H8a2 2 0 0 0 0 4h.68" }],
["path", { d: "M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8" }],
["path", { d: "M14 5h2a2 2 0 0 1 0 4h-.68" }],
["path", { d: "M18 22H6" }],
["path", { d: "M9 2h6" }]
];
const Anchor = [
["path", { d: "M12 22V8" }],
["path", { d: "M5 12H2a10 10 0 0 0 20 0h-3" }],
["circle", { cx: "12", cy: "5", r: "3" }]
];
const Angry = [
["circle", { cx: "12", cy: "12", r: "10" }],
["path", { d: "M16 16s-1.5-2-4-2-4 2-4 2" }],
["path", { d: "M7.5 8 10 9" }],
["path", { d: "m14 9 2.5-1" }],
["path", { d: "M9 10h.01" }],
["path", { d: "M15 10h.01" }]
];
const Annoyed = [
["circle", { cx: "12", cy: "12", r: "10" }],
["path", { d: "M8 15h8" }],
["path", { d: "M8 9h2" }],
["path", { d: "M14 9h2" }]
];
const Antenna = [
["path", { d: "M2 12 7 2" }],
["path", { d: "m7 12 5-10" }],
["path", { d: "m12 12 5-10" }],
["path", { d: "m17 12 5-10" }],
["path", { d: "M4.5 7h15" }],
["path", { d: "M12 16v6" }]
];
const Anvil = [
["path", { d: "M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4" }],
["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" }],
["path", { d: "M9 12v5" }],
["path", { d: "M15 12v5" }],
["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" }]
];
const Aperture = [
["circle", { cx: "12", cy: "12", r: "10" }],
["path", { d: "m14.31 8 5.74 9.94" }],
["path", { d: "M9.69 8h11.48" }],
["path", { d: "m7.38 12 5.74-9.94" }],
["path", { d: "M9.69 16 3.95 6.06" }],
["path", { d: "M14.31 16H2.83" }],
["path", { d: "m16.62 12-5.74 9.94" }]
];
const AppWindowMac = [
["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }],
["path", { d: "M6 8h.01" }],
["path", { d: "M10 8h.01" }],
["path", { d: "M14 8h.01" }]
];
const AppWindow = [
["rect", { x: "2", y: "4", width: "20", height: "16", rx: "2" }],
["path", { d: "M10 4v4" }],
["path", { d: "M2 8h20" }],
["path", { d: "M6 4v4" }]
];
const Apple = [
[
"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"
}
],
["path", { d: "M10 2c1 .5 2 2 2 5" }]
];
const ArchiveRestore = [
["rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }],
["path", { d: "M4 8v11a2 2 0 0 0 2 2h2" }],
["path", { d: "M20 8v11a2 2 0 0 1-2 2h-2" }],
["path", { d: "m9 15 3-3 3 3" }],
["path", { d: "M12 12v9" }]
];
const Archive = [
["rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }],
["path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }],
["path", { d: "M10 12h4" }]
];
const Armchair = [
["path", { d: "M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3" }],
[
"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"
}
],
["path", { d: "M5 18v2" }],
["path", { d: "M19 18v2" }]
];
const ArchiveX = [
["rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }],
["path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }],
["path", { d: "m9.5 17 5-5" }],
["path", { d: "m9.5 12 5 5" }]
];
const ArrowBigDownDash = [
["path", { d: "M15 5H9" }],
["path", { d: "M15 9v3h4l-7 7-7-7h4V9z" }]
];
const ArrowBigDown = [["path", { d: "M15 6v6h4l-7 7-7-7h4V6h6z" }]];
const ArrowBigLeftDash = [
["path", { d: "M19 15V9" }],
["path", { d: "M15 15h-3v4l-7-7 7-7v4h3v6z" }]
];
const ArrowBigLeft = [["path", { d: "M18 15h-6v4l-7-7 7-7v4h6v6z" }]];
const ArrowBigRightDash = [
["path", { d: "M5 9v6" }],
["path", { d: "M9 9h3V5l7 7-7 7v-4H9V9z" }]
];
const ArrowBigUpDash = [
["path", { d: "M9 19h6" }],
["path", { d: "M9 15v-3H5l7-7 7 7h-4v3H9z" }]
];
const ArrowBigRight = [["path", { d: "M6 9h6V5l7 7-7 7v-4H6V9z" }]];
const ArrowBigUp = [["path", { d: "M9 18v-6H5l7-7 7 7h-4v6H9z" }]];
const ArrowDown01 = [
["path", { d: "m3 16 4 4 4-4" }],
["path", { d: "M7 20V4" }],
["rect", { x: "15", y: "4", width: "4", height: "6", ry: "2" }],
["path", { d: "M17 20v-6h-2" }],
["path", { d: "M15 20h4" }]
];
const ArrowDown10 = [
["path", { d: "m3 16 4 4 4-4" }],
["path", { d: "M7 20V4" }],
["path", { d: "M17 10V4h-2" }],
["path", { d: "M15 10h4" }],
["rect", { x: "15", y: "14", width: "4", height: "6", ry: "2" }]
];
const ArrowDownAZ = [
["path", { d: "m3 16 4 4 4-4" }],
["path", { d: "M7 20V4" }],
["path", { d: "M20 8h-5" }],
["path", { d: "M15 10V6.5a2.5 2.5 0 0 1 5 0V10" }],
["path", { d: "M15 14h5l-5 6h5" }]
];
const ArrowDownFromLine = [
["path", { d: "M19 3H5" }],
["path", { d: "M12 21V7" }],
["path", { d: "m6 15 6 6 6-6" }]
];
const ArrowDownLeft = [
["path", { d: "M17 7 7 17" }],
["path", { d: "M17 17H7V7" }]
];
const ArrowDownNarrowWide = [
["path", { d: "m3 16 4 4 4-4" }],
["path", { d: "M7 20V4" }],
["path", { d: "M11 4h4" }],
["path", { d: "M11 8h7" }],
["path", { d: "M11 12h10" }]
];
const ArrowDownRight = [
["path", { d: "m7 7 10 10" }],
["path", { d: "M17 7v10H7" }]
];
const ArrowDownToDot = [
["path", { d: "M12 2v14" }],
["path", { d: "m19 9-7 7-7-7" }],
["circle", { cx: "12", cy: "21", r: "1" }]
];
const ArrowDownToLine = [
["path", { d: "M12 17V3" }],
["path", { d: "m6 11 6 6 6-6" }],
["path", { d: "M19 21H5" }]
];
const ArrowDownUp = [
["path", { d: "m3 16 4 4 4-4" }],
["path", { d: "M7 20V4" }],
["path", { d: "m21 8-4-4-4 4" }],
["path", { d: "M17 4v16" }]
];
const ArrowDownWideNarrow = [
["path", { d: "m3 16 4 4 4-4" }],
["path", { d: "M7 20V4" }],
["path", { d: "M11 4h10" }],
["path", { d: "M11 8h7" }],
["path", { d: "M11 12h4" }]
];
const ArrowDownZA = [
["path", { d: "m3 16 4 4 4-4" }],
["path", { d: "M7 4v16" }],
["path", { d: "M15 4h5l-5 6h5" }],
["path", { d: "M15 20v-3.5a2.5 2.5 0 0 1 5 0V20" }],
["path", { d: "M20 18h-5" }]
];
const ArrowDown = [
["path", { d: "M12 5v14" }],
["path", { d: "m19 12-7 7-7-7" }]
];
const ArrowLeftFromLine = [
["path", { d: "m9 6-6 6 6 6" }],
["path", { d: "M3 12h14" }],
["path", { d: "M21 19V5" }]
];
const ArrowLeftRight = [
["path", { d: "M8 3 4 7l4 4" }],
["path", { d: "M4 7h16" }],
["path", { d: "m16 21 4-4-4-4" }],
["path", { d: "M20 17H4" }]
];
const ArrowLeftToLine = [
["path", { d: "M3 19V5" }],
["path", { d: "m13 6-6 6 6 6" }],
["path", { d: "M7 12h14" }]
];
const ArrowLeft = [
["path", { d: "m12 19-7-7 7-7" }],
["path", { d: "M19 12H5" }]
];
const ArrowRightFromLine = [
["path", { d: "M3 5v14" }],
["path", { d: "M21 12H7" }],
["path", { d: "m15 18 6-6-6-6" }]
];
const ArrowRightLeft = [
["path", { d: "m16 3 4 4-4 4" }],
["path", { d: "M20 7H4" }],
["path", { d: "m8 21-4-4 4-4" }],
["path", { d: "M4 17h16" }]
];
const ArrowRightToLine = [
["path", { d: "M17 12H3" }],
["path", { d: "m11 18 6-6-6-6" }],
["path", { d: "M21 5v14" }]
];
const ArrowRight = [
["path", { d: "M5 12h14" }],
["path", { d: "m12 5 7 7-7 7" }]
];
const ArrowUp01 = [
["path", { d: "m3 8 4-4 4 4" }],
["path", { d: "M7 4v16" }],
["rect", { x: "15", y: "4", width: "4", height: "6", ry: "2" }],
["path", { d: "M17 20v-6h-2" }],
["path", { d: "M15 20h4" }]
];
const ArrowUp10 = [
["path", { d: "m3 8 4-4 4 4" }],
["path", { d: "M7 4v16" }],
["path", { d: "M17 10V4h-2" }],
["path", { d: "M15 10h4" }],
["rect", { x: "15", y: "14", width: "4", height: "6", ry: "2" }]
];
const ArrowUpAZ = [
["path", { d: "m3 8 4-4 4 4" }],
["path", { d: "M7 4v16" }],
["path", { d: "M20 8h-5" }],
["path", { d: "M15 10V6.5a2.5 2.5 0 0 1 5 0V10" }],
["path", { d: "M15 14h5l-5 6h5" }]
];
const ArrowUpDown = [
["path", { d: "m21 16-4 4-4-4" }],
["path", { d: "M17 20V4" }],
["path", { d: "m3 8 4-4 4 4" }],
["path", { d: "M7 4v16" }]
];
const ArrowUpFromDot = [
["path", { d: "m5 9 7-7 7 7" }],
["path", { d: "M12 16V2" }],
["circle", { cx: "12", cy: "21", r: "1" }]
];
const ArrowUpFromLine = [
["path", { d: "m18 9-6-6-6 6" }],
["path", { d: "M12 3v14" }],
["path", { d: "M5 21h14" }]
];
const ArrowUpLeft = [
["path", { d: "M7 17V7h10" }],
["path", { d: "M17 17 7 7" }]
];
const ArrowUpNarrowWide = [
["path", { d: "m3 8 4-4 4 4" }],
["path", { d: "M7 4v16" }],
["path", { d: "M11 12h4" }],
["path", { d: "M11 16h7" }],
["path", { d: "M11 20h10" }]
];
const ArrowUpRight = [
["path", { d: "M7 7h10v10" }],
["path", { d: "M7 17 17 7" }]
];
const ArrowUpWideNarrow = [
["path", { d: "m3 8 4-4 4 4" }],
["path", { d: "M7 4v16" }],
["path", { d: "M11 12h10" }],
["path", { d: "M11 16h7" }],
["path", { d: "M11 20h4" }]
];
const ArrowUpToLine = [
["path", { d: "M5 3h14" }],
["path", { d: "m18 13-6-6-6 6" }],
["path", { d: "M12 7v14" }]
];
const ArrowUpZA = [
["path", { d: "m3 8 4-4 4 4" }],
["path", { d: "M7 4v16" }],
["path", { d: "M15 4h5l-5 6h5" }],
["path", { d: "M15 20v-3.5a2.5 2.5 0 0 1 5 0V20" }],
["path", { d: "M20 18h-5" }]
];
const ArrowUp = [
["path", { d: "m5 12 7-7 7 7" }],
["path", { d: "M12 19V5" }]
];
const Asterisk = [
["path", { d: "M12 6v12" }],
["path", { d: "M17.196 9 6.804 15" }],
["path", { d: "m6.804 9 10.392 6" }]
];
const ArrowsUpFromLine = [
["path", { d: "m4 6 3-3 3 3" }],
["path", { d: "M7 17V3" }],
["path", { d: "m14 6 3-3 3 3" }],
["path", { d: "M17 17V3" }],
["path", { d: "M4 21h16" }]
];
const AtSign = [
["circle", { cx: "12", cy: "12", r: "4" }],
["path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" }]
];
const Atom = [
["circle", { cx: "12", cy: "12", r: "1" }],
[
"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"
}
],
[
"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"
}
]
];
const AudioLines = [
["path", { d: "M2 10v3" }],
["path", { d: "M6 6v11" }],
["path", { d: "M10 3v18" }],
["path", { d: "M14 8v7" }],
["path", { d: "M18 5v13" }],
["path", { d: "M22 10v3" }]
];
const AudioWaveform = [
[
"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"
}
]
];
const Award = [
[
"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"
}
],
["circle", { cx: "12", cy: "8", r: "6" }]
];
const Axe = [
["path", { d: "m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9" }],
[
"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"
}
]
];
const Axis3d = [
["path", { d: "M13.5 10.5 15 9" }],
["path", { d: "M4 4v15a1 1 0 0 0 1 1h15" }],
["path", { d: "M4.293 19.707 6 18" }],
["path", { d: "m9 15 1.5-1.5" }]
];
const Baby = [
["path", { d: "M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5" }],
["path", { d: "M15 12h.01" }],
[
"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"
}
],
["path", { d: "M9 12h.01" }]
];
const Backpack = [
["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" }],
["path", { d: "M8 10h8" }],
["path", { d: "M8 18h8" }],
["path", { d: "M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6" }],
["path", { d: "M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2" }]
];
const BadgeAlert = [
[
"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"
}
],
["line", { x1: "12", x2: "12", y1: "8", y2: "12" }],
["line", { x1: "12", x2: "12.01", y1: "16", y2: "16" }]
];
const BadgeCheck = [
[
"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"
}
],
["path", { d: "m9 12 2 2 4-4" }]
];
const BadgeCent = [
[
"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"
}
],
["path", { d: "M12 7v10" }],
["path", { d: "M15.4 10a4 4 0 1 0 0 4" }]
];
const BadgeDollarSign = [
[
"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"
}
],
["path", { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8" }],
["path", { d: "M12 18V6" }]
];
const BadgeEuro = [
[
"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"
}
],
["path", { d: "M7 12h5" }],
["path", { d: "M15 9.4a4 4 0 1 0 0 5.2" }]
];
const BadgeIndianRupee = [
[
"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"
}
],
["path", { d: "M8 8h8" }],
["path", { d: "M8 12h8" }],
["path", { d: "m13 17-5-1h1a4 4 0 0 0 0-8" }]
];
const BadgeInfo = [
[
"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"
}
],
["line", { x1: "12", x2: "12", y1: "16", y2: "12" }],
["line", { x1: "12", x2: "12.01", y1: "8", y2: "8" }]
];
const BadgeJapaneseYen = [
[
"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"
}
],
["path", { d: "m9 8 3 3v7" }],
["path", { d: "m12 11 3-3" }],
["path", { d: "M9 12h6" }],
["path", { d: "M9 16h6" }]
];
const BadgeMinus = [
[
"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"
}
],
["line", { x1: "8", x2: "16", y1: "12", y2: "12" }]
];
const BadgePercent = [
[
"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"
}
],
["path", { d: "m15 9-6 6" }],
["path", { d: "M9 9h.01" }],
["path", { d: "M15 15h.01" }]
];
const BadgePoundSterling = [
[
"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"
}
],
["path", { d: "M8 12h4" }],
["path", { d: "M10 16V9.5a2.5 2.5 0 0 1 5 0" }],
["path", { d: "M8 16h7" }]
];
const BadgePlus = [
[
"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"
}
],
["line", { x1: "12", x2: "12", y1: "8", y2: "16" }],
["line", { x1: "8", x2: "16", y1: "12", y2: "12" }]
];
const BadgeQuestionMark = [
[
"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"
}
],
["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }],
["line", { x1: "12", x2: "12.01", y1: "17", y2: "17" }]
];
const BadgeRussianRuble = [
[
"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"
}
],
["path", { d: "M9 16h5" }],
["path", { d: "M9 12h5a2 2 0 1 0 0-4h-3v9" }]
];
const BadgeSwissFranc = [
[
"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"
}
],
["path", { d: "M11 17V8h4" }],
["path", { d: "M11 12h3" }],
["path", { d: "M9 16h4" }]
];
const BadgeX = [
[
"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"
}
],
["line", { x1: "15", x2: "9", y1: "9", y2: "15" }],
["line", { x1: "9", x2: "15", y1: "9", y2: "15" }]
];
const Badge = [
[
"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"
}
]
];
const BaggageClaim = [
["path", { d: "M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2" }],
["path", { d: "M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10" }],
["rect", { width: "13", height: "8", x: "8", y: "6", rx: "1" }],
["circle", { cx: "18", cy: "20", r: "2" }],
["circle", { cx: "9", cy: "20", r: "2" }]
];
const Ban = [
["circle", { cx: "12", cy: "12", r: "10" }],
["path", { d: "m4.9 4.9 14.2 14.2" }]
];
const Banana = [
["path", { d: "M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5" }],
[
"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"
}
]
];
const BanknoteArrowDown = [
["path", { d: "M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5" }],
["path", { d: "m16 19 3 3 3-3" }],
["path", { d: "M18 12h.01" }],
["path", { d: "M19 16v6" }],
["path", { d: "M6 12h.01" }],
["circle", { cx: "12", cy: "12", r: "2" }]
];
const BanknoteArrowUp = [
["path", { d: "M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5" }],
["path", { d: "M18 12h.01" }],
["path", { d: "M19 22v-6" }],
["path", { d: "m22 19-3-3-3 3" }],
["path", { d: "M6 12h.01" }],
["circle", { cx: "12", cy: "12", r: "2" }]
];
const Bandage = [
["path", { d: "M10 10.01h.01" }],
["path", { d: "M10 14.01h.01" }],
["path", { d: "M14 10.01h.01" }],
["path", { d: "M14 14.01h.01" }],
["path", { d: "M18 6v11.5" }],
["path", { d: "M6 6v12" }],
["rect", { x: "2", y: "6", width: "20", height: "12", rx: "2" }]
];
const BanknoteX = [
["path", { d: "M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5" }],
["path", { d: "m17 17 5 5" }],
["path", { d: "M18 12h.01" }],
["path", { d: "m22 17-5 5" }],
["path", { d: "M6 12h.01" }],
["circle", { cx: "12", cy: "12", r: "2" }]
];
const Banknote = [
["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2" }],
["circle", { cx: "12", cy: "12", r: "2" }],
["path", { d: "M6 12h.01M18 12h.01" }]
];
const Barcode = [
["path", { d: "M3 5v14" }],
["path", { d: "M8 5v14" }],
["path", { d: "M12 5v14" }],
["path", { d: "M17 5v14" }],
["path", { d: "M21 5v14" }]
];
const Barrel = [
["path", { d: "M10 3a41 41 0 0 0 0 18" }],
["path", { d: "M14 3a41 41 0 0 1 0 18" }],
[
"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"
}
],
["path", { d: "M3.84 17h16.32" }],
["path", { d: "M3.84 7h16.32" }]
];
const Baseline = [
["path", { d: "M4 20h16" }],
["path", { d: "m6 16 6-12 6 12" }],
["path", { d: "M8 12h8" }]
];
const Bath = [
["path", { d: "M10 4 8 6" }],
["path", { d: "M17 19v2" }],
["path", { d: "M2 12h20" }],
["path", { d: "M7 19v2" }],
["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" }]
];
const BatteryCharging = [
["path", { d: "m11 7-3 5h4l-3 5" }],
["path", { d: "M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935" }],
["path", { d: "M22 14v-4" }],
["path", { d: "M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936" }]
];
const BatteryFull = [
["path", { d: "M10 10v4" }],
["path", { d: "M14 10v4" }],
["path", { d: "M22 14v-4" }],
["path", { d: "M6 10v4" }],
["rect", { x: "2", y: "6", width: "16", height: "12", rx: "2" }]
];
const BatteryLow = [
["path", { d: "M22 14v-4" }],
["path", { d: "M6 14v-4" }],
["rect", { x: "2", y: "6", width: "16", height: "12", rx: "2" }]
];
const BatteryMedium = [
["path", { d: "M10 14v-4" }],
["path", { d: "M22 14v-4" }],
["path", { d: "M6 14v-4" }],
["rect", { x: "2", y: "6", width: "16", height: "12", rx: "2" }]
];
const BatteryPlus = [
["path", { d: "M10 9v6" }],
["path", { d: "M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605" }],
["path", { d: "M22 14v-4" }],
["path", { d: "M7 12h6" }],
["path", { d: "M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606" }]
];
const BatteryWarning = [
["path", { d: "M10 17h.01" }],
["path", { d: "M10 7v6" }],
["path", { d: "M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2" }],
["path", { d: "M22 14v-4" }],
["path", { d: "M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2" }]
];
const Battery = [
["path", { d: "M 22 14 L 22 10" }],
["rect", { x: "2", y: "6", width: "16", height: "12", rx: "2" }]
];
const Beaker = [
["path", { d: "M4.5 3h15" }],
["path", { d: "M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3" }],
["path", { d: "M6 14h12" }]
];
const BeanOff = [
["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" }],
["path", { d: "M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66" }],
["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" }],
["line", { x1: "2", x2: "22", y1: "2", y2: "22" }]
];
const Bean = [
[
"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"
}
],
["path", { d: "M5.341 10.62a4 4 0 1 0 5.279-5.28" }]
];
const BedDouble = [
["path", { d: "M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8" }],
["path", { d: "M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4" }],
["path", { d: "M12 4v6" }],
["path", { d: "M2 18h20" }]
];
const BedSingle = [
["path", { d: "M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8" }],
["path", { d: "M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4" }],
["path", { d: "M3 18h18" }]
];
const Bed = [
["path", { d: "M2 4v16" }],
["path", { d: "M2 8h18a2 2 0 0 1 2 2v10" }],
["path", { d: "M2 17h20" }],
["path", { d: "M6 8v9" }]
];
const Beef = [
[
"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"
}
],
[
"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"
}
],
["circle", { cx: "12.5", cy: "8.5", r: "2.5" }]
];
const BeerOff = [
["path", { d: "M13 13v5" }],
["path", { d: "M17 11.47V8" }],
["path", { d: "M17 11h1a3 3 0 0 1 2.745 4.211" }],
["path", { d: "m2 2 20 20" }],
["path", { d: "M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3" }],
["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" }],
[
"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"
}
],
["path", { d: "M9 14.6V18" }]
];
const Beer = [
["path", { d: "M17 11h1a3 3 0 0 1 0 6h-1" }],
["path", { d: "M9 12v6" }],
["path", { d: "M13 12v6" }],
[
"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"
}
],
["path", { d: "M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8" }]
];
const BellDot = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }],
[
"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"
}
],
["circle", { cx: "18", cy: "8", r: "3" }]
];
const BellElectric = [
["path", { d: "M18.518 17.347A7 7 0 0 1 14 19" }],
["path", { d: "M18.8 4A11 11 0 0 1 20 9" }],
["path", { d: "M9 9h.01" }],
["circle", { cx: "20", cy: "16", r: "2" }],
["circle", { cx: "9", cy: "9", r: "7" }],
["rect", { x: "4", y: "16", width: "10", height: "6", rx: "2" }]
];
const BellMinus = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }],
["path", { d: "M15 8h6" }],
[
"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"
}
]
];
const BellOff = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }],
["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" }],
["path", { d: "m2 2 20 20" }],
["path", { d: "M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05" }]
];
const BellPlus = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }],
["path", { d: "M15 8h6" }],
["path", { d: "M18 5v6" }],
[
"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"
}
]
];
const BellRing = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }],
["path", { d: "M22 8c0-2.3-.8-4.3-2-6" }],
[
"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"
}
],
["path", { d: "M4 2C2.8 3.7 2 5.7 2 8" }]
];
const Bell = [
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }],
[
"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"
}
]
];
const BetweenHorizontalEnd = [
["rect", { width: "13", height: "7", x: "3", y: "3", rx: "1" }],
["path", { d: "m22 15-3-3 3-3" }],
["rect", { width: "13", height: "7", x: "3", y: "14", rx: "1" }]
];
const BetweenHorizontalStart = [
["rect", { width: "13", height: "7", x: "8", y: "3", rx: "1" }],
["path", { d: "m2 9 3 3-3 3" }],
["rect", { width: "13", height: "7", x: "8", y: "14", rx: "1" }]
];
const BetweenVerticalEnd = [
["rect", { width: "7", height: "13", x: "3", y: "3", rx: "1" }],
["path", { d: "m9 22 3-3 3 3" }],
["rect", { width: "7", height: "13", x: "14", y: "3", rx: "1" }]
];
const BetweenVerticalStart = [
["rect", { width: "7", height: "13", x: "3", y: "8", rx: "1" }],
["path", { d: "m15 2-3 3-3-3" }],
["rect", { width: "7", height: "13", x: "14", y: "8", rx: "1" }]
];
const BicepsFlexed = [
[
"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"
}
],
["path", { d: "M15 14a5 5 0 0 0-7.584 2" }],
["path", { d: "M9.964 6.825C8.019 7.977 9.5 13 8 15" }]
];
const Binary = [
["rect", { x: "14", y: "14", width: "4", height: "6", rx: "2" }],
["rect", { x: "6", y: "4", width: "4", height: "6", rx: "2" }],
["path", { d: "M6 20h4" }],
["path", { d: "M14 10h4" }],
["path", { d: "M6 14h2v6" }],
["path", { d: "M14 4h2v6" }]
];
const Bike = [
["circle", { cx: "18.5", cy: "17.5", r: "3.5" }],
["circle", { cx: "5.5", cy: "17.5", r: "3.5" }],
["circle", { cx: "15", cy: "5", r: "1" }],
["path", { d: "M12 17.5V14l-3-3 4-3 2 3h2" }]
];
const Binoculars = [
["path", { d: "M10 10h4" }],
["path", { d: "M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3" }],
[
"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"
}
],
["path", { d: "M 22 16 L 2 16" }],
[
"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"
}
],
["path", { d: "M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3" }]
];
const Biohazard = [
["circle", { cx: "12", cy: "11.9", r: "2" }],
["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" }],
["path", { d: "m8.9 10.1 1.4.8" }],
["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" }],
["path", { d: "m15.1 10.1-1.4.8" }],
["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" }],
["path", { d: "M12 13.9v1.6" }],
["path", { d: "M13.5 5.4c-1-.2-2-.2-3 0" }],
["path", { d: "M17 16.4c.7-.7 1.2-1.6 1.5-2.5" }],
["path", { d: "M5.5 13.9c.3.9.8 1.8 1.5 2.5" }]
];
const Bird = [
["path", { d: "M16 7h.01" }],
["path", { d: "M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20" }],
["path", { d: "m20 7 2 .5-2 .5" }],
["path", { d: "M10 18v3" }],
["path", { d: "M14 17.75V21" }],
["path", { d: "M7 18a6 6 0 0 0 3.84-10.61" }]
];
const Blend = [
["circle", { cx: "9", cy: "9", r: "7" }],
["circle", { cx: "15", cy: "15", r: "7" }]
];
const Bitcoin = [
[
"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"
}
]
];
const Blinds = [
["path", { d: "M3 3h18" }],
["path", { d: "M20 7H8" }],
["path", { d: "M20 11H8" }],
["path", { d: "M10 19h10" }],
["path", { d: "M8 15h12" }],
["path", { d: "M4 3v14" }],
["circle", { cx: "4", cy: "19", r: "2" }]
];
const Blocks = [
[
"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"
}
],
["rect", { x: "14", y: "2", width: "8", height: "8", rx: "1" }]
];
const BluetoothConnected = [
["path", { d: "m7 7 10 10-5 5V2l5 5L7 17" }],
["line", { x1: "18", x2: "21", y1: "12", y2: "12" }],
["line", { x1: "3", x2: "6", y1: "12", y2: "12" }]
];
const BluetoothOff = [
["path", { d: "m17 17-5 5V12l-5 5" }],
["path", { d: "m2 2 20 20" }],
["path", { d: "M14.5 9.5 17 7l-5-5v4.5" }]
];
const BluetoothSearching = [
["path", { d: "m7 7 10 10-5 5V2l5 5L7 17" }],
["path", { d: "M20.83 14.83a4 4 0 0 0 0-5.66" }],
["path", { d: "M18 12h.01" }]
];
const Bold = [
["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" }]
];
const Bluetooth = [["path", { d: "m7 7 10 10-5 5V2l5 5L7 17" }]];
const Bolt = [
[
"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"
}
],
["circle", { cx: "12", cy: "12", r: "4" }]
];
const Bomb = [
["circle", { cx: "11", cy: "13", r: "9" }],
[
"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" }
],
["path", { d: "m22 2-1.5 1.5" }]
];
const Bone = [
[
"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"
}
]
];
const BookA = [
[
"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" }
],
["path", { d: "m8 13 4-7 4 7" }],
["path", { d: "M9.1 11h5.7" }]
];
const BookAlert = [
["path", { d: "M12 13h.01" }],
["path", { d: "M12 6v3" }],
[
"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" }
]
];
const BookAudio = [
["path", { d: "M12 6v7" }],
["path", { d: "M16 8v3" }],
[
"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" }
],
["path", { d: "M8 8v3" }]
];
const BookCheck = [
[
"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" }
],
["path", { d: "m9 9.5 2 2 4-4" }]
];
const BookCopy = [
["path", { d: "M2 16V4a2 2 0 0 1 2-2h11" }],
[
"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" }
],
["path", { d: "M5 14H4a2 2 0 1 0 0 4h1" }]
];
const BookDown = [
["path", { d: "M12 13V7" }],
[
"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" }
],
["path", { d: "m9 10 3 3 3-3" }]
];
const BookDashed = [
["path", { d: "M12 17h1.5" }],
["path", { d: "M12 22h1.5" }],
["path", { d: "M12 2h1.5" }],
["path", { d: "M17.5 22H19a1 1 0 0 0 1-1" }],
["path", { d: "M17.5 2H19a1 1 0 0 1 1 1v1.5" }],
["path", { d: "M20 14v3h-2.5" }],
["path", { d: "M20 8.5V10" }],
["path", { d: "M4 10V8.5" }],
["path", { d: "M4 19.5V14" }],
["path", { d: "M4 4.5A2.5 2.5 0 0 1 6.5 2H8" }],
["path", { d: "M8 22H6.5a1 1 0 0 1 0-5H8" }]
];
const BookHeadphones = [
[
"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" }
],
["path", { d: "M8 12v-2a4 4 0 0 1 8 0v2" }],
["circle", { cx: "15", cy: "12", r: "1" }],
["circle", { cx: "9", cy: "12", r: "1" }]
];
const BookHeart = [
[
"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"
}
],
[
"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" }
]
];
const BookImage = [
["path", { d: "m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17" }],
[
"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" }
],
["circle", { cx: "10", cy: "8", r: "2" }]
];
const BookKey = [
["path", { d: "m19 3 1 1" }],
["path", { d: "m20 2-4.5 4.5" }],
["path", { d: "M20 7.898V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" }],
["path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2h7.844" }],
["circle", { cx: "14", cy: "8", r: "2" }]
];
const BookLock = [
["path", { d: "M18 6V4a2 2 0 1 0-4 0v2" }],
["path", { d: "M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" }],
["path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10" }],
["rect", { x: "12", y: "6", width: "8", height: "5", rx: "1" }]
];
const BookMarked = [
["path", { d: "M10 2v8l3-3 3 3V2" }],
[
"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" }
]
];
const BookMinus = [
[
"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" }
],
["path", { d: "M9 10h6" }]
];
const BookOpenText = [
["path", { d: "M12 7v14" }],
["path", { d: "M16 12h2" }],
["path", { d: "M16 8h2" }],
[
"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"
}
],
["path", { d: "M6 12h2" }],
["path", { d: "M6 8h2" }]
];
const BookOpenCheck = [
["path", { d: "M12 21V7" }],
["path", { d: "m16 12 2 2 4-4" }],
[
"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"
}
]
];
const BookOpen = [
["path", { d: "M12 7v14" }],
[
"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"
}
]
];
const BookPlus = [
["path", { d: "M12 7v6" }],
[
"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" }
],
["path", { d: "M9 10h6" }]
];
const BookText = [
[
"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" }
],
["path", { d: "M8 11h8" }],
["path", { d: "M8 7h6" }]
];
const BookType = [
["path", { d: "M10 13h4" }],
["path", { d: "M12 6v7" }],
["path", { d: "M16 8V6H8v2" }],
[
"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" }
]
];
const BookUp2 = [
["path", { d: "M12 13V7" }],
["path", { d: "M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" }],
["path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2" }],
["path", { d: "m9 10 3-3 3 3" }],
["path", { d: "m9 5 3-3 3 3" }]
];
const BookUser = [
["path", { d: "M15 13a3 3 0 1 0-6 0" }],
[
"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" }
],
["circle", { cx: "12", cy: "8", r: "2" }]
];
const BookUp = [
["path", { d: "M12 13V7" }],
[
"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" }
],
["path", { d: "m9 10 3-3 3 3" }]
];
const BookX = [
["path", { d: "m14.5 7-5 5" }],
[
"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" }
],
["path", { d: "m9.5 7 5 5" }]
];
const Book = [
[
"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" }
]
];
const BookmarkCheck = [
["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z" }],
["path", { d: "m9 10 2 2 4-4" }]
];
const BookmarkMinus = [
["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z" }],
["