@swan-io/lake 15.2.0 → 15.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -2
- package/src/components/Accordion.js +1 -1
- package/src/components/Cells.js +1 -1
- package/src/components/Icon.d.ts +1 -0
- package/src/components/LakeSlider.d.ts +2 -1
- package/src/components/LakeSlider.js +1 -1
- package/src/components/MultiSelect.js +1 -1
- package/src/components/PlainListView.js +4 -4
- package/src/components/TabView.js +1 -1
- package/src/components/TilePlaceholder.js +2 -1
- package/src/components/VirtualizedList.js +3 -2
- package/src/icons/fluent-icons.json +15 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swan-io/lake",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.3.1",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">22.12.0"
|
|
6
6
|
},
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"@swan-io/use-form": "^3.1.0",
|
|
36
36
|
"dayjs": "^1.11.20",
|
|
37
37
|
"polished": "^4.3.1",
|
|
38
|
-
"prism-react-renderer": "^2.4.1",
|
|
39
38
|
"rifm": "^0.12.1",
|
|
40
39
|
"ts-pattern": "^5.9.0",
|
|
41
40
|
"uuid": "^14.0.0"
|
|
@@ -41,5 +41,5 @@ const styles = StyleSheet.create({
|
|
|
41
41
|
export const Accordion = ({ children, trigger, style, contentContainerStyle }) => {
|
|
42
42
|
const id = useId();
|
|
43
43
|
const [isOpen, { toggle }] = useDisclosure(false);
|
|
44
|
-
return (_jsxs(View, { children: [_jsxs(Pressable, { "aria-controls": id, "aria-expanded": isOpen, onPress: toggle, style: [styles.trigger, style], children: [_jsx(Icon, { name: "chevron-right-filled", size: 12, color: colors.gray[500], style: [styles.arrow, isOpen && styles.arrowOpen] }), _jsx(Space, { width: 20 }), typeof trigger === "string" ? (_jsx(LakeText, { variant: "smallMedium", color: colors.gray[900], children: trigger })) : (trigger)] }), _jsx(View, { "aria-labelledby": id, "aria-hidden": !isOpen, role: "region", style: [styles.contentContainer, isOpen && styles.contentContainerDisplayed], children: _jsx(View, { style: styles.contentInner, children: _jsx(View, { style: [styles.content, contentContainerStyle], children: children }) }) })] }));
|
|
44
|
+
return (_jsxs(View, { children: [_jsxs(Pressable, { "aria-controls": id, role: "button", "aria-expanded": isOpen, onPress: toggle, style: [styles.trigger, style], children: [_jsx(Icon, { name: "chevron-right-filled", size: 12, color: colors.gray[500], style: [styles.arrow, isOpen && styles.arrowOpen] }), _jsx(Space, { width: 20 }), typeof trigger === "string" ? (_jsx(LakeText, { variant: "smallMedium", color: colors.gray[900], children: trigger })) : (trigger)] }), _jsx(View, { "aria-labelledby": id, "aria-hidden": !isOpen, role: "region", style: [styles.contentContainer, isOpen && styles.contentContainerDisplayed], children: _jsx(View, { style: styles.contentInner, children: _jsx(View, { style: [styles.content, contentContainerStyle], children: children }) }) })] }));
|
|
45
45
|
};
|
package/src/components/Cells.js
CHANGED
|
@@ -93,7 +93,7 @@ const styles = StyleSheet.create({
|
|
|
93
93
|
paddingLeft: spacings[8],
|
|
94
94
|
},
|
|
95
95
|
});
|
|
96
|
-
export const Cell = ({ children, align = "left", direction = "row", fadeOn, style, contentContainerStyle, }) => (_jsx(View, { style: [styles.cell, style], children: _jsx(View, { style: [
|
|
96
|
+
export const Cell = ({ children, align = "left", direction = "row", fadeOn, style, contentContainerStyle, }) => (_jsx(View, { role: "cell", style: [styles.cell, style], children: _jsx(View, { style: [
|
|
97
97
|
styles.cellContentContainer,
|
|
98
98
|
directionStyles[direction],
|
|
99
99
|
alignItemsStyles[direction === "row" ? "center" : align],
|
package/src/components/Icon.d.ts
CHANGED
|
@@ -236,6 +236,7 @@ declare const paths: {
|
|
|
236
236
|
"shield-task-regular": string;
|
|
237
237
|
"shield-checkmark-filled": string;
|
|
238
238
|
"shield-checkmark-regular": string;
|
|
239
|
+
"shield-error-filled": string;
|
|
239
240
|
"shield-error-regular": string;
|
|
240
241
|
"shield-regular": string;
|
|
241
242
|
"shopping-bag-regular": string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewProps } from "react-native";
|
|
2
2
|
type Props = {
|
|
3
|
+
id?: string;
|
|
3
4
|
min: number;
|
|
4
5
|
max: number;
|
|
5
6
|
value: number;
|
|
@@ -8,5 +9,5 @@ type Props = {
|
|
|
8
9
|
style?: ViewProps["style"];
|
|
9
10
|
onChange: (value: number) => void;
|
|
10
11
|
};
|
|
11
|
-
export declare const LakeSlider: ({ min, max, value, step, disabled, style, onChange }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const LakeSlider: ({ id, min, max, value, step, disabled, style, onChange, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export {};
|
|
@@ -8,7 +8,7 @@ const styles = StyleSheet.create({
|
|
|
8
8
|
zIndex: 1,
|
|
9
9
|
},
|
|
10
10
|
});
|
|
11
|
-
export const LakeSlider = ({ min, max, value, step, disabled = false, style, onChange }) => (_jsx(View, { style: [styles.container, style], children: _jsx("input", { type: "range", min: min, max: max, value: value, step: step, disabled: disabled, onChange: useCallback((event) => onChange(Number(event.target.value)), [onChange]), style: {
|
|
11
|
+
export const LakeSlider = ({ id, min, max, value, step, disabled = false, style, onChange, }) => (_jsx(View, { style: [styles.container, style], children: _jsx("input", { id: id, type: "range", min: min, max: max, value: value, step: step, disabled: disabled, onChange: useCallback((event) => onChange(Number(event.target.value)), [onChange]), style: {
|
|
12
12
|
backgroundSize: `${((value - min) / (max - min)) * 100}% 100%`,
|
|
13
13
|
...(disabled ? commonStyles.disabled : {}),
|
|
14
14
|
} }) }));
|
|
@@ -197,7 +197,7 @@ export const MultiSelect = ({ color = "gray", disabled = false, emptyResultText,
|
|
|
197
197
|
}, [filteredItems]);
|
|
198
198
|
const ListHeaderComponent = useMemo(() => (_jsxs(Box, { direction: "row", alignItems: "center", style: styles.filterContainer, children: [_jsx(TextInput, { autoComplete: "off", inputMode: "search", multiline: false, rows: 1, onChangeText: filterValue => setFilter(filterValue), placeholder: filterPlaceholder, value: filter, onFocus: setFilterFocused.on, onBlur: setFilterFocused.off, style: [styles.filterInput, filterFocused && styles.filterFocused] }), _jsx(Icon, { name: "search-filled", color: colors[color].primary, size: 20, style: styles.searchIcon })] })), [filter, filterFocused, setFilterFocused, filterPlaceholder, color]);
|
|
199
199
|
const ListEmptyComponent = useMemo(() => (_jsxs(Box, { justifyContent: "center", alignItems: "center", style: styles.emptyList, children: [_jsx(Icon, { name: "clipboard-search-regular", size: 24, color: colors.gray.primary }), isNotNullishOrEmpty(emptyResultText) && (_jsxs(_Fragment, { children: [_jsx(Space, { height: 8 }), _jsx(Text, { style: styles.emptyListText, children: emptyResultText })] }))] })), [emptyResultText]);
|
|
200
|
-
return (_jsxs(View, { style: style, children: [_jsxs(Pressable, { id: id, ref: inputRef, "aria-haspopup": "listbox", "aria-expanded": visible, disabled: disabled, onPress: open, style: ({ hovered, focused }) => [
|
|
200
|
+
return (_jsxs(View, { style: style, children: [_jsxs(Pressable, { id: id, ref: inputRef, role: "button", "aria-haspopup": "listbox", "aria-expanded": visible, disabled: disabled, onPress: open, style: ({ hovered, focused }) => [
|
|
201
201
|
styles.base,
|
|
202
202
|
hovered && styles.hovered,
|
|
203
203
|
(focused || visible) && styles.focused,
|
|
@@ -98,7 +98,7 @@ const Row = ({ id, item, index, rowHeight, columns, extraInfo, isActive, isHover
|
|
|
98
98
|
onHoverStart: () => onMouseEnter(id),
|
|
99
99
|
onHoverEnd: () => onMouseLeave(),
|
|
100
100
|
});
|
|
101
|
-
return (_jsx(View, { ref: containerRef, style: [
|
|
101
|
+
return (_jsx(View, { ref: containerRef, role: "row", style: [
|
|
102
102
|
styles.segment,
|
|
103
103
|
large && styles.segmentLarge,
|
|
104
104
|
styles.row,
|
|
@@ -172,10 +172,10 @@ export const PlainListView = ({ data: originalData, keyExtractor, rowHeight, gro
|
|
|
172
172
|
minHeight: totalHeight + (isLoading ? loading.count * rowHeight : 0),
|
|
173
173
|
},
|
|
174
174
|
] })), [isLoading, loading === null || loading === void 0 ? void 0 : loading.count, rowHeight, totalHeight, withoutScroll]);
|
|
175
|
-
return (_jsx(ResponsiveContainer, { style: withoutScroll ? (isEmpty ? commonStyles.fill : undefined) : styles.root, breakpoint: breakpoint, children: ({ large }) => {
|
|
175
|
+
return (_jsx(ResponsiveContainer, { role: "table", style: withoutScroll ? (isEmpty ? commonStyles.fill : undefined) : styles.root, breakpoint: breakpoint, children: ({ large }) => {
|
|
176
176
|
const displayColumns = large ? columns : smallColumns;
|
|
177
177
|
return (_jsx(_Fragment, { children: cloneElement(listWrapper, {
|
|
178
|
-
children: (_jsxs(_Fragment, { children: [!isEmpty && large ? (_jsx(View, { style: [
|
|
178
|
+
children: (_jsxs(_Fragment, { children: [!isEmpty && large ? (_jsx(View, { role: "row", style: [
|
|
179
179
|
styles.segment,
|
|
180
180
|
styles.segmentLarge,
|
|
181
181
|
styles.header,
|
|
@@ -200,7 +200,7 @@ export const PlainListView = ({ data: originalData, keyExtractor, rowHeight, gro
|
|
|
200
200
|
paddingTop: groupHeaderHeight / 4,
|
|
201
201
|
top: stickyOffset + (large ? headerHeight : 0),
|
|
202
202
|
},
|
|
203
|
-
], children: _jsx(LakeHeading, { level:
|
|
203
|
+
], children: _jsx(LakeHeading, { level: "none", variant: "h3", children: groupName }) })) : null, items.map((item, index) => {
|
|
204
204
|
const key = keyExtractor(item, index);
|
|
205
205
|
const isActive = activeRowId === key;
|
|
206
206
|
const isHovered = isNotNullish(getRowLink) && hoveredRow === key;
|
|
@@ -406,7 +406,7 @@ export const TabView = ({ tabs, otherLabel, hideIfSingleItem = true, sticky = fa
|
|
|
406
406
|
if (tabs.length <= 1 && hideIfSingleItem) {
|
|
407
407
|
return null;
|
|
408
408
|
}
|
|
409
|
-
return (_jsxs(Box, { alignItems: "center", direction: "row", role: "
|
|
409
|
+
return (_jsxs(Box, { alignItems: "center", direction: "row", role: "navigation", ref: containerRef, style: [styles.container, sticky && styles.sticky, { paddingHorizontal: padding }], children: [_jsxs(View, { style: styles.placeholder, "aria-hidden": true, ref: placeholderRef, onLayout: onLayout, children: [tabs.map(tab => {
|
|
410
410
|
const { label, icon, count, endElement } = tab;
|
|
411
411
|
const tabId = getTabId(tab);
|
|
412
412
|
return (_jsxs(Fragment, { children: [_jsxs(TabViewLink, { ref: ref => {
|
|
@@ -2,6 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useMemo } from "react";
|
|
3
3
|
import { StyleSheet, View } from "react-native";
|
|
4
4
|
import { colors, radii } from "../constants/design";
|
|
5
|
+
import { Space } from "./Space";
|
|
5
6
|
import { Tile, TileGrid } from "./Tile";
|
|
6
7
|
const styles = StyleSheet.create({
|
|
7
8
|
placeholderTitle: {
|
|
@@ -42,7 +43,7 @@ const styles = StyleSheet.create({
|
|
|
42
43
|
},
|
|
43
44
|
});
|
|
44
45
|
export const TilePlaceholder = () => {
|
|
45
|
-
return (
|
|
46
|
+
return (_jsxs(Tile, { children: [_jsx(View, { style: styles.placeholderTitle }), _jsx(Space, { height: 24 }), _jsxs(View, { style: styles.content, children: [_jsx(View, { style: styles.placeholderText }), _jsx(View, { style: styles.placeholderText }), _jsx(View, { style: styles.placeholderText }), _jsx(View, { style: styles.placeholderText })] })] }));
|
|
46
47
|
};
|
|
47
48
|
export const TileGridPlaceholder = ({ numberOfItems = 2, withTabs = true, }) => {
|
|
48
49
|
return (_jsx(View, { style: withTabs && styles.withTabs, children: _jsx(TileGrid, { children: useMemo(() => Array(numberOfItems)
|
|
@@ -393,7 +393,7 @@ export const VirtualizedList = ({ variant, data, stickedToStartColumns, columns,
|
|
|
393
393
|
}
|
|
394
394
|
}, [onEndReached, data.length]);
|
|
395
395
|
const header = useMemo(() => {
|
|
396
|
-
return (_jsxs(View, { style: [styles.headerRow, { height: headerHeight }], children: [Option.fromNullable(stickedToStartColumns)
|
|
396
|
+
return (_jsxs(View, { role: "row", style: [styles.headerRow, { height: headerHeight }], children: [Option.fromNullable(stickedToStartColumns)
|
|
397
397
|
.map(columns => (_jsx(View, { style: [
|
|
398
398
|
styles.cellsContainer,
|
|
399
399
|
styles.stickedToStartColumnGroup,
|
|
@@ -481,7 +481,7 @@ export const VirtualizedList = ({ variant, data, stickedToStartColumns, columns,
|
|
|
481
481
|
.getOr(false)) {
|
|
482
482
|
return (_jsx(ScrollView, { style: styles.container, contentContainerStyle: styles.emptyListContentContainer, children: renderEmptyList() }));
|
|
483
483
|
}
|
|
484
|
-
return (_jsxs(ScrollView, { ref: scrollViewRef, both: true, style: [styles.container, { marginHorizontal }], onScroll: onScroll, scrollEventThrottle: 32, contentContainerStyle: [
|
|
484
|
+
return (_jsxs(ScrollView, { ref: scrollViewRef, role: "table", both: true, style: [styles.container, { marginHorizontal }], onScroll: onScroll, scrollEventThrottle: 32, contentContainerStyle: [
|
|
485
485
|
styles.contentContainer,
|
|
486
486
|
{
|
|
487
487
|
height: containerContainerHeight,
|
|
@@ -512,6 +512,7 @@ const RawVirtualizedRow = ({ viewId, rowHeight, absoluteIndex, variant, stickedT
|
|
|
512
512
|
const rootElement = getRowLink != null ? (((_a = getRowLink({ item, index: absoluteIndex, extraInfo })) !== null && _a !== void 0 ? _a : _jsx(View, {}))) : (_jsx(View, {}));
|
|
513
513
|
return cloneElement(rootElement, {
|
|
514
514
|
ref: elementRef,
|
|
515
|
+
role: "row",
|
|
515
516
|
style: [
|
|
516
517
|
styles.row,
|
|
517
518
|
{
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"arrow-upload-regular": "M18.25 3.51a.75.75 0 1 0 0-1.5h-13a.75.75 0 1 0 0 1.5h13ZM11.65 22h.1c.38 0 .7-.28.74-.64l.01-.1V7.56l3.72 3.72c.27.27.68.29.98.07l.08-.07a.75.75 0 0 0 .07-.98l-.07-.08-5-5a.75.75 0 0 0-.97-.07l-.09.07-5 5a.75.75 0 0 0 .98 1.13l.08-.07L11 7.58v13.67c0 .38.28.7.65.75Z",
|
|
26
26
|
"beaker-filled": "M9 4.5v6.24c0 .37-.1.74-.27 1.07L7.53 14h8.93l-1.19-2.19c-.18-.33-.27-.7-.27-1.07V4.5h1A.75.75 0 0 0 16 3H8a.75.75 0 0 0 0 1.5h1Zm8.27 11H6.73l-1.59 2.91A1.75 1.75 0 0 0 6.68 21h10.64a1.75 1.75 0 0 0 1.54-2.59l-1.59-2.91Z",
|
|
27
27
|
"beaker-regular": "M8 4.5h1v6.24c0 .37-.1.74-.27 1.07l-3.59 6.6A1.75 1.75 0 0 0 6.68 21h10.64a1.75 1.75 0 0 0 1.54-2.59l-3.59-6.6c-.18-.33-.27-.7-.27-1.07V4.5h1A.75.75 0 0 0 16 3H8a.75.75 0 0 0 0 1.5Zm2.5 6.24V4.5h3v6.24c0 .62.16 1.24.45 1.79l.8 1.47h-5.5l.8-1.47c.3-.55.45-1.17.45-1.8ZM8.43 15.5h7.14l1.97 3.63a.25.25 0 0 1-.22.37H6.68a.25.25 0 0 1-.22-.37l1.97-3.63Z",
|
|
28
|
-
"board-filled": "M11.5
|
|
29
|
-
"board-regular": "
|
|
28
|
+
"board-filled": "M11.5 21H6.25A3.25 3.25 0 0 1 3 17.75V9.5h8.5V21Zm9.5-3.25c0 1.8-1.46 3.25-3.25 3.25H13v-5h8v1.75ZM17.75 3C19.55 3 21 4.46 21 6.25v8.25h-8V3h4.75ZM11.5 8H3V6.25C3 4.45 4.46 3 6.25 3h5.25v5Z",
|
|
29
|
+
"board-regular": "M17.75 3C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h11.5ZM4.5 17.75c0 .97.78 1.75 1.75 1.75h5.25v-10h-7v8.25ZM13 16v3.5h4.75c.97 0 1.75-.78 1.75-1.75V16H13Zm0-1.5h6.5V6.25c0-.97-.78-1.75-1.75-1.75H13v10Zm-6.75-10c-.97 0-1.75.78-1.75 1.75V8h7V4.5H6.25Z",
|
|
30
30
|
"box-regular": "M10.6 2.51c.9-.36 1.9-.36 2.8 0l7.5 3.04c.67.27 1.1.91 1.1 1.62v9.66c0 .71-.43 1.35-1.1 1.62l-7.5 3.04c-.9.37-1.9.37-2.8 0l-7.5-3.04c-.67-.27-1.1-.91-1.1-1.62V7.17c0-.7.43-1.35 1.1-1.62l7.5-3.04Zm2.25 1.4a2.25 2.25 0 0 0-1.7 0l-1.9.77 7.52 2.93 2.67-1.03-6.6-2.68Zm1.84 4.5L7.21 5.5 4.6 6.56 12 9.45l2.7-1.04ZM3.5 16.83c0 .1.06.2.16.23l7.5 3.04.09.04v-9.38L3.5 7.75v9.08Zm9.35 3.27 7.5-3.04c.09-.04.15-.13.15-.23V7.77l-7.75 3v9.37l.1-.04Z",
|
|
31
31
|
"building-bank-filled": "M10.97 2.32a1.75 1.75 0 0 1 2.06 0l7.42 5.42c.98.71.48 2.26-.73 2.26H4.28a1.25 1.25 0 0 1-.73-2.26l7.42-5.42ZM13 6.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM11.25 16h-2v-5h2v5Zm3.5 0h-2v-5h2v5Zm3.75 0h-2.25v-5h2.25v5Zm.25 1H5.25C4.01 17 3 18 3 19.25v.5c0 .41.34.75.75.75h16.5c.41 0 .75-.34.75-.75v-.5c0-1.24-1-2.25-2.25-2.25Zm-11-1H5.5v-5h2.25v5Z",
|
|
32
32
|
"building-bank-regular": "M13 6.25a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm.03-3.93a1.75 1.75 0 0 0-2.06 0L3.55 7.74c-.98.71-.48 2.26.73 2.26h.22v5.8A2.75 2.75 0 0 0 3 18.25v1.5c0 .41.34.75.75.75h16.5c.41 0 .75-.34.75-.75v-1.5c0-1.07-.61-2-1.5-2.45V10h.22c1.2 0 1.71-1.55.73-2.26l-7.42-5.42Zm-1.18 1.22c.09-.07.21-.07.3 0l6.8 4.96H5.05l6.8-4.96ZM18 10v5.5h-2V10h2Zm-3.5 0v5.5h-1.75V10h1.75Zm-3.25 0v5.5H9.5V10h1.75Zm-5.5 7h12.5c.69 0 1.25.56 1.25 1.25V19h-15v-.75c0-.69.56-1.25 1.25-1.25ZM6 15.5V10h2v5.5H6Z",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"check-regular": "M21.78 5.78a.75.75 0 0 0-1.06-1.06l-7.5 7.5a.75.75 0 1 0 1.06 1.06l7.5-7.5Zm.17 1.25c.03.17.05.34.05.52v6.9c0 1.4-1.14 2.55-2.55 2.55H4.55A2.55 2.55 0 0 1 2 14.45v-6.9C2 6.15 3.14 5 4.55 5h14.48l-1.5 1.5H4.55c-.58 0-1.05.47-1.05 1.05v6.9c0 .58.47 1.05 1.05 1.05h14.9c.58 0 1.05-.47 1.05-1.05V8.47l1.45-1.44ZM4.5 9.25c0-.41.34-.75.75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm0 3.5c0-.41.34-.75.75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Z",
|
|
47
47
|
"checkmark-circle-regular": "M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Zm-1.25 9.94 4.47-4.47a.75.75 0 0 1 1.13.98l-.07.08-5 5a.75.75 0 0 1-.98.07l-.08-.07-2.5-2.5a.75.75 0 0 1 .98-1.13l.08.07 1.97 1.97 4.47-4.47-4.47 4.47Z",
|
|
48
48
|
"checkmark-filled": "m8.5 16.59-3.8-3.8a1 1 0 0 0-1.4 1.42l4.5 4.5a1 1 0 0 0 1.4 0l11-11a1 1 0 0 0-1.4-1.42L8.5 16.6Z",
|
|
49
|
-
"checkmark-starburst-filled": "
|
|
50
|
-
"checkmark-starburst-regular": "
|
|
49
|
+
"checkmark-starburst-filled": "M6.35 3.75a2.75 2.75 0 0 1 3.81-1.58l1.29.63c.35.17.75.17 1.1 0l1.28-.63a2.75 2.75 0 0 1 3.69 1.25l.07.16.06.17.46 1.36c.13.36.42.65.78.78l1.36.46a2.75 2.75 0 0 1 1.58 3.81l-.63 1.29c-.17.35-.17.75 0 1.1l.63 1.29a2.75 2.75 0 0 1-1.58 3.81l-1.36.46c-.36.13-.65.42-.78.78l-.46 1.36a2.75 2.75 0 0 1-3.82 1.58l-1.28-.63a1.25 1.25 0 0 0-1.1 0l-1.29.63a2.75 2.75 0 0 1-3.81-1.58l-.46-1.36a1.25 1.25 0 0 0-.78-.78l-1.36-.46a2.75 2.75 0 0 1-1.58-3.81l.63-1.29c.17-.35.17-.75 0-1.1l-.63-1.29a2.75 2.75 0 0 1 1.58-3.81l1.36-.46c.36-.13.65-.42.78-.78l.46-1.36Zm9.93 5.22a.75.75 0 0 0-1.06 0l-4.47 4.47-1.97-1.97a.75.75 0 0 0-1.06 1.06l2.5 2.5c.3.3.77.3 1.06 0l5-5c.3-.3.3-.77 0-1.06Z",
|
|
50
|
+
"checkmark-starburst-regular": "M6.35 3.75a2.75 2.75 0 0 1 3.81-1.58l1.29.63c.35.17.75.17 1.1 0l1.28-.63a2.75 2.75 0 0 1 3.69 1.25l.07.16.06.17.46 1.36c.13.36.42.65.78.78l1.36.46a2.75 2.75 0 0 1 1.58 3.82l-.63 1.28c-.17.35-.17.75 0 1.1l.63 1.29a2.75 2.75 0 0 1-1.58 3.81l-1.36.46c-.36.13-.65.42-.78.78l-.46 1.36a2.75 2.75 0 0 1-3.82 1.58l-1.28-.63a1.25 1.25 0 0 0-1.1 0l-1.29.63a2.75 2.75 0 0 1-3.81-1.58l-.46-1.36a1.25 1.25 0 0 0-.78-.78l-1.36-.46a2.75 2.75 0 0 1-1.58-3.81l.63-1.29c.17-.35.17-.75 0-1.1l-.63-1.28a2.75 2.75 0 0 1 1.58-3.82l1.36-.46c.36-.13.65-.42.78-.78l.46-1.36Zm9.76.22a1.25 1.25 0 0 0-1.61-.45l-1.29.63c-.76.37-1.66.37-2.42 0L9.5 3.52a1.26 1.26 0 0 0-1.73.72L7.3 5.59c-.28.8-.91 1.44-1.72 1.72l-1.35.46c-.06.01-.1.04-.16.06-.61.3-.87 1.05-.56 1.67l.63 1.29c.37.76.37 1.66 0 2.42l-.63 1.29a1.25 1.25 0 0 0 .72 1.73l1.35.46c.8.28 1.44.91 1.72 1.72l.46 1.35c.01.06.04.1.06.15.3.62 1.05.88 1.67.57l1.29-.63a2.75 2.75 0 0 1 2.42 0l1.29.63.15.07c.65.22 1.36-.13 1.58-.79l.46-1.35c.28-.8.91-1.44 1.72-1.72l1.35-.46c.06-.01.1-.04.15-.06.62-.3.88-1.05.57-1.67l-.63-1.29a2.75 2.75 0 0 1 0-2.42l.63-1.29.07-.15a1.25 1.25 0 0 0-.79-1.58l-1.35-.46a2.75 2.75 0 0 1-1.72-1.72l-.46-1.35-.03-.08-.03-.08-.06-.1Zm-.89 5a.75.75 0 1 1 1.06 1.06l-5 5c-.3.3-.77.3-1.06 0l-2.5-2.5a.75.75 0 0 1 1.06-1.06l1.97 1.97 4.47-4.47Z",
|
|
51
51
|
"chevron-down-filled": "M4.3 8.3a1 1 0 0 1 1.4 0l6.3 6.29 6.3-6.3a1 1 0 1 1 1.4 1.42l-7 7a1 1 0 0 1-1.4 0l-7-7a1 1 0 0 1 0-1.42Z",
|
|
52
52
|
"chevron-left-filled": "M15.7 4.3a1 1 0 0 1 0 1.4L9.42 12l6.3 6.3a1 1 0 0 1-1.42 1.4l-7-7a1 1 0 0 1 0-1.4l7-7a1 1 0 0 1 1.42 0Z",
|
|
53
53
|
"chevron-right-filled": "M8.3 4.3a1 1 0 0 0 0 1.4l6.29 6.3-6.3 6.3a1 1 0 1 0 1.42 1.4l7-7a1 1 0 0 0 0-1.4l-7-7a1 1 0 0 0-1.42 0Z",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"gift-regular": "M14.5 2a3.25 3.25 0 0 1 2.74 5h2.51c.69 0 1.25.56 1.25 1.25v3.5c0 .6-.43 1.1-1 1.22v5.78a3.25 3.25 0 0 1-3.07 3.24l-.18.01h-9.5a3.25 3.25 0 0 1-3.24-3.07L4 18.75v-5.78c-.57-.11-1-.62-1-1.22v-3.5C3 7.56 3.56 7 4.25 7h2.51A3.25 3.25 0 0 1 12 3.17C12.6 2.46 13.5 2 14.5 2Zm-3.25 11H5.5v5.75c0 .92.7 1.67 1.6 1.74l.15.01h4V13Zm7.25 0h-5.75v7.5h4c.92 0 1.67-.7 1.74-1.6l.01-.15V13Zm-7.25-4.5H4.5v3h6.75v-3Zm8.25 3v-3h-6.75v3h6.75Zm-5-8c-.97 0-1.75.78-1.75 1.75V7H14.64a1.75 1.75 0 0 0-.14-3.5Zm-5 0A1.75 1.75 0 0 0 9.36 7H11.25V5.1c-.08-.9-.83-1.61-1.75-1.61Z",
|
|
105
105
|
"hand-right-regular": "M12 4v6.25a.75.75 0 0 0 1.5 0V5.22c0-.24.2-.47.5-.48.26 0 .5.25.5.5v7.5a.75.75 0 0 0 1.3.52 2.23 2.23 0 0 1 .12-.12c.1-.08.23-.2.4-.32.36-.25.81-.5 1.3-.58.54-.1 1.05-.04 1.4.14.2.1.36.26.44.53l-1.66 1.24a.76.76 0 0 0-.08.07l-2.18 2.17c-.93.94-1.7 2.02-2.3 3.2-.28.56-.85.91-1.47.91H9.04a1.5 1.5 0 0 1-1.33-.71C6.98 18.53 6 16.5 6 14.75V7c0-.27.22-.5.5-.5.29 0 .5.23.5.5v3.5a.75.75 0 0 0 1.5 0V5.25c0-.28.22-.5.5-.5.29 0 .5.22.5.5v5a.75.75 0 0 0 1.5 0V4c0-.28.21-.5.5-.5.29 0 .5.22.5.5Zm1.99-.76c-.21 0-.42.04-.6.1Zm-.6.1A1.98 1.98 0 0 0 11.49 2c-.9 0-1.61.58-1.88 1.34a2 2 0 0 0-2.6 1.73A2 2 0 0 0 4.5 7v7.74c0 2.18 1.17 4.51 1.92 5.8A3 3 0 0 0 9.04 22h2.73c1.19 0 2.28-.67 2.81-1.74.52-1.04 1.2-1.98 2.02-2.8l2.14-2.14 1.96-1.47c.19-.14.3-.37.3-.6 0-1.06-.53-1.8-1.3-2.2a3.76 3.76 0 0 0-2.33-.29c-.52.1-.99.29-1.37.5V5.25c0-1.06-.89-2.01-2.01-2",
|
|
106
106
|
"heart-pulse-regular": "M12.82 5.58 12 6.4l-.82-.82A5.37 5.37 0 0 0 2.25 11h1.6a3.88 3.88 0 0 1 6.27-4.36L11.47 8c.3.3.79.29 1.08-.02l1.33-1.34A3.88 3.88 0 0 1 20.15 11h1.6a5.37 5.37 0 0 0-8.93-5.42Zm-1.35 15.5L4.89 14.5h2.12L12 19.47l4.99-4.98h2.12l-6.58 6.58c-.3.29-.77.29-1.06 0ZM9.42 8.4a.75.75 0 0 0-1.35.02L6.38 12H2.75a.75.75 0 0 0 0 1.5h4.1c.3 0 .56-.17.69-.43l1.23-2.6 2.56 5.11a.75.75 0 0 0 1.28.1l2.7-3.73 1.13 1.3c.14.16.34.25.56.25h4.25a.75.75 0 0 0 0-1.5h-3.91l-1.53-1.74a.75.75 0 0 0-1.17.05l-2.52 3.5-2.7-5.4Z",
|
|
107
|
-
"home-person-regular": "
|
|
107
|
+
"home-person-regular": "M20.23 17c.98 0 1.77.8 1.77 1.77v.1c0 1.56-1.29 3.13-4.5 3.13S13 20.44 13 18.87v-.1c0-.98.8-1.77 1.77-1.77h5.46ZM10.55 2.53c.84-.7 2.06-.7 2.9 0l6.75 5.7c.5.43.8 1.05.8 1.72v1.84c0 .12-.1.21-.2.21a.22.22 0 0 1-.2-.12c-.26-.5-.64-.93-1.1-1.25v-.68c0-.22-.1-.43-.27-.58l-6.75-5.7a.75.75 0 0 0-.96 0l-6.75 5.7a.75.75 0 0 0-.27.58v8.8c0 .41.34.75.75.75h6.8c.1.53.3 1.04.61 1.5H5.25C4.01 21 3 20 3 18.75v-8.8c0-.67.3-1.3.8-1.72l6.75-5.7ZM17.5 11a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z",
|
|
108
108
|
"home-regular": "M10.55 2.53c.84-.7 2.06-.7 2.9 0l6.75 5.7c.5.42.8 1.05.8 1.71v9.31c0 .97-.78 1.75-1.75 1.75h-3.5c-.97 0-1.75-.78-1.75-1.75v-5a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25v5c0 .97-.78 1.75-1.75 1.75h-3.5C3.78 21 3 20.22 3 19.25v-9.3c0-.67.3-1.3.8-1.73l6.75-5.69Zm1.93 1.15a.75.75 0 0 0-.96 0l-6.75 5.7a.75.75 0 0 0-.27.56v9.31c0 .14.11.25.25.25h3.5c.14 0 .25-.1.25-.25v-5c0-.97.78-1.75 1.75-1.75h3.5c.97 0 1.75.78 1.75 1.75v5c0 .14.11.25.25.25h3.5c.14 0 .25-.1.25-.25v-9.3c0-.23-.1-.44-.27-.58l-6.75-5.7Z",
|
|
109
109
|
"image-add-filled": "M12 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM7 7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 1 0V6h2.5a.5.5 0 0 1 0 1H7Zm-.5 6a6.5 6.5 0 0 0 5.48-10h5.77C19.55 3 21 4.46 21 6.25v11.5c0 .63-.18 1.21-.49 1.7l-6.93-6.8-.13-.12c-.83-.7-2.06-.7-2.9 0l-.13.12-6.93 6.8c-.31-.49-.49-1.07-.49-1.7v-5.77A6.47 6.47 0 0 0 6.5 13Zm8.75-2.25a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-3.7 2.9-.08.07-6.92 6.8c.5.3 1.08.48 1.7.48h11.5c.62 0 1.2-.18 1.7-.48l-6.92-6.8-.1-.08a.75.75 0 0 0-.87 0Z",
|
|
110
110
|
"image-add-regular": "M12 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM7 7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 1 0V6h2.5a.5.5 0 0 1 0 1H7Zm10.75-2.5h-5.06a6.47 6.47 0 0 0-.71-1.5h5.77C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75v-5.77c.46.3.97.53 1.5.7v5.07c0 .2.04.4.1.6l5.83-5.7a2.25 2.25 0 0 1 3.02-.12l.12.11 5.83 5.7c.06-.18.1-.38.1-.59V6.25c0-.97-.78-1.75-1.75-1.75Zm.58 14.9-5.8-5.69a.75.75 0 0 0-.97-.07l-.08.07-5.81 5.7c.18.06.38.09.58.09h11.5c.2 0 .4-.03.58-.1ZM15.25 6.5a2.25 2.25 0 1 1 0 4.5 2.25 2.25 0 0 1 0-4.5Zm0 1.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z",
|
|
@@ -116,14 +116,14 @@
|
|
|
116
116
|
"laptop-regular": "M6.25 4C5.01 4 4 5 4 6.25v7.5C4 14.99 5 16 6.25 16h11.5c1.24 0 2.25-1 2.25-2.25v-7.5C20 5.01 19 4 17.75 4H6.25ZM5.5 6.25c0-.41.34-.75.75-.75h11.5c.41 0 .75.34.75.75v7.5c0 .41-.34.75-.75.75H6.25a.75.75 0 0 1-.75-.75v-7.5ZM2.75 17.5a.75.75 0 0 0 0 1.5h18.5a.75.75 0 0 0 0-1.5H2.75Z",
|
|
117
117
|
"lightbulb-regular": "M12 2c4 0 7.25 3.25 7.25 7.25 0 2.1-.9 4.02-2.66 5.74a.75.75 0 0 0-.18.27l-.03.1-1.13 4.9a2.25 2.25 0 0 1-2.02 1.73l-.17.01h-2.12c-.99 0-1.85-.65-2.14-1.58l-.05-.16-1.13-4.9a.75.75 0 0 0-.2-.37c-1.68-1.64-2.58-3.46-2.66-5.44l-.01-.3v-.24a7.25 7.25 0 0 1 7.25-7Zm2.12 16.5H9.88l.33 1.42c.07.3.33.53.63.57l.1.01h2.12c.31 0 .59-.2.7-.48l.03-.1.33-1.42ZM12 3.5a5.75 5.75 0 0 0-5.75 5.53v.5c.08 1.56.8 3.02 2.21 4.39.27.26.46.58.57.93l.05.17.46 1.98h4.92l.46-1.98c.08-.36.25-.69.5-.97l.12-.13c1.4-1.37 2.13-2.83 2.2-4.4l.01-.27v-.22A5.75 5.75 0 0 0 12 3.5Z",
|
|
118
118
|
"link-filled": "M9 7a1 1 0 0 1 .12 2H7a3 3 0 0 0-.18 6H9a1 1 0 0 1 .12 2H7a5 5 0 0 1-.22-10H9Zm8 0a5 5 0 0 1 .22 10H15a1 1 0 0 1-.12-2H17a3 3 0 0 0 .18-6H15a1 1 0 0 1-.12-2H17ZM7 11h10a1 1 0 0 1 .12 2H7a1 1 0 0 1-.12-2H17 7Z",
|
|
119
|
-
"live-filled": "
|
|
119
|
+
"live-filled": "M4.93 4.93a1 1 0 0 1 1.41 1.41 8 8 0 0 0 0 11.32 1 1 0 0 1-1.4 1.41 10 10 0 0 1 0-14.14Zm12.73 0a1 1 0 0 1 1.41 0 10 10 0 0 1 0 14.14 1 1 0 0 1-1.41-1.41 8 8 0 0 0 0-11.32 1 1 0 0 1 0-1.41Zm-9.9 2.83a1 1 0 0 1 1.41 1.41 4 4 0 0 0 0 5.66 1 1 0 0 1-1.41 1.41 6 6 0 0 1 0-8.48Zm7.07 0a1 1 0 0 1 1.41 0 6 6 0 0 1 0 8.48 1 1 0 0 1-1.41-1.41 4 4 0 0 0 0-5.66 1 1 0 0 1 0-1.41ZM12 10.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z",
|
|
120
120
|
"live-regular": "M5.99 4.93c.3.3.3.77 0 1.06a8.5 8.5 0 0 0 0 12.02.75.75 0 0 1-1.06 1.06 10 10 0 0 1 0-14.14c.3-.3.77-.3 1.06 0Zm13.08 0a10 10 0 0 1 0 14.14.75.75 0 0 1-1.06-1.06 8.5 8.5 0 0 0 0-12.02.75.75 0 1 1 1.06-1.06ZM8.82 7.76c.3.29.3.76 0 1.06a4.5 4.5 0 0 0 0 6.36.75.75 0 0 1-1.06 1.06 6 6 0 0 1 0-8.48c.29-.3.77-.3 1.06 0Zm7.42 0a6 6 0 0 1 0 8.48.75.75 0 1 1-1.06-1.06 4.5 4.5 0 0 0 0-6.36.75.75 0 0 1 1.06-1.06ZM12 10.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z",
|
|
121
121
|
"local-language-filled": "m9.56 7.5.06.12 5.3 13a1 1 0 0 1-1.8.87l-.05-.1-1.38-3.4H5.41l-1.5 3.42a1 1 0 0 1-1.2.55l-.11-.04a1 1 0 0 1-.56-1.2l.04-.12 5.7-13a1 1 0 0 1 1.78-.1ZM19 2a1 1 0 0 1 1 .88V7h1a1 1 0 0 1 1 .88V8a1 1 0 0 1-.88 1H20v7a1 1 0 0 1-.88 1H19a1 1 0 0 1-1-.88V3a1 1 0 0 1 1-1ZM8.66 10.57 6.28 16h4.6l-2.22-5.43ZM11 2h5a1 1 0 0 1 1 .88V5.97a4 4 0 0 1-4 4 1 1 0 1 1 0-2 2 2 0 0 0 2-1.85V4h-4a1 1 0 0 1-.12-2H16h-5Z",
|
|
122
122
|
"local-language-regular": "m9.34 6.37.05.1 5.56 14.5a.75.75 0 0 1-.42.98.73.73 0 0 1-.9-.33l-.05-.1-1.43-3.73h-7.1l-.08-.01-1.55 3.76a.73.73 0 0 1-.96.4.75.75 0 0 1-.43-.88l.03-.1 5.97-14.5a.73.73 0 0 1 1.31-.09ZM18.74 2c.39 0 .7.29.75.65V7.5h1.76c.38 0 .69.28.74.65v.1c0 .38-.28.7-.64.74l-.1.01H19.5v7.25c0 .38-.29.7-.65.74l-.1.01a.75.75 0 0 1-.75-.65V2.75c0-.41.33-.75.75-.75ZM8.82 8.75l-3.16 7.54h6.1L8.82 8.75ZM10.75 2h5.5c.38 0 .69.29.74.65v3.1C17 8.1 15.1 10 12.76 10a.75.75 0 0 1 0-1.5 2.75 2.75 0 0 0 2.74-2.58V3.5h-4.74a.75.75 0 0 1-.1-1.49h5.6-5.5Z",
|
|
123
|
-
"lock-closed-filled": "
|
|
124
|
-
"lock-closed-regular": "M12
|
|
125
|
-
"lock-open-filled": "
|
|
126
|
-
"lock-open-regular": "
|
|
123
|
+
"lock-closed-filled": "M12 1a5 5 0 0 1 5 5v2.01c1.68.13 3 1.53 3 3.24v7.5c0 1.8-1.46 3.25-3.25 3.25h-9.5A3.25 3.25 0 0 1 4 18.75v-7.5a3.25 3.25 0 0 1 3-3.24V6a5 5 0 0 1 5-5Zm0 12.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM12 2.5A3.5 3.5 0 0 0 8.5 6v2h7V6A3.5 3.5 0 0 0 12 2.5Z",
|
|
124
|
+
"lock-closed-regular": "M12 1a5 5 0 0 1 5 5v2.01c1.68.13 3 1.53 3 3.24v7.5c0 1.8-1.46 3.25-3.25 3.25h-9.5A3.25 3.25 0 0 1 4 18.75v-7.5a3.25 3.25 0 0 1 3-3.24V6a5 5 0 0 1 5-5ZM7.25 9.5c-.97 0-1.75.78-1.75 1.75v7.5c0 .97.78 1.75 1.75 1.75h9.5c.97 0 1.75-.78 1.75-1.75v-7.5c0-.97-.78-1.75-1.75-1.75h-9.5ZM12 13.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5ZM12 2.5A3.5 3.5 0 0 0 8.5 6v2h7V6A3.5 3.5 0 0 0 12 2.5Z",
|
|
125
|
+
"lock-open-filled": "M18.75 1a4.75 4.75 0 0 1 4.75 4.75v.5a.75.75 0 0 1-1.5 0v-.5a3.25 3.25 0 0 0-6.5 0V8h1.25C18.55 8 20 9.46 20 11.25v7.5c0 1.8-1.46 3.25-3.25 3.25h-9.5A3.25 3.25 0 0 1 4 18.75v-7.5C4 9.45 5.46 8 7.25 8H14V5.75A4.75 4.75 0 0 1 18.75 1ZM12 13.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z",
|
|
126
|
+
"lock-open-regular": "M18.75 1a4.75 4.75 0 0 1 4.75 4.75v.5a.75.75 0 0 1-1.5 0v-.5a3.25 3.25 0 0 0-6.5 0V8h1.25C18.55 8 20 9.46 20 11.25v7.5c0 1.8-1.46 3.25-3.25 3.25h-9.5A3.25 3.25 0 0 1 4 18.75v-7.5C4 9.45 5.46 8 7.25 8H14V5.75A4.75 4.75 0 0 1 18.75 1ZM7.25 9.5c-.97 0-1.75.78-1.75 1.75v7.5c0 .97.78 1.75 1.75 1.75h9.5c.97 0 1.75-.78 1.75-1.75v-7.5c0-.97-.78-1.75-1.75-1.75h-9.5ZM12 13.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z",
|
|
127
127
|
"mail-filled": "M22 8.6v8.15a3.25 3.25 0 0 1-3.07 3.24l-.18.01H5.25a3.25 3.25 0 0 1-3.24-3.07L2 16.75V8.61l9.65 5.05c.22.12.48.12.7 0L22 8.61ZM5.25 4h13.5a3.25 3.25 0 0 1 3.23 2.92L12 12.15 2.02 6.92a3.25 3.25 0 0 1 3.04-2.91L5.25 4h13.5-13.5Z",
|
|
128
128
|
"mail-regular": "M5.25 4h13.5a3.25 3.25 0 0 1 3.24 3.07l.01.18v9.5a3.25 3.25 0 0 1-3.07 3.24l-.18.01H5.25a3.25 3.25 0 0 1-3.24-3.07L2 16.75v-9.5a3.25 3.25 0 0 1 3.07-3.24L5.25 4h13.5-13.5ZM20.5 9.37l-8.15 4.3c-.19.1-.4.1-.6.04l-.1-.05L3.5 9.37v7.38c0 .92.7 1.67 1.6 1.74l.15.01h13.5c.92 0 1.67-.7 1.74-1.6l.01-.15V9.37ZM18.75 5.5H5.25c-.92 0-1.67.7-1.74 1.6l-.01.15v.43l8.5 4.47 8.5-4.47v-.43c0-.92-.7-1.67-1.6-1.74l-.15-.01Z",
|
|
129
129
|
"money-calculator-filled": "M2 5.75C2 4.78 2.78 4 3.75 4h13.5c.97 0 1.75.78 1.75 1.75V11h-3a2 2 0 0 0-2 2v3H3.75C2.78 16 2 15.22 2 14.25v-8.5Zm3 .5c0 .41-.34.75-.75.75h-1v1.5h1c1.24 0 2.25-1 2.25-2.25v-1H5v1Zm5.5 6.25a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Zm-6.25.5c.41 0 .75.34.75.75v1h1.5v-1c0-1.24-1-2.25-2.25-2.25h-1V13h1Zm12.5-6a.75.75 0 0 1-.75-.75v-1h-1.5v1c0 1.24 1 2.25 2.25 2.25h1V7h-1ZM4.4 17.5H14V19H7a3 3 0 0 1-2.6-1.5ZM22 9v2h-1.5V6.4A3 3 0 0 1 22 9Zm-5.5 3c-.83 0-1.5.67-1.5 1.5v8c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-8c0-.83-.67-1.5-1.5-1.5h-5Zm.5 4.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1Zm3 0h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1Zm-3 2h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1Zm3 0h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1Zm-3 2h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1Zm3 0h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1ZM16.5 14c0-.28.22-.5.5-.5h4c.28 0 .5.22.5.5v1a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-1Z",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"music-note-2-regular": "M19.7 2.15c.19.14.3.36.3.6V16.5a3.5 3.5 0 1 1-1.5-2.87V7.76L10 10.3v8.19a3.5 3.5 0 1 1-1.5-2.87V5.75c0-.33.22-.62.53-.72l10-3a.75.75 0 0 1 .67.12ZM10 8.75l8.5-2.56V3.76L10 6.3v2.43ZM6.5 16.5a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm8 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0Z",
|
|
137
137
|
"open-filled": "M6.25 5C5.56 5 5 5.56 5 6.25v11.5c0 .69.56 1.25 1.25 1.25h11.5c.69 0 1.25-.56 1.25-1.25V14a1 1 0 1 1 2 0v3.75c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3H10a1 1 0 1 1 0 2H6.25ZM14 5a1 1 0 1 1 0-2h6a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V6.41l-4.3 4.3a1 1 0 0 1-1.4-1.42L17.58 5H14Z",
|
|
138
138
|
"open-regular": "M6.25 4.5c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h11.5c.97 0 1.75-.78 1.75-1.75v-4a.75.75 0 0 1 1.5 0v4c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h4a.75.75 0 0 1 0 1.5h-4ZM13 3.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v6.5a.75.75 0 0 1-1.5 0V5.56l-5.22 5.22a.75.75 0 0 1-1.06-1.06l5.22-5.22h-4.69a.75.75 0 0 1-.75-.75Z",
|
|
139
|
-
"options-regular": "M8.75
|
|
139
|
+
"options-regular": "M8.75 14.5a3.25 3.25 0 0 1 3.16 2.5h9.34a.75.75 0 0 1 .1 1.5h-9.44a3.25 3.25 0 0 1-6.32 0H2.75a.75.75 0 0 1-.1-1.5h2.94a3.25 3.25 0 0 1 3.16-2.5Zm0 1.5a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Zm6.5-13a3.25 3.25 0 0 1 3.16 2.5h2.84a.75.75 0 0 1 .1 1.5h-2.94a3.25 3.25 0 0 1-6.32 0H2.75a.75.75 0 0 1-.1-1.5h9.44A3.25 3.25 0 0 1 15.25 3Zm0 1.5a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Z",
|
|
140
140
|
"paint-brush-filled": "M12.5 2v3.25a.75.75 0 0 0 1.5 0V2h1v4.25a.75.75 0 0 0 1.5 0V2h1.75c.41 0 .75.34.75.75V11H5V2.75c0-.41.34-.75.75-.75h6.75ZM5 12.5v1.75c0 1.24 1 2.25 2.25 2.25H10V20a2 2 0 1 0 4 0v-3.5h2.75c1.24 0 2.25-1 2.25-2.25V12.5H5Z",
|
|
141
141
|
"paint-brush-regular": "M5.75 2a.75.75 0 0 0-.75.75v11.5c0 1.24 1 2.25 2.25 2.25H9.5v3a2.5 2.5 0 1 0 5 0v-3h2.25c1.24 0 2.25-1 2.25-2.25V2.75a.75.75 0 0 0-.75-.75H5.75Zm.75 9V3.5h6v1.75a.75.75 0 1 0 1.5 0V3.5h1v2.75a.75.75 0 1 0 1.5 0V3.5h1V11h-11Zm0 3.25V12.5h11v1.75c0 .41-.34.75-.75.75h-3a.75.75 0 0 0-.75.75v3.75a1 1 0 0 1-2 0v-3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 1-.75-.75Z",
|
|
142
142
|
"panel-left-contract-filled": "M14.8 9.25a.75.75 0 0 0-1.05-.06l-2.5 2.25a.75.75 0 0 0 0 1.12l2.5 2.25a.75.75 0 1 0 1-1.12l-1.05-.94h3.55a.75.75 0 0 0 0-1.5H13.7l1.05-.94c.31-.28.33-.75.06-1.06ZM2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM9 5.5v13h10.25c.69 0 1.25-.56 1.25-1.25V6.75c0-.69-.56-1.25-1.25-1.25H9Z",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
"receipt-money-filled": "M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-5.8c.03-.16.05-.33.05-.5v-4a2.5 2.5 0 0 0-2.5-2.5H4V5.25ZM18 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM7.5 7.75c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75ZM8.25 11a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM2.5 15c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-8Zm7.5 1a1 1 0 0 0 1 1v1a2 2 0 0 1-2-2h1Zm-1 5c0-1.1.9-2 2-2v1a1 1 0 0 0-1 1H9Zm-7-4a1 1 0 0 0 1-1h1a2 2 0 0 1-2 2v-1Zm0 2a2 2 0 0 1 2 2H3a1 1 0 0 0-1-1v-1Zm4.5-2.25a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5Z",
|
|
177
177
|
"receipt-money-regular": "M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-5.8c.03-.16.05-.33.05-.5v-1h3.5V5.25a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75V14H4V5.25ZM18 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM8.25 7a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm-.75 4.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75ZM2.5 15c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-8Zm7.5 1a1 1 0 0 0 1 1v1a2 2 0 0 1-2-2h1Zm-1 5c0-1.1.9-2 2-2v1a1 1 0 0 0-1 1H9Zm-7-4a1 1 0 0 0 1-1h1a2 2 0 0 1-2 2v-1Zm0 2a2 2 0 0 1 2 2H3a1 1 0 0 0-1-1v-1Zm4.5-2.25a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5Z",
|
|
178
178
|
"rocket-regular": "M13.06 7.43a2.5 2.5 0 1 1 3.53 3.54 2.5 2.5 0 0 1-3.53-3.54Zm2.47 1.06a1 1 0 1 0-1.41 1.42 1 1 0 0 0 1.41-1.42Zm5.98-4.17a2.75 2.75 0 0 0-1.81-1.8l-.66-.21c-2.4-.75-5-.1-6.78 1.67l-1 1a3.5 3.5 0 0 0-4.56.32L5.45 6.55c-.29.29-.29.76 0 1.06l1.6 1.59-.18.18c-.69.68-.69 1.79 0 2.47l.5.5-1.4.8a.75.75 0 0 0-.16 1.17l3.89 3.9a.75.75 0 0 0 1.18-.16l.8-1.4.5.5c.68.68 1.78.68 2.47 0l.17-.18 1.6 1.6c.29.28.76.28 1.05 0l1.25-1.25a3.5 3.5 0 0 0 .32-4.57l1-1A6.75 6.75 0 0 0 21.72 5l-.21-.67Zm-2.26-.38c.4.13.7.43.83.83l.2.66c.58 1.86.08 3.9-1.3 5.27l-5.4 5.4c-.1.1-.25.1-.35 0l-5.3-5.3a.25.25 0 0 1 0-.36l5.4-5.4a5.25 5.25 0 0 1 5.26-1.3l.66.2Zm-1.29 9.9a2 2 0 0 1-.3 2.43l-.72.71-1.06-1.06 2.08-2.08ZM7.76 6.36a2 2 0 0 1 2.43-.3L8.1 8.14 7.05 7.08l.7-.72Zm2.82 9.2-.52.9-2.5-2.5.9-.51 2.12 2.11ZM6.69 18.4a.75.75 0 0 0-1.06-1.06l-2.48 2.48a.75.75 0 0 0 1.06 1.06l2.48-2.48Zm-1.94-3c.29.3.29.77 0 1.06l-1.07 1.06a.75.75 0 0 1-1.06-1.06l1.06-1.06c.3-.3.77-.3 1.07 0Zm3.88 4.95a.75.75 0 1 0-1.06-1.06l-1.06 1.06a.75.75 0 0 0 1.06 1.06l1.06-1.06Z",
|
|
179
|
-
"search-filled": "
|
|
179
|
+
"search-filled": "M15.84 17.37a8 8 0 1 1 1.43-1.4l4.43 4.31a1 1 0 1 1-1.4 1.44l-4.46-4.35ZM17 11a6 6 0 1 0-12 0 6 6 0 0 0 12 0Z",
|
|
180
180
|
"send-filled": "m12.81 12.2-7.53 1.25a.5.5 0 0 0-.38.32l-2.6 6.96a.75.75 0 0 0 1.03.94l18-9a.75.75 0 0 0 0-1.34l-18-9a.75.75 0 0 0-1.03.94l2.6 6.96a.5.5 0 0 0 .38.32l7.53 1.25a.2.2 0 0 1 0 .4Z",
|
|
181
181
|
"send-regular": "M5.7 12 2.3 3.27a.75.75 0 0 1 .94-.98l.1.04 18 9c.51.26.54.97.1 1.28l-.1.06-18 9a.75.75 0 0 1-1.07-.85l.03-.1L5.7 12 2.3 3.27 5.7 12ZM4.4 4.54l2.61 6.7 6.63.01c.38 0 .7.28.74.65v.1c0 .38-.27.7-.64.74l-.1.01H7l-2.6 6.7L19.31 12 4.4 4.54Z",
|
|
182
182
|
"settings-filled": "M12.01 2.25c.74 0 1.47.1 2.18.25.32.07.55.33.59.65l.17 1.53a1.38 1.38 0 0 0 1.92 1.11l1.4-.61c.3-.13.64-.06.85.17a9.8 9.8 0 0 1 2.2 3.8c.1.3 0 .63-.26.82l-1.25.92a1.38 1.38 0 0 0 0 2.22l1.25.92c.26.19.36.52.27.82a9.8 9.8 0 0 1-2.2 3.8.75.75 0 0 1-.85.17l-1.4-.62a1.38 1.38 0 0 0-1.93 1.12l-.17 1.52a.75.75 0 0 1-.58.65 9.52 9.52 0 0 1-4.4 0 .75.75 0 0 1-.57-.65l-.17-1.52a1.38 1.38 0 0 0-1.93-1.11l-1.4.62a.75.75 0 0 1-.85-.18 9.8 9.8 0 0 1-2.2-3.8c-.1-.3 0-.63.26-.82l1.25-.92a1.38 1.38 0 0 0 0-2.22l-1.24-.92a.75.75 0 0 1-.28-.82 9.8 9.8 0 0 1 2.2-3.8c.23-.23.57-.3.86-.17l1.4.62c.4.17.86.15 1.25-.08.38-.22.63-.6.68-1.04l.17-1.53a.75.75 0 0 1 .58-.65c.72-.16 1.45-.24 2.2-.25ZM12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z",
|
|
@@ -184,6 +184,7 @@
|
|
|
184
184
|
"shield-task-regular": "M16.76 9.3a.75.75 0 0 0-1.02-1.1l-5.47 5.01-1.99-1.99a.75.75 0 0 0-1.06 1.06l2.5 2.5c.28.28.74.3 1.04.02l6-5.5ZM20.25 5c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75ZM4.5 6.48a14.36 14.36 0 0 0 7.5-2.8 14.36 14.36 0 0 0 7.5 2.8V11c0 4.26-2.45 7.38-7.5 9.44-5.05-2.06-7.5-5.18-7.5-9.44V6.48Z",
|
|
185
185
|
"shield-checkmark-filled": "M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 .34-.01.67-.04 1a6.5 6.5 0 0 0-8.33 9.8l-.36.15a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-2.15-2.35c.2.2.2.5 0 .7l-4 4a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 .7-.7l1.65 1.64 3.65-3.64c.2-.2.5-.2.7 0Z",
|
|
186
186
|
"shield-checkmark-regular": "M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 .34-.01.67-.04 1a6.47 6.47 0 0 0-1.46-.69V6.48a14.36 14.36 0 0 1-7.5-2.8 14.36 14.36 0 0 1-7.5 2.8V11c0 4.15 2.33 7.22 7.13 9.28.26.56.6 1.07 1 1.52l-.36.15a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0l-3.65 3.64-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z",
|
|
187
|
+
"shield-error-filled": "M20.25 5c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75Zm-9 2.63a.75.75 0 0 1 1.5 0V14.33a.75.75 0 0 1-1.5 0V7.63ZM12 18a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z",
|
|
187
188
|
"shield-error-regular": "M20.25 5c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75ZM4.5 6.48a14.36 14.36 0 0 0 7.5-2.8 14.36 14.36 0 0 0 7.5 2.8V11c0 4.26-2.45 7.38-7.5 9.44-5.05-2.06-7.5-5.18-7.5-9.44V6.48Zm8.24 1.17a.75.75 0 0 0-1.49.1v6.6a.75.75 0 0 0 1.5-.1v-6.6ZM12 18a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
|
|
188
189
|
"shield-regular": "M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 5-2.96 8.68-8.73 10.95a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75Zm1.5.73V11c0 4.26 2.45 7.38 7.5 9.44 5.05-2.06 7.5-5.18 7.5-9.44V6.48a14.36 14.36 0 0 1-7.5-2.8 14.36 14.36 0 0 1-7.5 2.8Z",
|
|
189
190
|
"shopping-bag-regular": "M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v10a3.5 3.5 0 0 1-3.5 3.5H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm6.63 13.5a3.48 3.48 0 0 1-.62-2v-10H5.5V18A2.5 2.5 0 0 0 8 20.5h5.63ZM11.5 7V5a1.5 1.5 0 0 0-3 0v2h3ZM13 7h2.5V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v2Zm1.51 11.5a2 2 0 0 0 3.99 0v-10h-3.99v10Z",
|
|
@@ -196,8 +197,8 @@
|
|
|
196
197
|
"task-list-square-ltr-filled": "M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25Zm9.5 3c0 .41.34.75.75.75h3.5a.75.75 0 0 0 0-1.5h-3.5a.75.75 0 0 0-.75.75Zm.75 4.75a.75.75 0 1 0 0 1.5h3.5a.75.75 0 1 0 0-1.5h-3.5Zm-2.47-5.22a.75.75 0 1 0-1.06-1.06L8.25 9.19l-.47-.47a.75.75 0 0 0-1.06 1.06l1 1c.3.3.77.3 1.06 0l2-2Zm0 4.44a.75.75 0 0 0-1.06 0l-1.47 1.47-.47-.47a.75.75 0 0 0-1.06 1.06l1 1c.3.3.77.3 1.06 0l2-2c.3-.3.3-.77 0-1.06Z",
|
|
197
198
|
"task-list-square-ltr-regular": "M12.5 9.25c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Zm.75 4.75a.75.75 0 1 0 0 1.5h3.5a.75.75 0 1 0 0-1.5h-3.5Zm-2.47-5.22a.75.75 0 1 0-1.06-1.06L8.25 9.19l-.47-.47a.75.75 0 0 0-1.06 1.06l1 1c.3.3.77.3 1.06 0l2-2Zm0 4.44c.3.3.3.77 0 1.06l-2 2c-.3.3-.77.3-1.06 0l-1-1a.75.75 0 1 1 1.06-1.06l.47.47 1.47-1.47c.3-.3.77-.3 1.06 0ZM6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM4.5 6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v11.5c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V6.25Z",
|
|
198
199
|
"vehicle-subway-regular": "M16.25 3A3.75 3.75 0 0 1 20 6.75v9a3.75 3.75 0 0 1-2.89 3.65l2.46 1.17a.75.75 0 0 1-.55 1.4l-.1-.04-5.09-2.43h-3.66l-5.1 2.43a.75.75 0 1 1-.64-1.36l2.46-1.17A3.75 3.75 0 0 1 4 15.75v-9A3.75 3.75 0 0 1 7.75 3h8.5Zm2.25 11h-13v1.75c0 1.24 1 2.25 2.25 2.25h8.5c1.24 0 2.25-1 2.25-2.25V14ZM8 15a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm8 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm.25-10.5h-8.5c-1.24 0-2.25 1-2.25 2.25v5.75h13V6.75c0-1.24-1-2.25-2.25-2.25Zm-3 1.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1 0-1.5h2.5Z",
|
|
199
|
-
"warning-filled": "
|
|
200
|
-
"warning-regular": "
|
|
200
|
+
"warning-filled": "M9.14 3.7a3.25 3.25 0 0 1 5.72 0l6.74 12.5a3.25 3.25 0 0 1-2.86 4.8H5.25a3.25 3.25 0 0 1-2.86-4.8L9.14 3.7ZM12 15a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0-7.5a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0v-4.5A.75.75 0 0 0 12 7.5Z",
|
|
201
|
+
"warning-regular": "M9.14 3.7a3.25 3.25 0 0 1 5.72 0l6.74 12.5a3.25 3.25 0 0 1-2.86 4.8H5.25a3.25 3.25 0 0 1-2.86-4.8L9.14 3.7Zm4.4.72a1.75 1.75 0 0 0-3.08 0L3.7 16.92a1.75 1.75 0 0 0 1.54 2.58h13.5a1.75 1.75 0 0 0 1.53-2.58l-6.74-12.5ZM12 15a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm0-7.5c.41 0 .75.34.75.75v4.5a.75.75 0 0 1-1.5 0v-4.5c0-.41.34-.75.75-.75Z",
|
|
201
202
|
"wifi-1-regular": "M17.74 10.75c.6.6 1.1 1.3 1.5 2.07a.75.75 0 1 1-1.34.68 6.56 6.56 0 0 0-11.71-.02.75.75 0 1 1-1.34-.67 8.06 8.06 0 0 1 12.9-2.06Zm-2.1 3.07c.45.45.82 1 1.08 1.58a.75.75 0 1 1-1.38.6A3.6 3.6 0 0 0 8.75 16a.75.75 0 1 1-1.37-.6 5.1 5.1 0 0 1 8.26-1.57Zm4.8-5.54c.52.5 1 1.09 1.42 1.7a.75.75 0 1 1-1.24.85 10.45 10.45 0 0 0-17.23 0 .75.75 0 0 1-1.23-.86 11.95 11.95 0 0 1 18.29-1.69Zm-7.38 8.16a1.5 1.5 0 1 1-2.12 2.12 1.5 1.5 0 0 1 2.12-2.12Z",
|
|
202
203
|
"window-dev-tools-filled": "M6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h4.8c.09-.48.32-.94.69-1.31l.19-.19H6.25c-.97 0-1.75-.78-1.75-1.75V8.5h15v2.53l.51.09c.47.1.82.4.99.79V6.25C21 4.45 19.54 3 17.75 3H6.25Zm9.74 8.93-1.71-1.71a.75.75 0 1 0-1.06 1.06l1.7 1.7a5.12 5.12 0 0 1 1.07-1.05Zm-5.21-.65a.75.75 0 1 0-1.06-1.06l-3 3c-.3.3-.3.77 0 1.06l3 3a.75.75 0 1 0 1.06-1.06l-2.47-2.47 2.47-2.47Zm9.02.81c.35.08.44.51.18.77l-1.9 1.9a1.53 1.53 0 0 0 2.16 2.16l1.9-1.9c.26-.26.69-.17.77.18a4.07 4.07 0 0 1-5.57 4.62l-2.73 2.73a1.53 1.53 0 0 1-2.16-2.16l2.73-2.73a4.07 4.07 0 0 1 4.62-5.57Z",
|
|
203
204
|
"window-dev-tools-regular": "M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v5.66a1.4 1.4 0 0 0-.99-.8 5.08 5.08 0 0 0-.51-.08V8.5h-15v9.25c0 .97.78 1.75 1.75 1.75h5.68l-.19.19c-.37.37-.6.83-.7 1.31H6.25A3.25 3.25 0 0 1 3 17.75V6.25Zm13 5.68-1.72-1.71a.75.75 0 1 0-1.06 1.06l1.7 1.7a5.12 5.12 0 0 1 1.07-1.05ZM4.5 7h15v-.75c0-.97-.78-1.75-1.75-1.75H6.25c-.97 0-1.75.78-1.75 1.75V7Zm6.28 4.28a.75.75 0 1 0-1.06-1.06l-3 3c-.3.3-.3.77 0 1.06l3 3a.75.75 0 1 0 1.06-1.06l-2.47-2.47 2.47-2.47Zm9.02.81c.35.08.44.51.18.77l-1.9 1.9a1.53 1.53 0 0 0 2.16 2.16l1.9-1.9c.26-.26.69-.17.77.18a4.07 4.07 0 0 1-5.57 4.62l-2.73 2.73a1.53 1.53 0 0 1-2.16-2.16l2.73-2.73a4.07 4.07 0 0 1 4.62-5.57Z"
|