hs-uix 2.0.1 → 2.1.0
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/README.md +41 -31
- package/calendar.d.ts +1 -0
- package/common-components.d.ts +143 -0
- package/datatable.d.ts +1 -27
- package/dist/calendar.js +2003 -0
- package/dist/calendar.mjs +2004 -0
- package/dist/common-components.js +1072 -717
- package/dist/common-components.mjs +1344 -994
- package/dist/datatable.js +1114 -251
- package/dist/datatable.mjs +1089 -219
- package/dist/feed.js +1166 -154
- package/dist/feed.mjs +1170 -153
- package/dist/form.js +792 -166
- package/dist/form.mjs +693 -68
- package/dist/index.js +8354 -7077
- package/dist/index.mjs +8425 -7128
- package/dist/kanban.js +1076 -329
- package/dist/kanban.mjs +1061 -311
- package/dist/utils.js +1492 -646
- package/dist/utils.mjs +1410 -573
- package/feed.d.ts +1 -1
- package/form.d.ts +1 -28
- package/index.d.ts +54 -103
- package/kanban.d.ts +1 -1
- package/package.json +10 -6
- package/src/calendar/README.md +301 -0
- package/src/calendar/index.d.ts +201 -0
- package/src/common-components/README.md +400 -0
- package/{packages → src}/datatable/README.md +10 -10
- package/{packages → src}/datatable/index.d.ts +11 -0
- package/{packages → src}/feed/index.d.ts +18 -0
- package/{packages → src}/form/README.md +9 -9
- package/{packages → src}/kanban/README.md +10 -10
- package/{packages → src}/kanban/index.d.ts +15 -4
- package/src/utils/README.md +511 -0
- package/utils.d.ts +55 -3
- /package/{packages → src}/feed/README.md +0 -0
- /package/{packages → src}/form/index.d.ts +0 -0
package/dist/kanban.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
//
|
|
2
|
-
import
|
|
1
|
+
// src/kanban/Kanban.jsx
|
|
2
|
+
import React7, { useCallback as useCallback2, useEffect as useEffect2, useMemo, useRef as useRef2, useState as useState2 } from "react";
|
|
3
3
|
|
|
4
4
|
// src/utils/query.js
|
|
5
5
|
import Fuse from "fuse.js";
|
|
@@ -7,12 +7,15 @@ var getEmptyFilterValue = (filter) => {
|
|
|
7
7
|
const type = filter.type || "select";
|
|
8
8
|
if (type === "multiselect") return [];
|
|
9
9
|
if (type === "dateRange") return { from: null, to: null };
|
|
10
|
+
if (Object.prototype.hasOwnProperty.call(filter, "emptyValue")) return filter.emptyValue;
|
|
10
11
|
return "";
|
|
11
12
|
};
|
|
12
13
|
var isFilterActive = (filter, value) => {
|
|
13
14
|
const type = filter.type || "select";
|
|
14
15
|
if (type === "multiselect") return Array.isArray(value) && value.length > 0;
|
|
15
16
|
if (type === "dateRange") return value && (value.from || value.to);
|
|
17
|
+
if (value == null) return false;
|
|
18
|
+
if (Object.prototype.hasOwnProperty.call(filter, "emptyValue")) return value !== filter.emptyValue;
|
|
16
19
|
return !!value;
|
|
17
20
|
};
|
|
18
21
|
var formatDateChip = (dateObj) => {
|
|
@@ -28,6 +31,47 @@ var dateToTimestamp = (dateObj) => {
|
|
|
28
31
|
if (!dateObj) return null;
|
|
29
32
|
return new Date(dateObj.year, dateObj.month, dateObj.date).getTime();
|
|
30
33
|
};
|
|
34
|
+
var getEmptyFilterValues = (filters, options = {}) => {
|
|
35
|
+
const out = {};
|
|
36
|
+
for (const filter of filters || []) {
|
|
37
|
+
out[filter.name] = typeof options.getEmptyValue === "function" ? options.getEmptyValue(filter) : getEmptyFilterValue(filter);
|
|
38
|
+
}
|
|
39
|
+
return out;
|
|
40
|
+
};
|
|
41
|
+
var resetFilterValues = (filters, values = {}, key = "all", options = {}) => {
|
|
42
|
+
if (key === "all") return getEmptyFilterValues(filters, options);
|
|
43
|
+
const filter = (filters || []).find((item) => item.name === key);
|
|
44
|
+
const emptyValue = filter ? typeof options.getEmptyValue === "function" ? options.getEmptyValue(filter) : getEmptyFilterValue(filter) : options.fallbackEmptyValue ?? "";
|
|
45
|
+
return { ...values || {}, [key]: emptyValue };
|
|
46
|
+
};
|
|
47
|
+
var findOptionLabel = (filter, value) => {
|
|
48
|
+
var _a;
|
|
49
|
+
return ((_a = (filter.options || []).find((option) => option.value === value)) == null ? void 0 : _a.label) || value;
|
|
50
|
+
};
|
|
51
|
+
var buildActiveFilterChips = (filters, values = {}, options = {}) => {
|
|
52
|
+
const chips = [];
|
|
53
|
+
const isActive = options.isFilterActive || isFilterActive;
|
|
54
|
+
const dateFormatter = options.formatDate || formatDateChip;
|
|
55
|
+
const dateJoiner = options.dateJoiner ?? " ";
|
|
56
|
+
for (const filter of filters || []) {
|
|
57
|
+
const value = values == null ? void 0 : values[filter.name];
|
|
58
|
+
if (!isActive(filter, value)) continue;
|
|
59
|
+
const type = filter.type || "select";
|
|
60
|
+
const prefix = filter.chipLabel || filter.placeholder || filter.label || filter.name;
|
|
61
|
+
if (type === "multiselect") {
|
|
62
|
+
const labels = (Array.isArray(value) ? value : []).map((item) => findOptionLabel(filter, item)).join(", ");
|
|
63
|
+
chips.push({ key: filter.name, label: `${prefix}: ${labels}` });
|
|
64
|
+
} else if (type === "dateRange") {
|
|
65
|
+
const parts = [];
|
|
66
|
+
if (value == null ? void 0 : value.from) parts.push(`${options.dateFromPrefix ?? "from "}${dateFormatter(value.from)}`);
|
|
67
|
+
if (value == null ? void 0 : value.to) parts.push(`${options.dateToPrefix ?? "to "}${dateFormatter(value.to)}`);
|
|
68
|
+
chips.push({ key: filter.name, label: `${prefix}: ${parts.join(dateJoiner)}` });
|
|
69
|
+
} else {
|
|
70
|
+
chips.push({ key: filter.name, label: `${prefix}: ${findOptionLabel(filter, value)}` });
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
return chips;
|
|
74
|
+
};
|
|
31
75
|
var toStableKey = (value) => {
|
|
32
76
|
try {
|
|
33
77
|
return JSON.stringify(value);
|
|
@@ -35,7 +79,7 @@ var toStableKey = (value) => {
|
|
|
35
79
|
return String(value);
|
|
36
80
|
}
|
|
37
81
|
};
|
|
38
|
-
var filterRows = (rows, filters, values) => {
|
|
82
|
+
var filterRows = (rows, filters, values = {}) => {
|
|
39
83
|
let result = rows;
|
|
40
84
|
for (const filter of filters || []) {
|
|
41
85
|
const value = values[filter.name];
|
|
@@ -123,9 +167,99 @@ var useSelectionReset = ({ resetKey, enabled, isControlled, clearSelection }) =>
|
|
|
123
167
|
}, [resetKey, enabled, isControlled, clearSelection]);
|
|
124
168
|
};
|
|
125
169
|
|
|
126
|
-
// src/common-components/
|
|
127
|
-
import React from "react";
|
|
128
|
-
import {
|
|
170
|
+
// src/common-components/CollectionSortSelect.js
|
|
171
|
+
import React, { useId } from "react";
|
|
172
|
+
import { Select } from "@hubspot/ui-extensions";
|
|
173
|
+
var h = React.createElement;
|
|
174
|
+
var sanitizeId = (value) => String(value || "").replace(/[^a-zA-Z0-9_-]/g, "");
|
|
175
|
+
var CollectionSortSelect = ({
|
|
176
|
+
name = "collection-sort",
|
|
177
|
+
value,
|
|
178
|
+
options = [],
|
|
179
|
+
placeholder = "Sort",
|
|
180
|
+
onChange,
|
|
181
|
+
includeEmpty = true,
|
|
182
|
+
emptyValue = "",
|
|
183
|
+
variant = "transparent",
|
|
184
|
+
idPrefix,
|
|
185
|
+
uniqueName = true
|
|
186
|
+
}) => {
|
|
187
|
+
const reactId = useId();
|
|
188
|
+
const instanceId = sanitizeId(idPrefix || reactId);
|
|
189
|
+
const resolvedName = uniqueName && name ? `${name}-${instanceId}` : name;
|
|
190
|
+
const mappedOptions = (options || []).map((option) => ({
|
|
191
|
+
label: option.label,
|
|
192
|
+
value: option.value
|
|
193
|
+
}));
|
|
194
|
+
return h(Select, {
|
|
195
|
+
name: resolvedName,
|
|
196
|
+
value: value ?? emptyValue,
|
|
197
|
+
variant,
|
|
198
|
+
placeholder,
|
|
199
|
+
options: includeEmpty ? [{ label: placeholder, value: emptyValue }, ...mappedOptions] : mappedOptions,
|
|
200
|
+
onChange
|
|
201
|
+
});
|
|
202
|
+
};
|
|
203
|
+
|
|
204
|
+
// src/common-components/CollectionToolbar.js
|
|
205
|
+
import React5, { useId as useId2, useState } from "react";
|
|
206
|
+
import {
|
|
207
|
+
Box,
|
|
208
|
+
Button as Button2,
|
|
209
|
+
Flex as Flex3,
|
|
210
|
+
SearchInput
|
|
211
|
+
} from "@hubspot/ui-extensions";
|
|
212
|
+
|
|
213
|
+
// src/common-components/ActiveFilterChips.js
|
|
214
|
+
import React2 from "react";
|
|
215
|
+
import { Button, Flex, Tag } from "@hubspot/ui-extensions";
|
|
216
|
+
var h2 = React2.createElement;
|
|
217
|
+
var ActiveFilterChips = ({
|
|
218
|
+
chips = [],
|
|
219
|
+
showBadges = true,
|
|
220
|
+
showClearAll = true,
|
|
221
|
+
clearAllLabel = "Clear all",
|
|
222
|
+
onRemove,
|
|
223
|
+
gap = "sm"
|
|
224
|
+
}) => {
|
|
225
|
+
if (!Array.isArray(chips) || chips.length === 0) return null;
|
|
226
|
+
if (!showBadges && !showClearAll) return null;
|
|
227
|
+
return h2(
|
|
228
|
+
Flex,
|
|
229
|
+
{ direction: "row", align: "center", gap, wrap: "wrap" },
|
|
230
|
+
...showBadges ? chips.map((chip) => h2(
|
|
231
|
+
Tag,
|
|
232
|
+
{
|
|
233
|
+
key: chip.key,
|
|
234
|
+
variant: "default",
|
|
235
|
+
onDelete: () => onRemove == null ? void 0 : onRemove(chip.key)
|
|
236
|
+
},
|
|
237
|
+
chip.label
|
|
238
|
+
)) : [],
|
|
239
|
+
showClearAll ? h2(
|
|
240
|
+
Button,
|
|
241
|
+
{
|
|
242
|
+
variant: "transparent",
|
|
243
|
+
size: "extra-small",
|
|
244
|
+
onClick: () => onRemove == null ? void 0 : onRemove("all")
|
|
245
|
+
},
|
|
246
|
+
clearAllLabel
|
|
247
|
+
) : null
|
|
248
|
+
);
|
|
249
|
+
};
|
|
250
|
+
|
|
251
|
+
// src/common-components/CollectionFilterControl.js
|
|
252
|
+
import React4 from "react";
|
|
253
|
+
import {
|
|
254
|
+
DateInput,
|
|
255
|
+
Flex as Flex2,
|
|
256
|
+
MultiSelect,
|
|
257
|
+
Select as Select2
|
|
258
|
+
} from "@hubspot/ui-extensions";
|
|
259
|
+
|
|
260
|
+
// src/common-components/Icon.js
|
|
261
|
+
import React3 from "react";
|
|
262
|
+
import { Image, Icon as HsIcon, Link } from "@hubspot/ui-extensions";
|
|
129
263
|
|
|
130
264
|
// src/common-components/svgDefaults.js
|
|
131
265
|
var HS_FONT_FAMILY = '"Lexend Deca", Helvetica, Arial, sans-serif';
|
|
@@ -140,7 +274,806 @@ var HS_TAG_PADDING_Y = 0;
|
|
|
140
274
|
var HS_TAG_BORDER_RADIUS = 0;
|
|
141
275
|
var HS_TAG_BORDER_WIDTH = 1;
|
|
142
276
|
|
|
277
|
+
// src/common-components/icons.generated.js
|
|
278
|
+
var GENERATED_ICONS = {
|
|
279
|
+
"Add": { "viewBox": "0 0 32 32", "paths": ["M3.85 17.79h10.33v10.38c0 1.01.82 1.82 1.82 1.82s1.82-.82 1.82-1.82V17.84h10.33c1.01 0 1.82-.82 1.82-1.82s-.82-1.82-1.82-1.82H17.82V3.82C17.82 2.81 17 2 16 2s-1.82.82-1.82 1.82v10.33H3.85c-1.01 0-1.82.82-1.82 1.82s.82 1.82 1.82 1.82"] },
|
|
280
|
+
"AdvancedFilters": { "viewBox": "0 0 32 32", "paths": ["M29 7H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h26c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1m-2 7.88v-1c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h20c.55 0 1-.45 1-1m-3 8.87v-1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1"] },
|
|
281
|
+
"Appointment": { "viewBox": "0 0 32 32", "paths": ["M26.12 16.69c-2.98 0-4.41 3.26-4.41 3.26s-1.42-3.26-4.41-3.26-4 2.92-4 4.41c0 2.98 2.85 7.12 8.41 9.9 5.56-2.78 8.41-6.92 8.41-9.9 0-1.5-1.02-4.41-4.01-4.41Z", "M11.37 23.22H5c-.36 0-.65-.29-.65-.65V7.34c0-.31.25-.56.56-.56h1.65v1.84c0 .68.55 1.24 1.24 1.24s1.24-.55 1.24-1.24V6.78h7.94v1.84c0 .68.55 1.24 1.24 1.24s1.24-.55 1.24-1.24V6.78h1.56c.36 0 .65.29.65.65v7.2c0 .32.26.57.57.57h1.33c.32 0 .57-.26.57-.57V6.49c0-1.2-.98-2.18-2.18-2.18h-2.51V2.23c0-.68-.55-1.24-1.24-1.24s-1.24.55-1.24 1.24v2.08H9.03V2.23c0-.68-.55-1.24-1.24-1.24s-1.24.55-1.24 1.24v2.08h-2.5c-1.21 0-2.19.98-2.19 2.18V23.5c0 1.21.98 2.19 2.19 2.19h7.31c.25 0 .45-.2.45-.45v-1.57c0-.25-.2-.45-.45-.45Z"] },
|
|
282
|
+
"Approvals": { "viewBox": "0 0 32 32", "paths": ["M30 16c0-1.15-2.31-1.99-2.6-3.06-.29-1.1 1.28-2.98.73-3.95-.57-.97-2.98-.55-3.78-1.34-.8-.8-.36-3.21-1.34-3.78-.96-.56-2.84 1.03-3.95.73C17.99 4.32 17.16 2 16 2s-1.99 2.31-3.06 2.6c-1.1.29-2.98-1.28-3.95-.73-.97.57-.55 2.98-1.34 3.78-.8.8-3.21.36-3.78 1.34-.56.96 1.03 2.84.73 3.95C4.32 14.01 2 14.84 2 16s2.31 1.99 2.6 3.06c.29 1.1-1.28 2.98-.73 3.95.57.97 2.98.55 3.78 1.34.8.8.36 3.21 1.34 3.78.96.56 2.84-1.03 3.95-.73 1.07.28 1.9 2.6 3.06 2.6s1.99-2.31 3.06-2.6c1.1-.29 2.98 1.28 3.95.73.97-.57.55-2.98 1.34-3.78.8-.8 3.21-.36 3.78-1.34.56-.96-1.03-2.84-.73-3.95.28-1.07 2.6-1.9 2.6-3.06m-6.46-2.94-8.61 8.61c-.25.25-.58.38-.93.38s-.68-.13-.93-.39l-4.59-4.59a1.33 1.33 0 0 1 1.88-1.88l3.66 3.66 7.68-7.68a1.33 1.33 0 0 1 1.88 1.88h-.02Z"] },
|
|
283
|
+
"ArtificialIntelligence": { "viewBox": "0 0 32 32", "paths": ["m16.97 2.58 2.66 4.86c1.14 2.09 2.86 3.8 4.94 4.94l4.86 2.66c.77.42.77 1.53 0 1.94l-4.85 2.66c-2.09 1.14-3.8 2.86-4.94 4.94l-2.66 4.85c-.42.77-1.53.77-1.94 0l-2.66-4.86c-1.14-2.09-2.86-3.8-4.94-4.94l-4.86-2.66c-.77-.42-.77-1.53 0-1.94l4.86-2.66c2.09-1.14 3.8-2.86 4.94-4.94l2.64-4.85c.42-.77 1.53-.77 1.94 0Z"] },
|
|
284
|
+
"ArtificialIntelligenceEnhanced": { "viewBox": "0 0 32 32", "paths": ["m20.47 12.37-1.69 3.09a7.97 7.97 0 0 1-3.14 3.14l-3.09 1.69c-.49.27-.49.97 0 1.23l3.09 1.68c1.33.73 2.42 1.82 3.15 3.15l1.69 3.09c.27.49.97.49 1.23 0l1.69-3.09a7.97 7.97 0 0 1 3.14-3.14l3.09-1.69c.49-.27.49-.97 0-1.23l-3.09-1.69a7.97 7.97 0 0 1-3.14-3.14l-1.69-3.09a.698.698 0 0 0-1.23 0ZM8 2.46 6.78 4.69c-.52.96-1.31 1.76-2.28 2.28L2.27 8.19c-.35.2-.35.7 0 .9l2.23 1.22c.96.52 1.76 1.31 2.28 2.28L8 14.82c.2.35.7.35.9 0l1.22-2.24c.52-.96 1.31-1.76 2.28-2.28l2.23-1.22c.35-.2.35-.7 0-.9L12.4 6.96a5.63 5.63 0 0 1-2.28-2.28L8.9 2.45c-.2-.35-.7-.35-.9 0Z"] },
|
|
285
|
+
"Attach": { "viewBox": "0 0 32 32", "paths": ["M20.66 11.97a1.52 1.52 0 1 0-2.16-2.14l-7.49 7.49c-.57.65-.92 1.5-.92 2.44 0 2.04 1.66 3.7 3.7 3.7.93 0 1.77-.34 2.42-.9s10.82-10.82 10.82-10.82a5.88 5.88 0 0 0 1.42-3.84 5.898 5.898 0 0 0-9.75-4.47S5.91 16.21 5.91 16.21a8.05 8.05 0 0 0-2.36 5.71c0 4.47 3.62 8.09 8.09 8.09 2.24 0 4.26-.91 5.72-2.38l9.47-9.47a1.52 1.52 0 0 0-2.15-2.15l-9.47 9.46c-.92.94-2.2 1.53-3.61 1.53-2.78 0-5.04-2.25-5.04-5.04 0-1.42.59-2.7 1.53-3.61S20.88 5.56 20.88 5.56a2.83 2.83 0 0 1 2.07-.89c1.58 0 2.85 1.28 2.85 2.85 0 .81-.34 1.55-.88 2.06S14.1 20.4 14.1 20.4a.702.702 0 0 1-.99-.99l7.55-7.47Z"] },
|
|
286
|
+
"AudienceTargeting": { "viewBox": "0 0 32 32", "paths": ["M27.46 13.07c-1.08-4.21-4.39-7.5-8.61-8.55a3 3 0 0 0-3.48-2.44 3 3 0 0 0-2.44 2.44 11.89 11.89 0 0 0-8.45 8.56 2.915 2.915 0 0 0-2.44 3.32 2.92 2.92 0 0 0 2.44 2.44c1.04 4.21 4.28 7.52 8.47 8.64a3 3 0 0 0 3.48 2.44 3 3 0 0 0 2.44-2.44c4.24-1.07 7.55-4.37 8.62-8.61 1.59-.22 2.71-1.7 2.48-3.29a2.906 2.906 0 0 0-2.48-2.48zM18.5 25.66a3.03 3.03 0 0 0-2-1.45V21.5c0-.16-.14-.29-.31-.29h-.72a.29.29 0 0 0-.29.29v2.73c-.8.18-1.48.7-1.88 1.42a9.92 9.92 0 0 1-6.95-7.04 2.95 2.95 0 0 0 1.49-1.74h2.66c.17 0 .31-.14.31-.31v-.72c0-.16-.14-.29-.31-.29H7.95c-.15-.93-.73-1.72-1.57-2.15a9.95 9.95 0 0 1 6.92-6.96c.41.7 1.09 1.21 1.89 1.39v2.99c0 .16.13.3.29.31h.72c.17 0 .31-.14.31-.31V7.85c.84-.16 1.58-.67 2.01-1.41 3.43.91 6.12 3.57 7.06 6.99-.8.41-1.36 1.17-1.54 2.05h-2.87c-.16 0-.3.13-.31.29v.72c0 .17.14.31.31.31h2.97c.24.75.77 1.37 1.47 1.72a9.95 9.95 0 0 1-7.11 7.13Z"] },
|
|
287
|
+
"Automations": { "viewBox": "0 0 32 32", "paths": ["M19 11h-6.86c-.63 0-1.14-.51-1.14-1.14V3c0-.63.51-1.14 1.14-1.14H19c.63 0 1.14.51 1.14 1.14v6.86c0 .63-.51 1.14-1.14 1.14m-5.71-2.29h4.57V4.14h-4.57zM9.86 29.29H3c-.63 0-1.14-.51-1.14-1.14v-6.86c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v6.86c0 .63-.51 1.14-1.14 1.14M4.14 27h4.57v-4.57H4.14zM28.14 29.29h-6.86c-.63 0-1.14-.51-1.14-1.14v-6.86c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v6.86c0 .63-.51 1.14-1.14 1.14M22.43 27H27v-4.57h-4.57z", "M24.71 22.43c-.63 0-1.14-.51-1.14-1.14v-4.57h-16v4.57a1.14 1.14 0 1 1-2.28 0v-5.71c0-.63.51-1.14 1.14-1.14h18.29c.63 0 1.14.51 1.14 1.14v5.71c0 .63-.51 1.14-1.14 1.14Z", "M15.57 16.71c-.63 0-1.14-.51-1.14-1.14V9.86a1.14 1.14 0 1 1 2.28 0v5.71c0 .63-.51 1.14-1.14 1.14"] },
|
|
288
|
+
"Bank": { "viewBox": "0 0 32 32", "paths": ["M4.12 27.13h23.75c.53 0 .96.43.96.96v.95c0 .53-.43.96-.96.96H4.12a.96.96 0 0 1-.96-.96v-.95c0-.53.43-.96.96-.96m.87-14.76h22.03c.65 0 1.16-.53 1.16-1.18 0-.3-.12-.59-.33-.81L16.77 2.35a1.15 1.15 0 0 0-1.62-.02l-.02.02-10.97 8.04c-.45.45-.45 1.19 0 1.64.22.22.51.34.82.34Zm4.87 1.29H8.17a.67.67 0 0 0-.68.66v9.24H5.8c-.41 0-.74.32-.74.72V25c0 .41.33.74.74.74h20.39c.41 0 .74-.33.74-.74v-.71c0-.41-.33-.73-.73-.73h-1.7v-9.19a.67.67 0 0 0-.66-.68H22.2a.67.67 0 0 0-.68.66v9.24h-4v-9.22a.67.67 0 0 0-.66-.68h-1.7a.67.67 0 0 0-.68.66v9.24h-3.95v-9.22a.67.67 0 0 0-.63-.71z"] },
|
|
289
|
+
"Block": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m9.69 14c0 1.91-.57 3.68-1.53 5.17l.02-.04L10.86 7.82c1.45-.94 3.23-1.5 5.14-1.51 5.35 0 9.69 4.34 9.69 9.69M6.31 16c0-1.91.57-3.68 1.53-5.17l-.02.04 13.32 13.3a9.47 9.47 0 0 1-5.13 1.53c-5.35 0-9.69-4.34-9.69-9.69Z"] },
|
|
290
|
+
"Blog": { "viewBox": "0 0 32 32", "paths": ["M26.91 4.23H9.46a3.05 3.05 0 0 0-3.05 3.05V24.3c0 .49-.4.89-.89.89s-.89-.4-.89-.89V11.65c-.06-.68-.62-1.2-1.31-1.2s-1.25.53-1.31 1.2v12.66c0 1.85 1.45 3.36 3.28 3.46h19.92c2.65 0 4.8-2.15 4.8-4.8V7.29a3.05 3.05 0 0 0-3.05-3.05h-.04Zm.44 18.75c0 1.2-.98 2.17-2.18 2.18H9.02V7.3c0-.24.2-.44.44-.44h17.46c.24 0 .44.2.44.44v15.68ZM12.08 8.6h12.21c.73 0 1.31.59 1.31 1.31v3.48c0 .73-.59 1.31-1.31 1.31H12.08c-.73 0-1.31-.59-1.31-1.31V9.91c0-.72.59-1.31 1.31-1.31m12.21 7.85H12.08c-.68.06-1.2.62-1.2 1.31s.53 1.25 1.2 1.31h12.33c.73 0 1.31-.59 1.31-1.31s-.59-1.31-1.31-1.31h-.11Zm0 4.37H11.97c-.73 0-1.31.59-1.31 1.31s.59 1.31 1.31 1.31H24.4c.73 0 1.31-.59 1.31-1.31s-.59-1.31-1.31-1.31z"] },
|
|
291
|
+
"Book": { "viewBox": "0 0 32 32", "paths": ["M9 2h17.5c.97 0 1.75.78 1.75 1.75v17.5c0 .97-.78 1.75-1.75 1.75H9.04c-.85 0-1.57.59-1.75 1.39q-.03.18-.03.36c0 .97.78 1.75 1.75 1.75h17.46c.85 0 1.56.59 1.75 1.39.02.12.04.24.04.36 0 .97-.78 1.75-1.75 1.75H9a5.25 5.25 0 0 1-5.25-5.25V7.25C3.75 4.35 6.1 2 9 2"] },
|
|
292
|
+
"Bookmark": { "viewBox": "0 0 32 32", "paths": ["M6 31.86c-.15 0-.3-.03-.44-.09-.43-.18-.71-.59-.71-1.06V1c0-.63.51-1.14 1.14-1.14h20.57c.63 0 1.14.51 1.14 1.14v29.71c0 .46-.28.88-.71 1.06s-.92.08-1.25-.25l-9.48-9.48-9.48 9.48c-.22.22-.51.33-.81.33ZM7.14 2.14v25.81l8.23-8.23c.26-.33.68-.5 1.1-.43.26.05.49.18.67.37l8.29 8.29V2.14z"] },
|
|
293
|
+
"BreezeRegenerate": { "viewBox": "0 0 32 32", "paths": ["M30.85 7.89c-3.66 0-6.72-3.05-6.72-6.71 0-.26-.21-.46-.47-.46s-.46.21-.46.47c0 3.66-3.06 6.71-6.72 6.71a.47.47 0 1 0 0 .94c3.66 0 6.72 3.05 6.72 6.71 0 .26.21.47.46.47s.47-.21.47-.47c0-3.66 3.06-6.71 6.72-6.71.26 0 .47-.21.47-.46a.47.47 0 0 0-.47-.47ZM23.92 20.03c-.67-.14-1.34.3-1.47.98-.87 4.25-4.51 7.44-8.84 7.75-2.6.19-5.1-.65-7.07-2.35a9.66 9.66 0 0 1-3.33-6.66 9.67 9.67 0 0 1 6.86-10l-1.11 1.38c-.44.53-.35 1.32.18 1.76.24.18.51.27.79.27.36 0 .73-.15.97-.46l2.83-3.5s.13-.17.16-.23c.3-.52.17-1.19-.3-1.57l-3.55-3.05c-.52-.45-1.31-.39-1.76.14-.45.52-.39 1.31.13 1.76L9.6 7.28C4 8.83.29 14.08.71 19.93A12.17 12.17 0 0 0 4.9 28.3c2.25 1.94 5.05 2.99 7.99 2.99.3 0 .6-.02.9-.04 5.44-.39 10.01-4.39 11.11-9.74.13-.68-.3-1.34-.98-1.48"] },
|
|
294
|
+
"BreezeSingleStar": { "viewBox": "0 0 32 32", "paths": ["M29.62 15.12c-6.94 0-12.74-5.79-12.74-12.73 0-.48-.4-.88-.88-.88s-.88.4-.88.88c0 6.94-5.8 12.73-12.74 12.73-.49 0-.88.4-.88.88 0 .49.39.88.88.88 6.94 0 12.74 5.79 12.74 12.73 0 .48.4.88.88.88s.88-.4.88-.88c0-6.94 5.8-12.73 12.74-12.73.49 0 .88-.4.88-.88 0-.49-.39-.88-.88-.88"] },
|
|
295
|
+
"Bulb": { "viewBox": "0 0 32 32", "paths": ["M16 2c-4.73.02-8.56 3.85-8.56 8.58 0 1.09.2 2.13.57 3.08l-.02-.06c.29.73.64 1.37 1.06 1.95l-.02-.03q.075.12.15.21s.12.15.12.15a6.36 6.36 0 0 1 1.29 3.87v.33-.02c0 .26.05.51.13.74v-.02c.31.75 1.04 1.26 1.89 1.26h6.74c.87 0 1.61-.54 1.9-1.31.08-.23.13-.49.13-.75v-.24c0-1.46.49-2.81 1.32-3.88v.02l.13-.18c.05-.06.09-.12.13-.18.4-.56.75-1.2 1.02-1.87l.02-.06c.35-.9.55-1.94.55-3.03a8.58 8.58 0 0 0-8.56-8.58Zm3.01 10.97a8.3 8.3 0 0 0-2.71 4.39v.06c-.09.39-.43.69-.83.69h-.16a.84.84 0 0 1-.69-.82c0-.05 0-.1.01-.15a9.74 9.74 0 0 1 1.96-4.06v.02h-.3c-.89 0-1.78.04-2.65.13h.11-.11c-.31 0-.58-.17-.72-.41a.852.852 0 0 1 .05-.92c.42-.58.94-1.21 1.47-1.85.69-.8 1.36-1.68 1.98-2.59l.06-.1c.14-.27.42-.46.74-.46.17 0 .33.05.46.14.25.15.41.41.41.72 0 .16-.05.31-.12.44-.72 1.08-1.44 2.02-2.21 2.91l.03-.04-.28.33c.3-.01.66-.02 1.01-.02.75 0 1.5.04 2.23.1h-.09c.34.04.6.28.69.6a.839.839 0 0 1-.33.91Zm.02 14.11h-6.02c-.46 0-.84.37-.84.84s.37.84.84.84h1.81a1.25 1.25 0 0 0 2.5 0h1.67c.46 0 .84-.37.84-.84s-.37-.84-.84-.84h.03Zm.53-1.67h-7.1c-.46 0-.84-.37-.84-.84s.37-.84.84-.84h7.1c.46 0 .84.37.84.84s-.37.84-.84.84"] },
|
|
296
|
+
"Calling": { "viewBox": "0 0 32 32", "paths": ["m3.68 4.3 1.63-1.63C5.73 2.25 6.3 2 6.94 2s1.21.26 1.63.67l4.36 4.36c.42.42.68 1 .68 1.63s-.26 1.22-.68 1.63l-3.18 3.18c-.28.28-.46.67-.46 1.09s.17.81.46 1.09l6.55 6.55a1.543 1.543 0 0 0 2.18 0l3.18-3.18c.42-.42 1-.68 1.63-.68s1.22.26 1.63.68l4.38 4.37c.42.42.68 1 .68 1.63s-.26 1.22-.68 1.63l-1.65 1.63c-1.74 1.74-4.56 2.12-7.77 1.22-1.18-.33-2.2-.71-3.17-1.18l.11.05a27.8 27.8 0 0 1-7.72-5.54 28 28 0 0 1-5.47-7.57l-.07-.16c-.23-.47-.42-.93-.61-1.41-1.45-3.86-1.34-7.38.7-9.42Z"] },
|
|
297
|
+
"CallingHangup": { "viewBox": "0 0 32 32", "paths": ["M24.91 12.01c-.38-.17-.76-.33-1.17-.47-2.24-.81-4.82-1.27-7.51-1.27h-.24.01-.23c-2.69 0-5.27.47-7.66 1.32l.16-.05c-.95.34-1.75.72-2.51 1.16l.07-.04c-2.37 1.36-3.82 3.21-3.82 5.24v1.91c0 1.05.85 1.91 1.91 1.91h5.09c1.05 0 1.91-.85 1.91-1.91v-3.74c0-.7.57-1.26 1.27-1.27h7.64c.7 0 1.27.57 1.27 1.27v3.74c0 1.06.85 1.92 1.91 1.92h5.1c1.05 0 1.91-.85 1.91-1.91V17.9c0-2.37-1.99-4.49-5.09-5.89Z"] },
|
|
298
|
+
"CallingMade": { "viewBox": "0 0 32 32", "paths": ["M2.83 15.62c.14.39.31.78.51 1.18 1.23 2.5 2.8 4.64 4.67 6.46 1.83 1.87 3.97 3.42 6.33 4.58l.14.06c.72.35 1.57.68 2.45.92l.11.03c2.66.72 5.05.44 6.5-1.02l1.35-1.37c.36-.35.57-.84.57-1.38s-.22-1.03-.57-1.38l-3.67-3.64c-.35-.35-.83-.57-1.37-.57s-1.02.22-1.37.57l-2.66 2.66c-.23.23-.56.38-.91.38s-.68-.14-.91-.38l-5.51-5.46c-.24-.23-.38-.56-.38-.91s.15-.68.38-.91l2.66-2.66c.35-.35.57-.83.57-1.37s-.22-1.02-.57-1.37L7.52 6.36c-.35-.35-.83-.57-1.37-.57s-1.02.22-1.37.57L3.41 7.72c-1.71 1.71-1.8 4.66-.58 7.9M28.18 3.08l-7.24 7.24-2.98-2.98c-.19-.19-.46-.31-.76-.31-.59 0-1.07.48-1.07 1.07 0 .29.12.56.31.76l3.73 3.73a1.09 1.09 0 0 0 1.52 0l7.99-7.99a1.09 1.09 0 0 0 0-1.52 1.09 1.09 0 0 0-1.52 0Z"] },
|
|
299
|
+
"CallingMissed": { "viewBox": "0 0 32 32", "paths": ["M3.24 16.52c.14.39.31.77.5 1.17 1.21 2.48 2.75 4.59 4.59 6.4a22.9 22.9 0 0 0 6.27 4.54l.13.06c.71.35 1.55.67 2.43.92l.11.03c2.64.71 5 .43 6.44-1.01l1.35-1.35c.35-.35.56-.83.56-1.35s-.21-1.01-.56-1.35l-3.62-3.62c-.35-.35-.83-.56-1.35-.56s-1.01.21-1.35.56L16.1 23.6c-.23.23-.55.37-.91.37s-.67-.14-.91-.37l-5.45-5.41c-.23-.23-.38-.55-.38-.91s.14-.67.38-.91l2.64-2.64c.35-.35.56-.83.56-1.35s-.21-1.01-.56-1.35l-3.6-3.64c-.35-.35-.83-.56-1.35-.56s-1.01.21-1.35.56L3.81 8.74c-1.69 1.7-1.78 4.62-.57 7.82Zm14.02-2.21c.19.19.45.31.74.31s.55-.12.74-.31l4.51-4.51 4.51 4.51c.19.19.45.31.74.31.58 0 1.05-.47 1.05-1.05 0-.29-.12-.55-.31-.74l-4.51-4.51 4.51-4.51c.19-.19.31-.45.31-.74s-.12-.55-.31-.74-.45-.31-.74-.31-.55.12-.74.31l-4.51 4.51-4.51-4.51c-.19-.19-.45-.31-.74-.31s-.55.12-.74.31-.31.45-.31.74.12.55.31.74l4.51 4.51-4.51 4.51c-.19.19-.31.45-.31.74s.12.55.31.74"] },
|
|
300
|
+
"CallingVoicemail": { "viewBox": "0 0 32 32", "paths": ["M8.45 22.48c-3.58 0-6.45-2.9-6.45-6.47s2.9-6.48 6.48-6.48 6.48 2.9 6.48 6.48c0 1.49-.51 2.9-1.43 4.05h4.92a6.4 6.4 0 0 1-1.43-4.05c0-3.58 2.9-6.48 6.48-6.48s6.48 2.9 6.48 6.48-2.66 6.26-6.06 6.47H8.42Zm.03-10.53c-2.24 0-4.06 1.82-4.06 4.06s1.69 3.95 3.85 4.06h.46c2.13-.13 3.81-1.92 3.81-4.05s-1.82-4.06-4.06-4.06Zm15.03 0c-2.24 0-4.06 1.82-4.06 4.06s1.67 3.92 3.82 4.05h.5c2.14-.13 3.82-1.91 3.82-4.05s-1.82-4.06-4.06-4.06z"] },
|
|
301
|
+
"CallTranscript": { "viewBox": "0 0 32 32", "paths": ["M27.19 10.56a1.3 1.3 0 0 0-.13-.35s0-.07 0-.07c-.06-.11-.13-.21-.22-.3l-7.52-7.5c-.09-.09-.19-.16-.3-.22s-.08 0-.08 0c-.08-.04-.17-.08-.26-.1H8.97c-2.3 0-4.17 1.85-4.21 4.15v20.11c0 2.2 1.73 3.74 4.21 3.74H23c2.47 0 4.21-1.54 4.21-3.74V10.57h-.03Zm-2.82 15.7c0 .77-.77.97-1.4.97H8.98c-.64 0-1.4-.17-1.4-.97V6.15c0-.77.63-1.4 1.4-1.4h7.95v5.14c0 1.3 1.04 2.34 2.33 2.34h5.11zM11.05 14.1l.65-.66c.17-.16.4-.26.66-.26s.49.1.66.26 1.74 1.75 1.74 1.75c.17.17.28.4.28.66s-.11.49-.28.66l-1.28 1.29a.604.604 0 0 0 0 .86l2.62 2.63a.63.63 0 0 0 .88 0L18.27 20c.16-.17.4-.28.65-.28s.49.11.65.28l1.75 1.74c.16.17.26.4.26.66s-.1.49-.26.66l-.66.7c-.53.44-1.22.7-1.97.7a3 3 0 0 1-1.16-.23h.02c-.48-.14-.88-.3-1.27-.5l.04.02c-1.2-.59-2.22-1.33-3.1-2.22-.89-.88-1.64-1.9-2.19-3.03l-.03-.07c-.09-.19-.17-.38-.23-.56-.58-1.55-.55-2.92.27-3.77Z"] },
|
|
302
|
+
"Campaigns": { "viewBox": "0 0 32 32", "paths": ["M25.72 19.65 21.46 6.22a.9.9 0 0 0-1.13-.58c-.06.02-.12.04-.17.07L1.46 16.45c-.37.21-.54.65-.42 1.06l1.5 4.71c.13.41.53.67.95.62l3.48-.38c.32 2.4 2.16 4.14 4.13 3.92s3.37-2.32 3.16-4.72l10.71-.86c.49-.05.84-.49.79-.98 0-.06-.02-.12-.04-.17m-14.8 5.15c-1.21.14-2.34-.96-2.56-2.46l4.51-.5c.12 1.48-.74 2.78-1.95 2.95Zm15.4-12.34a.74.74 0 0 1-.75-.74c0-.33.21-.62.53-.72l3.94-1.24c.4-.12.81.1.94.5s-.1.81-.5.94l-3.94 1.22a.9.9 0 0 1-.22.04m-1.7-2.27c-.17 0-.33-.06-.46-.16a.747.747 0 0 1-.11-1.05l1.86-2.3a.748.748 0 0 1 1.17.93l-1.86 2.31c-.15.17-.36.27-.58.27Zm4.64 6.02a.8.8 0 0 1-.22 0l-2.77-.93a.745.745 0 0 1 .47-1.41l2.74.89a.742.742 0 0 1-.21 1.45Z"] },
|
|
303
|
+
"Cap": { "viewBox": "0 0 32 32", "paths": ["m23.16 17.51-6.51 2.36q-.285.09-.63.09c-.345 0-.44-.03-.65-.1h.02l-.63-.22-3.88-1.43-1.99-.73-.87-.31v3.23c0 1.19.79 2.39 2.34 3.29.1.05.2.09.29.13 1.24.59 2.68 1.01 4.19 1.21h.07c.33.04.72.05 1.11.05s.78-.02 1.16-.05h-.05c1.59-.18 3.04-.59 4.38-1.2l-.09.04c.09-.04.19-.08.29-.13 1.56-.87 2.34-2.09 2.34-3.29v-3.29l-.88.34Zm6.32-5.84-2.82-1.02-2.52-.87-3.28-1.23 1.26.45-3.58-1.3-1.16-.43.27.1-.37-.14-.63-.23q-.285-.09-.63-.09c-.345 0-.44.03-.65.1h.02l-.63.22-1.26.46-3.62 1.3-2.52.87-4.85 1.75c-.69.25-.69.66 0 .87l4.85 1.75 2.52 1.02 3.58 1.3 1.26.46.63.23q.285.09.63.09c.345 0 .44-.03.65-.1h-.02l.63-.22 1.26-.46 2.88-1.04 4.83-1.76v6.65c0 .72.59 1.31 1.31 1.31s1.31-.59 1.31-1.31v-7.62l.63-.23c.71-.24.71-.65.02-.9Zm-12.24 1.17c-.36.19-.79.29-1.24.29s-.88-.11-1.26-.3h.02c-.3-.1-.51-.38-.51-.71s.21-.61.51-.71c.36-.19.79-.3 1.24-.3s.88.11 1.26.3h-.02a.75.75 0 0 1 .02 1.42Z"] },
|
|
304
|
+
"Cart": { "viewBox": "0 0 32 32", "paths": ["M9.18 27.18c0 1.29-1.04 2.33-2.33 2.33s-2.33-1.04-2.33-2.33 1.04-2.33 2.33-2.33 2.33 1.04 2.33 2.33m12.47 0c0 1.29-1.04 2.33-2.33 2.33s-2.33-1.04-2.33-2.33 1.04-2.33 2.33-2.33 2.33 1.04 2.33 2.33m6.39-24.69h-4.57c-.93 0-1.7.68-1.84 1.57s-.62 4.05-.62 4.05H5.41c-1.04 0-1.97.47-2.6 1.2-.5.6-.8 1.38-.8 2.23 0 .2.02.41.05.6v-.02l1.25 7.5a4.17 4.17 0 0 0 4.01 3.39h11.6c2-.04 3.65-1.49 4-3.39v-.03l1.25-7.5.87-5.86h3.1c1.03 0 1.87-.84 1.87-1.87s-.84-1.87-1.87-1.87h-.13l.03-.02Zm-8.08 12.17h-3.27l.17-2.81h3.57zm-8.74 0-.38-2.81h4.2l-.22 2.81zm3.5 1.86-.17 2.78h-2.7l-.37-2.78zm-5.74-4.7.37 2.84H6.19l-.46-2.81zm-2.06 7.16-.41-2.49H9.6l.37 2.78H7.25a.45.45 0 0 1-.33-.28Zm11.99.29h-2.5l.17-2.78h3.08l-.41 2.49a.48.48 0 0 1-.33.29Z"] },
|
|
305
|
+
"CheckCircle": { "viewBox": "0 0 32 32", "paths": ["M16 0C7.18 0 0 7.18 0 16s7.18 16 16 16 16-7.18 16-16S24.82 0 16 0m6.56 12.96-6.98 7.62c-.21.23-.5.36-.82.37h-.02c-.3 0-.59-.12-.81-.33l-4.44-4.44c-.45-.45-.45-1.17 0-1.62s1.17-.45 1.62 0l3.6 3.6 6.18-6.74c.43-.46 1.15-.5 1.61-.07s.5 1.15.07 1.61Z"] },
|
|
306
|
+
"CircleHollow": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14c7.71 0 13.98-6.24 14-13.96C30.02 8.31 23.78 2.02 16.04 2zm0 26.1c-6.66 0-12.05-5.4-12.05-12.05S9.34 3.99 16 3.99s12.05 5.4 12.05 12.05S22.65 28.09 16 28.09Z"] },
|
|
307
|
+
"CleanUP": { "viewBox": "0 0 32 32", "paths": ["M28.571 12.572c0-1.89-1.538-3.429-3.428-3.429h-3.428V3.429c0-1.89-1.538-3.43-3.429-3.43H16a3.433 3.433 0 0 0-3.43 3.43v5.714H9.144a3.433 3.433 0 0 0-3.43 3.43v4.57c0 .631.513 1.143 1.144 1.143h19.428v6.857c0 2.52-2.05 4.57-4.571 4.57h-1.76a6.82 6.82 0 0 0 1.76-4.57V24a1.143 1.143 0 1 0-2.285 0v1.143c0 2.52-2.051 4.57-4.572 4.57h-1.76a6.82 6.82 0 0 0 1.76-4.57V24a1.143 1.143 0 1 0-2.286 0v1.143c0 2.52-2.05 4.57-4.571 4.57H6.25A6.83 6.83 0 0 0 8 25.144v-3.43a1.143 1.143 0 1 0-2.286 0v3.43c0 2.52-2.05 4.57-4.571 4.57a1.143 1.143 0 1 0 0 2.287h20.57a6.864 6.864 0 0 0 6.857-6.857v-7.995l.001-.005zM8 12.572c0-.63.513-1.143 1.143-1.143h4.57c.632 0 1.144-.512 1.144-1.143V3.429c0-.63.513-1.143 1.143-1.143h2.286c.63 0 1.144.513 1.144 1.143v6.857c0 .631.511 1.143 1.142 1.143h4.57c.63 0 1.144.513 1.144 1.143V16H8z"] },
|
|
308
|
+
"Clipboard": { "viewBox": "0 0 32 32", "paths": ["M21.95 5.44h-.35c-.35-.57-1.01-1.05-2.11-1.05h-.51C18.69 3.01 17.46 2 16 2s-2.68 1.02-2.98 2.39h-.51c-1.07 0-1.73.49-2.07 1.05h-.38c-2.6 0-4.73 2.11-4.73 4.72v15.12A4.73 4.73 0 0 0 10.06 30h11.9c2.59 0 4.72-2.11 4.72-4.72V10.15c0-2.59-2.11-4.72-4.72-4.72Zm-5.94-2.47c.75 0 1.35.61 1.35 1.35s-.61 1.35-1.35 1.35-1.35-.61-1.35-1.35.61-1.35 1.35-1.35m7.89 22.3c0 1.07-.86 1.93-1.93 1.93h-11.9c-1.07 0-1.94-.86-1.94-1.93V10.15c0-1.07.87-1.93 1.94-1.93h.05v.22c0 .6.27 1.08.62 1.08h10.52c.35 0 .62-.48.62-1.08v-.22h.08c1.07 0 1.93.86 1.93 1.93v15.12Z"] },
|
|
309
|
+
"Code": { "viewBox": "0 0 32 32", "paths": ["M9.99 9.42a1.4 1.4 0 0 0-1.98 0l-5.6 5.6a1.4 1.4 0 0 0 0 1.98l5.6 5.6c.25.25.6.41.99.41.77 0 1.4-.63 1.4-1.4 0-.39-.16-.74-.41-.99l-4.61-4.61 4.61-4.6a1.4 1.4 0 0 0 0-1.98Zm14 0c-.25-.25-.6-.41-.99-.41-.77 0-1.4.63-1.4 1.4 0 .39.16.74.41.99l4.61 4.6-4.61 4.61c-.25.25-.41.6-.41.99 0 .77.63 1.4 1.4 1.4.39 0 .74-.16.99-.41l5.6-5.6a1.4 1.4 0 0 0 0-1.98l-5.6-5.6Zm-5.85-4.11a1.397 1.397 0 0 0-1.65 1.08s-3.73 18.67-3.73 18.67a1.397 1.397 0 0 0 1.08 1.65s.09 0 .14 0h.15c.67 0 1.24-.48 1.37-1.12s3.73-18.67 3.73-18.67a1.405 1.405 0 0 0-1.09-1.62Z"] },
|
|
310
|
+
"Comments": { "viewBox": "0 0 32 32", "paths": ["M5.77 21.12h2.69v5.38c0 .89.72 1.61 1.62 1.61.45 0 .85-.18 1.14-.47l6.53-6.53h8.49c2.08 0 3.76-1.69 3.77-3.77V7.65c0-2.08-1.69-3.76-3.77-3.77H5.77C3.69 3.88 2.01 5.57 2 7.65v9.69c0 2.08 1.69 3.76 3.77 3.77Zm8.08-8.62c0-1.19.96-2.15 2.15-2.15s2.15.96 2.15 2.15-.96 2.15-2.15 2.15-2.15-.96-2.15-2.15m-7.54 0c0-1.19.96-2.15 2.15-2.15s2.15.96 2.15 2.15-.96 2.15-2.15 2.15-2.15-.96-2.15-2.15m15.08 0c0-1.19.96-2.15 2.15-2.15s2.15.96 2.15 2.15-.96 2.15-2.15 2.15-2.15-.96-2.15-2.15"] },
|
|
311
|
+
"Commerce": { "viewBox": "0 0 32 32", "paths": ["M28.43 15.29c-.63 0-1.14-.51-1.14-1.14v-2.29c0-.63-.51-1.14-1.14-1.14H5.57a1.14 1.14 0 1 1 0-2.28h20.57c1.89 0 3.43 1.54 3.43 3.43v2.29c0 .63-.51 1.14-1.14 1.14Z", "M26.14 29H5.57c-3.15 0-5.71-2.56-5.71-5.71V9.58c0-3.16 2.56-5.72 5.71-5.72h18.29a1.14 1.14 0 1 1 0 2.28H5.57c-1.89 0-3.43 1.54-3.43 3.43v13.71c0 1.89 1.54 3.43 3.43 3.43h20.57c.63 0 1.14-.51 1.14-1.14v-3.43a1.14 1.14 0 1 1 2.28 0v3.43c0 1.89-1.54 3.43-3.43 3.43Z", "M30.71 23.29h-9.14c-1.89 0-3.43-1.54-3.43-3.43v-2.29c0-1.89 1.54-3.43 3.43-3.43h9.14c.63 0 1.14.51 1.14 1.14v6.86c0 .63-.51 1.14-1.14 1.14Zm-9.14-6.86c-.63 0-1.14.51-1.14 1.14v2.29c0 .63.51 1.14 1.14 1.14h8v-4.57z"] },
|
|
312
|
+
"Communication": { "viewBox": "0 0 32 32", "paths": ["M2.29 30.96c-.15 0-.3-.03-.44-.09-.43-.18-.71-.59-.71-1.06V5.28a4.03 4.03 0 0 1 4.03-4.03h21.65c2.22 0 4.03 1.81 4.03 4.03v14.44c0 2.22-1.81 4.03-4.03 4.03H9.98L3.1 30.63c-.22.22-.51.33-.81.33M5.17 3.53c-.96 0-1.75.78-1.75 1.74v21.78l5.27-5.27c.23-.23.54-.35.86-.33h17.27c.96 0 1.75-.78 1.75-1.75V5.28c0-.96-.78-1.74-1.75-1.74H5.17Z", "M17.77 16.1H6.86a1.14 1.14 0 1 1 0-2.28h10.91a1.14 1.14 0 1 1 0 2.28M25.14 11.53H6.86a1.14 1.14 0 1 1 0-2.28h18.28a1.14 1.14 0 1 1 0 2.28"] },
|
|
313
|
+
"Companies": { "viewBox": "0 0 32 32", "paths": ["M15.01 2.96H5.37A3.38 3.38 0 0 0 2 6.34v21.24c0 .8.65 1.45 1.45 1.45h4.28V24.2c0-.54.44-.99.99-.99h2.96c.54 0 .99.44.99.99v4.82h4.32c.8 0 1.45-.65 1.45-1.45V6.35c0-1.87-1.52-3.38-3.38-3.38h-.04Zm-.48 4.82H5.86c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h8.69c.54 0 .99.44.99.99s-.44.99-.99.99zm.99 3.86c0 .54-.44.99-.99.99H5.86c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h8.69c.54.01.97.45.97.99m-9.66 5.8c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h8.69c.54 0 .99.44.99.99s-.44.99-.99.99zm20.77-4.82h-4.84c-.79 0-1.43.63-1.45 1.41v13.52c0 .8.65 1.45 1.45 1.45h6.76c.8 0 1.45-.65 1.45-1.45V16.01c0-1.87-1.51-3.38-3.37-3.38Zm-.48 9.66h-1.97c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h1.97c.54 0 .99.44.99.99s-.44.99-.99.99m0-4.82h-1.97c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h1.97c.54 0 .99.44.99.99s-.44.99-.99.99"] },
|
|
314
|
+
"Conditional": { "viewBox": "0 0 32 32", "paths": ["M28.33 18.8h-1.68v-6.16c0-.92-.76-1.67-1.68-1.67h-7.28V6.5h3.92c.93 0 1.68-.75 1.68-1.68s-.75-1.68-1.68-1.68h-11.2c-.93 0-1.68.75-1.68 1.68s.75 1.68 1.68 1.68h3.92v4.47H7.05c-.93 0-1.68.75-1.68 1.68v6.16H3.69c-.92 0-1.67.75-1.67 1.67v6.72c0 .93.75 1.69 1.67 1.69h6.73c.93 0 1.68-.75 1.68-1.68v-6.73c0-.93-.75-1.68-1.68-1.68H8.74v-4.47H23.3v4.47h-1.68c-.93 0-1.68.75-1.68 1.68v6.72c0 .93.75 1.68 1.68 1.68h6.72c.93 0 1.68-.75 1.68-1.68v-6.72c0-.92-.75-1.67-1.67-1.67ZM8.72 25.53H5.36v-3.36h3.36zm17.89 0h-3.33v-3.36h3.36l-.04 3.36Z"] },
|
|
315
|
+
"ContactDuplicate": { "viewBox": "0 0 32 32", "paths": ["M23.27 13.1c.94-.1 1.77-.52 2.39-1.35.94-1.35 1.46-2.91 1.46-4.47v-.21c.1-2.18-1.56-3.95-3.74-4.06s-3.95 1.56-4.06 3.74v.62c0 1.66.52 3.22 1.46 4.47.62.73 1.46 1.14 2.5 1.25Z", "M29.61 14.34c-.83-.94-1.77-1.66-2.91-2.18-.73 1.25-2.08 1.98-3.54 2.08-1.46-.1-2.7-.83-3.54-2.08l-.31.1c0 1.46-.31 2.81-.83 4.16-.1.21 0 .42.21.52.94.52 1.87 1.14 2.7 1.87.1 0 .1.1.21.1.52.1 1.04.21 1.56.21 2.5 0 4.78-1.04 6.45-2.91.52-.62.52-1.35 0-1.87M16.92 19.02l-.1-.1c-1.14 1.77-3.02 2.91-5.1 3.02-2.08-.1-3.95-1.25-5.1-2.91-1.56.73-3.02 1.77-4.16 3.12-.62.73-.62 1.77 0 2.5 4.37 5.2 12.17 5.82 17.37 1.46.52-.42.94-.83 1.35-1.35.21-.31.42-.83.31-1.25 0-.42-.21-.94-.52-1.25-1.04-1.46-2.39-2.5-4.06-3.22Z", "M11.72 20.27c1.46-.1 2.7-.83 3.54-1.98 1.35-1.87 2.08-4.16 2.08-6.55v-.31c0-3.12-2.5-5.72-5.72-5.72S6 8.31 6 11.43v.31c0 2.39.73 4.68 2.18 6.55.83 1.25 2.08 1.87 3.54 1.98"] },
|
|
316
|
+
"ContactProperties": { "viewBox": "0 0 32 32", "paths": ["M9.03 28.48V3.52a1.52 1.52 0 1 0-3.04 0v24.96a1.52 1.52 0 1 0 3.04 0M12.52 17h.01c.2 0 .4-.04.58-.12h-.01l11.98-5c.55-.23.92-.76.92-1.38s-.37-1.15-.91-1.38h-.01l-11.98-5c-.16-.06-.34-.1-.53-.1a1.5 1.5 0 0 0-1.5 1.48v9.98c0 .83.67 1.5 1.5 1.5h-.05Z"] },
|
|
317
|
+
"Contacts": { "viewBox": "0 0 32 32", "paths": ["M22.89 17.9c-1.35 2.12-3.63 3.53-6.26 3.66h-.02a7.84 7.84 0 0 1-6.23-3.57l-.02-.03c-2.01.93-3.71 2.22-5.1 3.79v.02c-.38.4-.6.94-.6 1.53 0 .55.2 1.06.53 1.46 2.8 3.23 6.91 5.26 11.49 5.26s8.6-1.99 11.38-5.14v-.02c.38-.41.6-.95.6-1.54s-.22-1.13-.59-1.54a15.2 15.2 0 0 0-5.1-3.82l-.09-.04Zm-6.28 1.65c1.78-.1 3.32-1 4.29-2.35v-.02c1.63-2.18 2.6-4.92 2.6-7.89v-.38.02C23.5 5.1 20.4 2 16.57 2S9.64 5.1 9.64 8.93v.38c0 2.98.98 5.73 2.64 7.95l-.02-.03c1 1.37 2.57 2.26 4.36 2.33h.01Z"] },
|
|
318
|
+
"Content": { "viewBox": "0 0 32 32", "paths": ["M8.21 9.98c-.98 0-1.78-.8-1.78-1.78s.8-1.78 1.78-1.78 1.78.8 1.78 1.78-.8 1.78-1.78 1.78m0-2.28c-.28 0-.51.23-.51.51s.23.51.51.51.51-.23.51-.51-.23-.51-.51-.51M13.92 15.57c-.75 0-1.5-.28-2.06-.85l-1.03-1.03a.653.653 0 0 0-.9 0l-1.55 1.55c-.45.45-1.17.45-1.62 0a1.14 1.14 0 0 1 0-1.62l1.55-1.55c1.1-1.1 3.03-1.1 4.13 0l1.03 1.03c.25.25.65.25.9 0l3.36-3.36c.56-.56 1.3-.85 2.07-.83.75.02 1.46.33 2.01.88l2.63 2.63c.45.45.45 1.17 0 1.62s-1.17.45-1.62 0l-2.63-2.63a.66.66 0 0 0-.46-.21c-.16 0-.28.05-.39.16l-3.36 3.36c-.57.57-1.32.85-2.06.85", "M25.86 29.29H5.29c-1.89 0-3.43-1.54-3.43-3.43V5.29c0-1.89 1.54-3.43 3.43-3.43h20.57c1.89 0 3.43 1.54 3.43 3.43v20.57c0 1.89-1.54 3.43-3.43 3.43M5.29 4.14c-.63 0-1.14.51-1.14 1.14v20.57c0 .63.51 1.14 1.14 1.14h20.57c.63 0 1.14-.51 1.14-1.14V5.29c0-.63-.51-1.14-1.14-1.14H5.29Z", "M23.57 20.14h-16a1.14 1.14 0 1 1 0-2.28h16a1.14 1.14 0 1 1 0 2.28M23.57 24.71h-16a1.14 1.14 0 1 1 0-2.28h16a1.14 1.14 0 1 1 0 2.28"] },
|
|
319
|
+
"CreditCard": { "viewBox": "0 0 32 32", "paths": ["M27.26 6.81H4.75c-1.5 0-2.72 1.21-2.75 2.7V22.4a2.74 2.74 0 0 0 2.71 2.78h22.55c1.51 0 2.74-1.23 2.74-2.74V9.51c-.02-1.5-1.24-2.7-2.74-2.7M3.75 9.52c.02-.53.46-.95 1-.95h22.51c.53 0 .97.42.99.95v1.3H3.75zm24.5 12.89c.02.55-.4 1.01-.94 1.03H4.75c-.55 0-1-.45-1-1V14.1h24.5v8.3Z"] },
|
|
320
|
+
"Credits": { "viewBox": "0 0 32 32", "paths": ["M10.86 32C4.873 32 0 27.13 0 21.143S4.873 10.286 10.86 10.286s10.858 4.87 10.858 10.857S16.848 32 10.86 32m0-19.429c-4.726 0-8.573 3.846-8.573 8.572s3.847 8.572 8.573 8.572 8.572-3.846 8.572-8.572-3.846-8.572-8.572-8.572", "M25.143 20.855c-.435 0-.85-.25-1.04-.672a1.14 1.14 0 0 1 .569-1.511 8.6 8.6 0 0 0 5.043-7.815c0-4.725-3.846-8.571-8.572-8.571a8.6 8.6 0 0 0-7.816 5.042 1.146 1.146 0 0 1-1.511.57 1.14 1.14 0 0 1-.572-1.512A10.89 10.89 0 0 1 21.143 0C27.13 0 32 4.87 32 10.857a10.88 10.88 0 0 1-6.387 9.896c-.151.069-.312.102-.47.102", "M26.08 13.714a1.14 1.14 0 0 1-1.098-1.458 4.244 4.244 0 0 0-5.24-5.239 1.134 1.134 0 0 1-1.412-.783 1.14 1.14 0 0 1 .783-1.413 6.526 6.526 0 0 1 8.066 8.065c-.143.502-.6.828-1.099.828M10.632 27.429a6.29 6.29 0 0 1-6.282-6.282 6.3 6.3 0 0 1 5.01-6.15c.592-.14 1.223.269 1.348.89a1.14 1.14 0 0 1-.888 1.347 4.01 4.01 0 0 0-3.184 3.913 4 4 0 0 0 3.996 3.996 3.985 3.985 0 0 0 3.971-3.554 1.15 1.15 0 0 1 1.262-1.011c.627.07 1.08.634 1.011 1.261a6.27 6.27 0 0 1-6.244 5.59Z"] },
|
|
321
|
+
"Crm": { "viewBox": "0 0 32 32", "paths": ["M25.57 29.29h-16c-1.89 0-3.43-1.54-3.43-3.43V5.29c0-1.89 1.54-3.43 3.43-3.43h16C27.46 1.86 29 3.4 29 5.29v20.57c0 1.89-1.54 3.43-3.43 3.43m-16-25.15c-.63 0-1.14.51-1.14 1.14v20.57c0 .63.51 1.14 1.14 1.14h16c.63 0 1.14-.51 1.14-1.14V5.29c0-.63-.51-1.14-1.14-1.14h-16Z", "M9.57 11H5a1.14 1.14 0 1 1 0-2.28h4.57a1.14 1.14 0 1 1 0 2.28M9.57 16.71H5a1.14 1.14 0 1 1 0-2.28h4.57a1.14 1.14 0 1 1 0 2.28M9.57 22.43H5a1.14 1.14 0 1 1 0-2.28h4.57a1.14 1.14 0 1 1 0 2.28M17.75 15.57c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4m0-5.71a1.71 1.71 0 1 0-.002 3.418 1.71 1.71 0 0 0 .002-3.418M14.14 22.43a1.143 1.143 0 0 1-1.02-1.67c.91-1.74 2.68-2.82 4.62-2.82s3.72 1.08 4.62 2.82a1.143 1.143 0 0 1-2.03 1.05c-.51-.98-1.5-1.59-2.6-1.59s-2.08.61-2.6 1.59c-.2.39-.6.61-1.01.61Z"] },
|
|
322
|
+
"CRMDevelopment": { "viewBox": "0 0 32 32", "paths": ["M14.27 21.31a1.145 1.145 0 0 1-1.11-1.44l2.46-9.16c.16-.61.79-.97 1.4-.81s.97.79.81 1.4l-2.46 9.16c-.14.51-.6.85-1.1.85M21.29 19.14c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l1.55-1.55-1.55-1.55a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0l2.36 2.36a1.16 1.16 0 0 1 0 1.62l-2.36 2.36c-.22.22-.52.33-.81.33M9.86 19c-.29 0-.58-.11-.81-.33l-2.36-2.36a1.14 1.14 0 0 1 0-1.62l2.36-2.36a1.14 1.14 0 0 1 1.62 0c.45.45.45 1.17 0 1.62L9.12 15.5l1.55 1.55A1.14 1.14 0 0 1 9.86 19", "M25.86 29.29H5.29c-1.89 0-3.43-1.54-3.43-3.43V5.29c0-1.89 1.54-3.43 3.43-3.43h20.57c1.89 0 3.43 1.54 3.43 3.43v20.57c0 1.89-1.54 3.43-3.43 3.43M5.29 4.14c-.63 0-1.14.51-1.14 1.14v20.57c0 .63.51 1.14 1.14 1.14h20.57c.63 0 1.14-.51 1.14-1.14V5.29c0-.63-.51-1.14-1.14-1.14H5.29Z"] },
|
|
323
|
+
"Databases": { "viewBox": "0 0 32 32", "paths": ["M24.99 2H7.03C4.87 2 3.12 3.76 3.11 5.92v20.21A3.923 3.923 0 0 0 7.03 30h12.36c.46 0 .87-.19 1.17-.49l7.85-7.85c.3-.3.48-.71.49-1.17V5.92c0-2.15-1.74-3.9-3.89-3.92ZM6.47 26.13V5.92c0-.31.25-.56.56-.56H25c.31 0 .56.25.56.56V17.7h-5.05a3.93 3.93 0 0 0-3.93 3.93v5.05H7.03a.56.56 0 0 1-.56-.56Z"] },
|
|
324
|
+
"DataManagement": { "viewBox": "0 0 32 32", "paths": ["M16.29 16C9.88 16 4.86 13.11 4.86 9.43s5.02-6.57 11.43-6.57 11.43 2.89 11.43 6.57S22.7 16 16.29 16m0-10.86c-5.39 0-9.14 2.26-9.14 4.29s3.76 4.29 9.14 4.29 9.14-2.26 9.14-4.29-3.76-4.29-9.14-4.29", "M16.29 22.29c-6.41 0-11.43-2.89-11.43-6.57a1.14 1.14 0 1 1 2.28 0c0 2.03 3.76 4.29 9.14 4.29s9.14-2.26 9.14-4.29a1.14 1.14 0 1 1 2.28 0c0 3.69-5.02 6.57-11.43 6.57Z", "M16.29 28.57c-6.41 0-11.43-2.89-11.43-6.57V9.14a1.14 1.14 0 1 1 2.28 0V22c0 2.03 3.76 4.29 9.14 4.29s9.14-2.26 9.14-4.29a1.14 1.14 0 1 1 2.28 0c0 3.69-5.02 6.57-11.43 6.57Z", "M26.57 22.86c-.63 0-1.14-.51-1.14-1.14V9.43a1.14 1.14 0 1 1 2.28 0v12.29c0 .63-.51 1.14-1.14 1.14"] },
|
|
325
|
+
"DataSync": { "viewBox": "0 0 32 32", "paths": ["M8.93 15.3v-1.94a.4.4 0 0 1 .39-.36h16.01c.22 0 .39-.18.39-.39V9.5a.39.39 0 0 0-.39-.39H9.32a.39.39 0 0 1-.39-.39V6.76c0-.22-.19-.4-.41-.39a.36.36 0 0 0-.2.06l-6.15 3.96c-.18.12-.22.36-.1.53.03.04.06.08.1.1l6.13 4.6c.17.13.42.1.55-.08.05-.07.08-.15.08-.24m20.93 5.05-6.13-3.95a.393.393 0 0 0-.55.13.36.36 0 0 0-.06.2v2.02c0 .22-.18.39-.39.39l-15.44-.03a.39.39 0 0 0-.39.39v3.01c0 .22.18.39.39.39l15.42.05c.22 0 .39.18.39.39v1.88a.39.39 0 0 0 .63.31l6.13-4.6c.17-.13.2-.38.07-.55l-.06-.06Z"] },
|
|
326
|
+
"Date": { "viewBox": "0 0 32 32", "paths": ["M9.24 15.51h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96H9.24a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96m5.78 0h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96h-1.93a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96m5.79 0h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96h-1.93a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96M9.23 21.3h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96H9.23a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96m5.78 0h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96h-1.93a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96M10.69 2h-.05c-.8 0-1.45.65-1.45 1.45v2.41H6.83c-1.85 0-3.36 1.49-3.38 3.33v17.42c0 1.87 1.51 3.38 3.38 3.38h13.55c.38 0 .73-.15.99-.39s6.81-6.8 6.81-6.8c.23-.26.38-.6.38-.97V9.19c0-1.87-1.51-3.38-3.38-3.38h-2.36V3.45c0-.8-.65-1.45-1.45-1.45h-.05c-.79.02-1.42.66-1.42 1.45v2.41h-7.78V3.45c0-.79-.63-1.43-1.42-1.45ZM6.8 27.1a.49.49 0 0 1-.49-.49V13.58h19.34v7.6l-.12.12h-3.7c-1.07 0-1.94.87-1.94 1.94v3.73l-.12.12H6.8Z"] },
|
|
327
|
+
"Deals": { "viewBox": "0 0 32 32", "paths": ["m16.5 14.34-1.9 1.7c-.55.46-1.27.74-2.05.74-.98 0-1.85-.44-2.44-1.12-.47-.56-.75-1.28-.75-2.07 0-.98.44-1.86 1.13-2.45s1.46-1.39 1.46-1.39l.73-.61.97-.81s.05-.04.07-.07c.26-.25.43-.6.43-.99 0-.32-.11-.62-.3-.85-.25-.3-.63-.5-1.06-.5-.33 0-.63.12-.87.31S6 11.08 6 11.08H3.35c-.76 0-1.37.61-1.37 1.37v8.79s-.01.09-.01.15 0 .1.01.15 0 .02 0 .03v.04c.02.07.05.14.08.2s.03.05.05.08c.03.06.07.11.1.15s.07.08.07.08c.04.05.07.09.12.12s.04.04.04.04c.1.08.21.14.34.19s.07 0 .07 0c.12.05.26.07.41.07h4.55l2.14 2.23c.25.26.6.42.99.42.41 0 .78-.18 1.04-.47.19-.24.3-.55.3-.89 0-.4-.16-.76-.42-1.02v-.04c-.17-.17-.28-.4-.28-.66s.11-.49.28-.66c.16-.16.39-.26.64-.26.27 0 .5.11.67.29s4.03 4.17 4.03 4.17c.25.26.6.42.98.42.42 0 .79-.19 1.04-.48a1.464 1.464 0 0 0-.11-1.9s-1.71-1.77-1.71-1.77c-.17-.17-.28-.4-.28-.66s.11-.49.28-.66c.17-.16.4-.26.65-.26.27 0 .5.11.67.29s3.16 3.27 3.16 3.27c.25.26.6.42.99.42.76 0 1.37-.61 1.37-1.37 0-.37-.15-.71-.38-.95s-7.4-7.66-7.4-7.66Zm12.26-3.24h-2.77l-5.81-4.43h-.04s-.1-.07-.16-.1a.64.64 0 0 0-.3-.11s-.05 0-.05 0h-.52c-.09.01-.18.04-.26.07s-.04 0-.04 0c-.08.03-.15.07-.22.11-.07.05-.14.1-.2.16s-5.08 4.23-5.08 4.23l-1.65 1.52c-.3.25-.5.63-.5 1.05 0 .76.61 1.37 1.37 1.37h.03c.33 0 .63-.12.86-.32s1.79-1.64 1.79-1.64l1.42-1.18.81.84 8.57 8.89c.61.63 1.46 1.02 2.41 1.02h.31c.15 0 .29-.03.43-.07h-.01.06c.07-.04.13-.07.19-.11s.16-.1.16-.1v-.04l.12-.12s.06-.06.08-.09.06-.1.09-.15.04-.06.04-.09c.03-.05.06-.12.08-.18s0-.04 0-.05v-9.11c0-.72-.54-1.3-1.23-1.37Z"] },
|
|
328
|
+
"Delay": { "viewBox": "0 0 32 32", "paths": ["M25.69 10.61V5.23h.53c.89 0 1.62-.72 1.62-1.62s-.72-1.62-1.62-1.62H5.77c-.89 0-1.62.72-1.62 1.62s.72 1.62 1.62 1.62h.53v5.38c0 .56.29 1.05.72 1.34S13.08 16 13.08 16l-6.06 4.04c-.44.29-.72.79-.72 1.34v5.39h-.53c-.89 0-1.62.72-1.62 1.62s.72 1.62 1.62 1.62h20.46c.89 0 1.62-.72 1.62-1.62s-.72-1.62-1.62-1.62h-.53v-5.39c0-.56-.29-1.05-.72-1.34s-6.06-4.05-6.06-4.05l6.06-4.04c.43-.3.71-.79.71-1.34m-3.22 11.64v4.52h-2.15v-1.92c0-.75-.39-1.41-.97-1.8s-2.22-1.35-2.22-1.35c-.32-.21-.72-.33-1.14-.33s-.82.12-1.15.33-2.15 1.34-2.15 1.34a2.16 2.16 0 0 0-1.01 1.82v1.89H9.56v-4.51l6.46-4.31 6.46 4.31Zm0-12.5-6.46 4.3-6.46-4.3V5.23h12.93v4.52Z"] },
|
|
329
|
+
"Delete": { "viewBox": "0 0 32 32", "paths": ["M7.11 9.46H24.8c.77.07 1.45-.51 1.52-1.28s-.51-1.45-1.28-1.52h-3.5V5.42c0-1.88-1.52-3.42-3.4-3.42h-4.38c-1.88 0-3.41 1.53-3.41 3.41v1.21H7.13c-.78 0-1.42.63-1.42 1.42s.63 1.42 1.42 1.42Zm6.02-4.05c0-.34.28-.62.62-.62h4.37c.34 0 .61.27.61.61v1.22h-5.59V5.41Zm10.03 21.18 1.18-14.24c0-.55-.45-.99-.99-.99H8.43c-.55 0-.99.45-.99.99L8.72 26.6c.16 1.92 1.77 3.4 3.7 3.4h7.04c1.93 0 3.54-1.48 3.7-3.4Zm-2.98-10.54-.47 8.4c-.06.51-.49.89-.99.89-.5-.06-.88-.49-.88-.99l.47-8.4c.01-.49.41-.89.91-.9h.06c.52.04.93.47.93.99h-.02Zm-7.51-.99c.51 0 .93.37.99.88l.42 8.43c0 .5-.37.93-.87.99h-.06c-.51 0-.94-.38-.99-.89l-.47-8.4v-.05c0-.52.4-.95.92-.99z"] },
|
|
330
|
+
"Description": { "viewBox": "0 0 32 32", "paths": ["M25.39 2.46c-.28-.28-.67-.46-1.1-.46s-.82.17-1.1.46l-3.7 3.7H5.58A3.637 3.637 0 0 0 2 9.78v16.6c0 2 1.63 3.62 3.63 3.63h16.59c2 0 3.62-1.63 3.63-3.63v-6.22c0-.86-.7-1.56-1.56-1.56s-1.56.7-1.56 1.56v6.22c0 .29-.23.52-.52.52H5.58c-.29 0-.52-.23-.52-.52V9.77c0-.29.23-.52.52-.52h10.81l-5.64 5.64c-.17.17-.3.37-.37.6S8.3 21.7 8.3 21.7c-.06.16-.09.34-.09.53a1.545 1.545 0 0 0 2.09 1.45h-.01l6.22-2.07c.24-.08.44-.21.61-.38L29.54 8.78c.28-.28.46-.67.46-1.1s-.17-.82-.46-1.1L25.4 2.46Z"] },
|
|
331
|
+
"DeveloperProjects": { "viewBox": "0 0 32 32", "paths": ["M23.76 9.47c.07.17.11.38.13.59v.38c-.02.22-.07.42-.13.6l-.06.15c-.22.49-.61.88-1.07 1.1h-.01l-.15.07c-.17.07-.37.11-.58.13h-.38a2.7 2.7 0 0 1-.59-.13l-.15-.06c-.48-.23-.86-.62-1.08-1.09-.02-.07-.04-.12-.06-.17-.07-.17-.11-.38-.13-.59v-.38c.01-.14.03-.26.06-.38.02-.09.05-.16.07-.23s.04-.09.06-.14c.22-.49.6-.88 1.07-1.1h.01l.15-.07c.17-.07.37-.11.58-.13h.38c.21.02.41.07.59.13l.15.06c.48.23.86.62 1.08 1.09.02.07.04.12.06.17M30 3.73v24.53c0 .96-.78 1.73-1.73 1.73H3.73c-.96 0-1.73-.78-1.73-1.73V3.73C2 2.77 2.78 2 3.73 2h24.53c.96 0 1.73.78 1.73 1.73ZM5.56 10.5l3.52 3.52c.36.36.94.36 1.3 0l3.52-3.52c.36-.36.36-.94 0-1.3l-3.52-3.52a.917.917 0 0 0-1.3 0L5.56 9.2c-.36.36-.36.94 0 1.3m8.88 11.81c0-2.57-2.09-4.66-4.66-4.66s-4.66 2.09-4.66 4.66 2.09 4.66 4.66 4.66 4.66-2.09 4.66-4.66m11.59-3.21c0-.64-.52-1.17-1.17-1.17h-6.33c-.64 0-1.17.52-1.17 1.17v6.33c0 .64.52 1.17 1.17 1.17h6.33c.64 0 1.17-.52 1.17-1.17zm.43-9.02c0-.41-.33-.74-.72-.74h-.87c-.07-.27-.16-.5-.28-.72L25.2 8c.14-.13.22-.32.22-.53s-.08-.4-.22-.53l-.25-.27c-.13-.14-.32-.23-.52-.23s-.39.08-.52.23l-.62.62c-.2-.11-.42-.21-.66-.28h-.02v-.9c0-.41-.33-.74-.72-.74h-.36c-.4 0-.72.33-.72.74V7c-.27.07-.5.17-.72.29h.02l-.61-.63a.724.724 0 0 0-1.06 0l-.25.25c-.14.13-.22.32-.22.53s.08.4.22.53l.61.64c-.11.2-.2.43-.27.67v.02h-.87c-.4 0-.72.33-.72.74v.4c0 .41.32.74.72.74h.87c.07.26.16.48.27.69l-.61.62c-.14.13-.22.32-.22.53s.08.4.22.53l.26.27c.13.14.32.23.52.23s.39-.08.52-.23l.61-.62c.19.11.42.21.66.28h.02v.89c0 .41.33.74.72.74h.36c.4 0 .72-.33.72-.74v-.89c.27-.07.5-.17.72-.29h-.02l.61.63c.13.14.32.23.52.23s.39-.08.52-.23l.26-.27c.14-.13.22-.32.22-.53s-.08-.4-.22-.53l-.61-.63c.11-.2.2-.43.27-.67v-.02h.88c.4 0 .72-.33.72-.74v-.37Z"] },
|
|
332
|
+
"Documents": { "viewBox": "0 0 32 32", "paths": ["M20.67 8.07a.47.47 0 0 0-.47-.47H5.27a.47.47 0 0 0-.47.47v9.33c0 .26.21.47.47.47.77 0 1.4.63 1.4 1.4s-.63 1.4-1.4 1.4C3.47 20.67 2 19.21 2 17.4V8.07C2 6.27 3.46 4.8 5.27 4.8H20.2c1.8 0 3.27 1.46 3.27 3.27 0 .77-.63 1.4-1.4 1.4s-1.4-.63-1.4-1.4m6.07 3.27H11.81c-1.8 0-3.27 1.46-3.27 3.27v9.33c0 1.8 1.46 3.27 3.27 3.27h14.93c1.8 0 3.27-1.46 3.27-3.27v-9.33c0-1.8-1.46-3.27-3.27-3.27m-.93 12.6H12.74c-.52 0-.93-.42-.93-.93s.42-.93.93-.93h13.07c.52 0 .93.42.93.93s-.42.93-.93.93m0-3.73H12.74c-.52 0-.93-.42-.93-.93s.42-.93.93-.93h13.07c.52 0 .93.42.93.93s-.42.93-.93.93m0-3.73H12.74c-.52 0-.93-.42-.93-.93s.42-.93.93-.93h13.07c.52 0 .93.42.93.93s-.42.93-.93.93"] },
|
|
333
|
+
"Down": { "viewBox": "0 0 32 32", "paths": ["M16.7 23.5c.11-.06.21-.12.3-.19s.18-.11.18-.11h.08l12.19-11.64c.35-.32.56-.78.56-1.29a1.746 1.746 0 0 0-2.94-1.28S16.06 19.48 16.06 19.48L5.03 8.98A1.746 1.746 0 0 0 2 10.17c0 .53.24 1.01.61 1.33S14.8 23.15 14.8 23.15h.08l.18.11c.09.07.19.13.29.18.09.03.2.06.31.07q.15.045.33.06c.12 0 .24-.03.34-.06h-.01.07c.1 0 .2 0 .29-.03Z"] },
|
|
334
|
+
"DownCarat": { "viewBox": "0 0 32 32", "paths": ["M5.13 7.73c-.64 0-1.23.26-1.65.69s-.68 1.02-.68 1.67.26 1.24.68 1.67l11.67 11.83c.42.43 1 .69 1.65.69s1.23-.27 1.65-.69l11.67-11.83c.42-.43.68-1.02.68-1.67s-.26-1.24-.68-1.67-1-.69-1.64-.69z"] },
|
|
335
|
+
"Download": { "viewBox": "0 0 32 32", "paths": ["M25.63 16.69c.37-.48.59-1.08.59-1.74v-.03c0-1.68-1.37-3.05-3.05-3.05h-.18c-.68.03-1.29.29-1.77.7a6.747 6.747 0 0 0-13.43.95v.13c0 .42.05.83.13 1.23v-.04h-.77c-.42 0-.83.06-1.23.16h.03c-2.29.56-3.97 2.6-3.97 5.03s1.67 4.47 3.93 5.03h.04c.36.1.77.16 1.19.16h18.72c2.29-.07 4.12-1.95 4.12-4.25s-1.91-4.26-4.26-4.26h-.14l.03-.02Zm-5.57.9-3.92 3.92c-.16.16-.38.26-.62.26s-.46-.1-.62-.26l-3.92-3.92a.87.87 0 0 1 .57-1.53h2.67v-3.92h2.62v3.92h2.67a.87.87 0 0 1 .57 1.53Z"] },
|
|
336
|
+
"DragHandle": { "viewBox": "0 0 32 32", "paths": ["M12 2h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1V15c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1V21c0-.55.45-1 1-1m6-18h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1V15c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1V21c0-.55.45-1 1-1m-6 5.99h2.01c.55 0 1 .45 1 1V29c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1v-2.01c0-.55.45-1 1-1m6 0h2.01c.55 0 1 .45 1 1V29c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1v-2.01c0-.55.45-1 1-1"] },
|
|
337
|
+
"Duplicate": { "viewBox": "0 0 32 32", "paths": ["M7.7 23.78h.59c-.04-.13-.06-.27-.06-.4V9.25a3.1 3.1 0 0 1 3.12-3.1h10.4v-.53c0-2-1.64-3.62-3.64-3.62H7.7c-2 0-3.62 1.62-3.63 3.62v14.53c0 2 1.63 3.62 3.63 3.63M20.16 8.21h-6.23c-2 0-3.62 1.63-3.63 3.63v14.53c0 2 1.63 3.62 3.63 3.63H24.3c2 0 3.62-1.63 3.63-3.63V11.85a3.65 3.65 0 0 0-3.63-3.63h-4.14Z"] },
|
|
338
|
+
"DynamicFilter": { "viewBox": "0 0 32 32", "paths": ["m19.76 10.14-5.5 1.12a.25.25 0 0 1-.3-.2c-.01-.06 0-.12.02-.17l3.89-8.29c.06-.13 0-.29-.13-.36-.04-.02-.09-.03-.14-.02l-6.64.64c-.1.02-.19.09-.22.19L6.71 16.79c-.04.14.03.28.17.32.05.01.1.02.14 0l3.93-.88c.15-.03.29.07.32.21v.11L8.18 29.66c-.04.14.05.29.19.33.12.03.24-.02.3-.13l11.38-19.31c.1-.11.09-.27-.02-.36a.27.27 0 0 0-.26-.05Z", "m17.81 8.81 1.54-.27 3.13-6.16c.06-.13 0-.29-.13-.36-.04-.02-.08-.03-.13-.02l-1.5.11-3.2 6.32c-.06.13 0 .29.13.36.05.02.1.03.15.02ZM24.95 9.18l-1.58.3-9.11 15.5-.87 3.69c-.02.15.08.28.22.31.1.02.2-.03.26-.11l11.4-19.31c.08-.13.04-.29-.09-.37a.29.29 0 0 0-.24-.02Z"] },
|
|
339
|
+
"Edit": { "viewBox": "0 0 32 32", "paths": ["m11.86 27.84.25-.1h.1c.08-.05.16-.11.23-.17l12.15-12.08c.28-.28.44-.65.43-1.05-.02-.84-.71-1.5-1.55-1.48-.38 0-.75.16-1.03.43L11.43 24.3l-.88-.87 10.97-10.87c.5-.66.38-1.6-.28-2.11a1.5 1.5 0 0 0-1.82 0L8.41 21.32l-.89-.87L18.54 9.56c.53-.64.45-1.59-.19-2.12a1.51 1.51 0 0 0-1.94.01L4.32 19.38c-.12.13-.21.27-.28.43v.14s.01.08 0 .13l-2.02 7.98q-.03.18 0 .36c0 .82.68 1.49 1.5 1.48.12.02.25.02.38 0l8.07-1.98-.1-.09ZM25.93 3.06a3.527 3.527 0 0 0-4.9 0L19.42 4.6c-.28.28-.44.66-.44 1.06s.16.77.44 1.05l5.87 5.8c.59.59 1.55.59 2.14 0l1.56-1.54a3.416 3.416 0 0 0 0-4.84l-3.07-3.07Z"] },
|
|
340
|
+
"Ellipses": { "viewBox": "0 0 32 32", "paths": ["M4.8 13.2C3.25 13.2 2 14.45 2 16s1.25 2.8 2.8 2.8zm0 5.6c1.55 0 2.8-1.25 2.8-2.8s-1.25-2.8-2.8-2.8zM16 13.2c-1.55 0-2.8 1.25-2.8 2.8s1.25 2.8 2.8 2.8zm0 5.6c1.55 0 2.8-1.25 2.8-2.8s-1.25-2.8-2.8-2.8zm11.2-5.6c-1.55 0-2.8 1.25-2.8 2.8s1.25 2.8 2.8 2.8zm0 5.6c1.55 0 2.8-1.25 2.8-2.8s-1.25-2.8-2.8-2.8z"] },
|
|
341
|
+
"Email": { "viewBox": "0 0 32 32", "paths": ["M5.48 25h21.03c1.92 0 3.48-1.56 3.48-3.48V10.48c0-1.92-1.56-3.48-3.48-3.48H5.48C3.56 7 2 8.56 2 10.48v11.04C2 23.44 3.56 25 5.48 25m.87-12.28a1 1 0 0 1 .77-1.64c.19 0 .37.05.53.15s7.02 6.24 7.02 6.24c.35.32.82.51 1.33.51s.98-.19 1.33-.51 7.02-6.24 7.02-6.24c.18-.16.41-.25.67-.25a1 1 0 0 1 .66 1.75s-3.48 3.11-3.48 3.11l3.54 3.43c.2.18.33.45.33.74a.997.997 0 0 1-1.72.69l-3.64-3.54-2.06 1.79c-.7.63-1.64 1.01-2.66 1.01s-1.96-.38-2.67-1.01l-2.02-1.79-3.63 3.54a.997.997 0 1 1-1.39-1.43s3.54-3.43 3.54-3.43z"] },
|
|
342
|
+
"EmailOpen": { "viewBox": "0 0 32 32", "paths": ["M5.5 28.51h21.02c1.92 0 3.48-1.56 3.48-3.48V13.97c0-1.43-.86-2.65-2.09-3.19h-.02l-9.9-6.68c-.55-.38-1.23-.61-1.97-.61s-1.42.23-1.98.62h.01l-9.88 6.67A3.48 3.48 0 0 0 2.01 14v11.04c0 1.92 1.56 3.48 3.48 3.48h.03ZM16.59 6.67l10.01 7.01c.26.18.43.48.43.82 0 .28-.12.53-.3.72l-4.55 4.42 3.48 3.11a1.003 1.003 0 0 1-.56 1.83c-.3 0-.56-.13-.74-.33s-.87-.75-.87-.75l-6.15-5.49c-.35-.31-.82-.51-1.33-.51s-.98.19-1.33.51-1.54 1.37-1.54 1.37l-4.63 4.11-.87.75c-.18.16-.41.25-.67.25-.55 0-1-.45-1-1 0-.3.13-.56.33-.75s3.48-3.11 3.48-3.11L5.29 15.2a.99.99 0 0 1-.3-.72c0-.34.17-.64.43-.82s2.4-1.68 2.4-1.68l2.15-1.5 1.55-1.09 3.91-2.74c.16-.11.36-.18.57-.18s.41.07.58.18Z"] },
|
|
343
|
+
"EmailThreadedReplies": { "viewBox": "0 0 32 32", "paths": ["M3.64 19.87v-8.19c0-2.63 1.47-3.41 3.33-3.41h19.72c0-1.33-.71-1.96-2.88-1.96H5.09C3.39 6.31 2.01 7.7 2 9.4v10.7c-.03.93.69 1.7 1.61 1.74h.02v-1.96Zm4.53 5.82H26.9c1.71 0 3.1-1.39 3.1-3.1v-9.81c0-1.71-1.39-3.1-3.1-3.1H8.17c-1.71 0-3.1 1.39-3.1 3.1v9.81c0 1.71 1.39 3.1 3.1 3.1m.78-10.92a.85.85 0 0 1-.21-.56c0-.49.39-.9.88-.9.17 0 .34.04.48.14l6.24 5.56c.68.6 1.7.6 2.37 0l6.24-5.56a.89.89 0 0 1 1.48.67c0 .25-.11.5-.29.67l-3.1 2.76 3.16 3.03c.36.33.39.9.06 1.26-.17.19-.41.29-.66.29a.88.88 0 0 1-.64-.28l-3.25-3.15-1.83 1.6c-.65.58-1.49.89-2.36.89-.88 0-1.72-.31-2.38-.89l-1.78-1.6-3.24 3.17a.892.892 0 0 1-1.54-.61c-.01-.26.09-.51.28-.69l3.15-3.06-3.06-2.75Z"] },
|
|
344
|
+
"Emoji": { "viewBox": "0 0 32 32", "paths": ["M16 30C8.27 30 2 23.73 2 16S8.27 2 16 2s14 6.27 14 14-6.27 13.99-14 14m0-26C9.37 4 4 9.37 4 16s5.37 12 12 12 12-5.37 12-12c0-6.62-5.37-11.99-12-12m6.48 9.87c0 1.09-.88 1.97-1.97 1.97s-1.97-.88-1.97-1.97.88-1.97 1.97-1.97 1.97.88 1.97 1.97m-10.99-1.99c1.09 0 1.97.88 1.97 1.97s-.88 1.97-1.97 1.97-1.97-.88-1.97-1.97.88-1.97 1.97-1.97m11.63 9.04c-1.94 1.56-4.4 2.53-7.1 2.6H16c-2.71-.08-5.18-1.07-7.12-2.66l.02.02a.98.98 0 0 1-.33-.73c0-.24.09-.46.23-.63.18-.2.44-.33.73-.33.24 0 .46.09.63.24a9.94 9.94 0 0 0 5.82 2.21H16c2.23-.09 4.26-.89 5.88-2.18l-.02.02c.17-.14.39-.23.63-.23.29 0 .54.13.72.32.14.17.23.39.23.63 0 .29-.13.55-.32.73Z"] },
|
|
345
|
+
"EmojiFillHappy": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m4.87 9.77c1.07 0 1.94.87 1.94 1.94s-.87 1.94-1.94 1.94-1.94-.87-1.94-1.94.87-1.94 1.94-1.94m-9.75 0c1.07 0 1.94.87 1.94 1.94s-.87 1.94-1.94 1.94-1.94-.87-1.94-1.94.87-1.94 1.94-1.94m11.83 9.56c-1.89 1.54-4.3 2.5-6.94 2.58h-.02c-2.65-.08-5.06-1.04-6.97-2.6l.02.02a.89.89 0 0 1-.31-.67.892.892 0 0 1 1.48-.67 9.76 9.76 0 0 0 5.76 2.14h.02c2.21-.08 4.21-.88 5.81-2.16h-.02c.16-.12.36-.2.59-.2.49 0 .89.4.89.89 0 .27-.12.51-.31.67"] },
|
|
346
|
+
"EmojiFillNeutral": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m4.87 9.77c1.07 0 1.94.87 1.94 1.94s-.87 1.94-1.94 1.94-1.94-.87-1.94-1.94.87-1.94 1.94-1.94m-9.75 0c1.07 0 1.94.87 1.94 1.94s-.87 1.94-1.94 1.94-1.94-.87-1.94-1.94.87-1.94 1.94-1.94m-.31 8.76h10.37c.57 0 1.04.46 1.04 1.04s-.46 1.04-1.04 1.04H10.81c-.57 0-1.04-.46-1.04-1.04s.46-1.04 1.04-1.04"] },
|
|
347
|
+
"EmojiFillSad": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m4.67 9.96a1.87 1.87 0 1 1-.73 3.6h.01a1.867 1.867 0 0 1 .7-3.6zm-9.33 0a1.87 1.87 0 1 1-.73 3.6h.01a1.867 1.867 0 0 1 .7-3.6zm-2.19 9.61c1.83-1.62 4.21-2.65 6.83-2.77H16c2.65.11 5.03 1.14 6.87 2.78h-.01c.18.17.3.42.3.69 0 .23-.08.45-.22.61a.844.844 0 0 1-1.24.09 9.27 9.27 0 0 0-5.67-2.3h-.02c-2.19.09-4.17.93-5.7 2.26h.01a.9.9 0 0 1-.59.22c-.1 0-.2-.02-.29-.05a.92.92 0 0 1-.57-.71s-.01-.1-.01-.15c0-.27.11-.51.29-.69Z"] },
|
|
348
|
+
"EmojiLineNeutral": { "viewBox": "0 0 32 32", "paths": ["M16 30C8.27 30 2 23.73 2 16S8.27 2 16 2s14 6.27 14 14-6.27 13.99-14 14m0-26C9.37 4 4 9.37 4 16s5.37 12 12 12 12-5.37 12-12c0-6.62-5.37-11.99-12-12m6.48 9.87c0 1.09-.88 1.97-1.97 1.97s-1.97-.88-1.97-1.97.88-1.97 1.97-1.97 1.97.88 1.97 1.97m-10.99-1.99c1.09 0 1.97.88 1.97 1.97s-.88 1.97-1.97 1.97-1.97-.88-1.97-1.97.88-1.97 1.97-1.97m-.67 8.65h10.37c.57 0 1.04.46 1.04 1.04s-.46 1.04-1.04 1.04H10.82c-.57 0-1.04-.46-1.04-1.04s.46-1.04 1.04-1.04"] },
|
|
349
|
+
"EmojiLineSad": { "viewBox": "0 0 32 32", "paths": ["M16 30C8.27 30 2 23.73 2 16S8.27 2 16 2s14 6.27 14 14-6.27 13.99-14 14m0-26C9.37 4 4 9.37 4 16s5.37 12 12 12 12-5.37 12-12c0-6.62-5.37-11.99-12-12m6.48 9.87c0 1.09-.88 1.97-1.97 1.97s-1.97-.88-1.97-1.97.88-1.97 1.97-1.97 1.97.88 1.97 1.97m-10.99-1.99c1.09 0 1.97.88 1.97 1.97s-.88 1.97-1.97 1.97-1.97-.88-1.97-1.97.88-1.97 1.97-1.97m-2.32 9.57c1.84-1.56 4.21-2.54 6.82-2.63h.02c2.62.08 5 1.06 6.85 2.65h-.01c.2.17.32.42.32.71 0 .24-.09.46-.23.63a.883.883 0 0 1-1.29.09 9.42 9.42 0 0 0-5.61-2.15h-.02c-2.16.09-4.11.9-5.66 2.18h.02c-.16.13-.37.22-.6.22-.28 0-.53-.13-.69-.33a1.03 1.03 0 0 1 .1-1.36Z"] },
|
|
350
|
+
"Enlarge": { "viewBox": "0 0 32 32", "paths": ["M30 4v10.09c0 1.08-.87 1.95-1.95 1.95s-1.95-.87-1.95-1.95V8.52l-5.62 5.62c-.04.07-.1.13-.16.19L8.63 26.02h5.44c1.07.01 1.95.89 1.95 1.97 0 .54-.22 1.02-.57 1.38-.36.35-.85.57-1.38.57H3.97c-.55 0-1.05-.23-1.41-.6-.34-.36-.56-.84-.56-1.37v-10.1c0-1.08.87-1.95 1.95-1.95s1.95.87 1.95 1.95v5.58l11.8-11.78s.09-.08.14-.11l5.61-5.59h-5.44c-1.08 0-1.95-.88-1.95-1.96 0-.54.22-1.03.57-1.38.36-.35.84-.57 1.38-.57h10.05C29.13 2.06 30 2.93 30 4"] },
|
|
351
|
+
"Enrichment": { "viewBox": "0 0 32 32", "paths": ["m5.31 6.79 1.19 2.2c.34.61.82 1.1 1.43 1.44l2.18 1.2-2.18 1.2c-.61.34-1.09.83-1.43 1.44l-1.19 2.2-1.19-2.2c-.34-.61-.82-1.1-1.43-1.44l-2.18-1.2 2.18-1.2c.61-.34 1.09-.83 1.43-1.44zM13.74 3.62l.8 1.48c.23.41.55.74.96.97l1.47.81-1.47.81c-.41.23-.74.56-.96.97l-.8 1.48-.8-1.48c-.23-.41-.55-.74-.96-.97l-1.47-.81 1.47-.81c.41-.23.74-.56.96-.97zM31.31 12.75c.24.22.26.59.04.84L18.3 28.19a.58.58 0 0 1-.84.03l-8.14-7.88a.607.607 0 0 1-.02-.84l2.31-2.42c.23-.24.6-.24.83-.02l5.22 5.05L28 10.54c.22-.24.59-.26.83-.04z"] },
|
|
352
|
+
"Enroll": { "viewBox": "0 0 32 32", "paths": ["M28.65 20.95h-3.16V6.06c0-1.76-1.42-3.18-3.17-3.18H5.8A4.06 4.06 0 0 0 2 6.93v2.73c0 .75.61 1.36 1.36 1.36h4.07v14.02c0 1.16.48 2.21 1.26 2.95.72.69 1.71 1.12 2.79 1.12h14.45c2.25 0 4.07-1.82 4.07-4.07V22.3c0-.75-.6-1.35-1.35-1.36ZM22.33 5.59c.25 0 .46.2.46.46v14.9H14.2c-.75 0-1.36.61-1.36 1.36v2.65c0 .65-.41 1.2-.98 1.41s-.31 0-.31 0h-.05c-.37 0-.7-.14-.95-.37a1.32 1.32 0 0 1-.42-.97V6.96c0-.27-.03-.54-.08-.79v.03q0-.13-.05-.24c-.06-.11-.05-.24-.09-.36h12.43ZM4.71 8.3V6.83c0-.75.61-1.36 1.36-1.36s1.36.61 1.36 1.36v1.46H4.72ZM27.3 25.02c0 .75-.61 1.36-1.36 1.36H15.32c.14-.4.23-.86.23-1.34v-1.37H27.3zM13.29 10.11h6.32c.7-.06 1.24-.65 1.24-1.35s-.54-1.29-1.24-1.35h-6.45c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h.12Zm0 4.52h6.32c.7-.06 1.24-.65 1.24-1.35s-.54-1.29-1.24-1.35h-6.45c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h.12Zm0 4.53h6.32c.7-.06 1.24-.65 1.24-1.35s-.54-1.29-1.24-1.35h-6.45c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h.12Z"] },
|
|
353
|
+
"Exclamation": { "viewBox": "0 0 32 32", "paths": ["M19.74 26.26c0 2.07-1.67 3.74-3.74 3.74s-3.74-1.67-3.74-3.74 1.67-3.74 3.74-3.74 3.74 1.67 3.74 3.74M12.29 4.13A1.856 1.856 0 0 1 14.13 2h3.75c1.03 0 1.86.83 1.86 1.86 0 .09 0 .19-.02.28s-1.86 13.05-1.86 13.05c-.12.93-.9 1.63-1.85 1.63s-1.73-.71-1.85-1.63-1.88-13.07-1.88-13.07Z"] },
|
|
354
|
+
"ExclamationCircle": { "viewBox": "0 0 32 32", "paths": ["M15.86 31.86c-8.83 0-16-7.18-16-16s7.17-16 16-16 16 7.17 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14", "M15.86 20.43c-.63 0-1.14-.51-1.14-1.14V6.71a1.14 1.14 0 1 1 2.28 0v12.57c0 .63-.51 1.14-1.14 1.14Z", "M15.86 26.14c-.94 0-1.71-.77-1.71-1.71s.77-1.71 1.71-1.71 1.71.77 1.71 1.71-.77 1.71-1.71 1.71m0-2.28a.57.57 0 1 0 0 1.14.57.57 0 0 0 0-1.14"] },
|
|
355
|
+
"ExternalLink": { "viewBox": "0 0 32 32", "paths": ["M26.91 5.78c-.07-.16-.16-.3-.28-.41a1.1 1.1 0 0 0-.4-.27c-.14-.06-.3-.09-.47-.09h-7.72c-.7 0-1.26.56-1.27 1.26 0 .7.57 1.27 1.27 1.27h4.64L11.86 18.35a1.272 1.272 0 0 0 1.8 1.8L24.47 9.34v4.64c0 .7.57 1.27 1.27 1.27s1.27-.57 1.27-1.27V6.27c0-.17-.03-.33-.09-.47Zm-4.57 11.91c-.7 0-1.27.57-1.27 1.27v5.15c0 .19-.16.35-.35.35H7.89c-.19 0-.35-.16-.35-.35V11.27c0-.19.16-.35.35-.35h5.15c.7 0 1.27-.57 1.27-1.27s-.57-1.27-1.27-1.27H7.89c-1.59 0-2.88 1.3-2.89 2.89v12.84a2.9 2.9 0 0 0 2.89 2.9h12.86c1.6 0 2.9-1.3 2.9-2.9v-5.14c0-.7-.57-1.27-1.27-1.27h-.03Z"] },
|
|
356
|
+
"Favorite": { "viewBox": "0 0 32 32", "paths": ["m17.11 3.44 2.51 7.74c.16.47.6.79 1.1.79h8.13c.63 0 1.15.51 1.15 1.14 0 .37-.18.72-.48.94l-6.58 4.79c-.4.29-.57.81-.42 1.28l2.51 7.73a1.144 1.144 0 0 1-1.76 1.29l-6.58-4.78c-.4-.29-.95-.29-1.35 0l-6.58 4.78A1.138 1.138 0 0 1 7 27.86l2.51-7.73c.15-.47-.02-.99-.42-1.28l-6.58-4.79a1.15 1.15 0 0 1-.26-1.6c.22-.3.57-.48.94-.48h8.16c.5 0 .94-.32 1.1-.79l2.51-7.74c.2-.6.84-.93 1.45-.74.35.11.62.39.74.74Z"] },
|
|
357
|
+
"FavoriteHollow": { "viewBox": "0 0 32 32", "paths": ["m15.99 6.53 1.71 5.28a3.17 3.17 0 0 0 2.99 2.15h5.54l-4.45 3.25c-1.1.8-1.57 2.21-1.15 3.52l1.71 5.26-4.5-3.26c-.54-.38-1.18-.58-1.84-.58s-1.31.21-1.85.6L9.67 26l1.72-5.27c.41-1.3-.05-2.71-1.15-3.51l-4.47-3.25h5.52c1.35 0 2.56-.86 3-2.17l1.7-5.26m0-3.91c-.12 0-.23.02-.35.05-.35.11-.62.39-.74.74l-2.51 7.75c-.16.47-.6.79-1.1.79H3.16c-.63 0-1.15.51-1.16 1.14 0 .37.18.72.48.94l6.59 4.79c.4.29.57.81.42 1.28l-2.52 7.74a1.144 1.144 0 0 0 1.09 1.51c.24 0 .48-.08.68-.22l6.59-4.78c.2-.14.44-.22.68-.22s.48.07.68.22l6.59 4.78c.21.15.44.23.68.23.35 0 .7-.16.93-.47.22-.3.28-.69.16-1.05l-2.51-7.74c-.15-.47.02-.99.42-1.28l6.56-4.79c.51-.37.63-1.09.26-1.6-.22-.3-.57-.48-.94-.48H20.7c-.5 0-.94-.32-1.1-.79l-2.51-7.75c-.16-.49-.61-.79-1.1-.79"] },
|
|
358
|
+
"File": { "viewBox": "0 0 32 32", "paths": ["M27.19 10.56a2 2 0 0 0-.12-.35s0-.07 0-.07c-.06-.11-.14-.21-.22-.3l-7.53-7.5c-.08-.08-.18-.16-.29-.22s-.08 0-.08 0c-.1-.05-.21-.09-.33-.11S9 2.01 9 2.01c-2.31 0-4.18 1.86-4.21 4.16v20.1c0 2.2 1.73 3.74 4.21 3.74h14.02c2.47 0 4.21-1.54 4.21-3.74V10.56h-.03Zm-2.81 15.7c0 .77-.76.97-1.4.97H8.99c-.64 0-1.4-.17-1.4-.97V6.16c0-.77.63-1.4 1.4-1.4h7.95V9.9c0 1.29 1.05 2.34 2.34 2.34h5.1z"] },
|
|
359
|
+
"FilledXCircleIcon": { "viewBox": "0 0 32 32", "paths": ["M16 1.14C7.79 1.14 1.14 7.79 1.14 16S7.79 30.86 16 30.86 30.86 24.2 30.86 16 24.2 1.14 16 1.14m5.38 18.62a1.14 1.14 0 0 1-.81 1.95c-.29 0-.58-.11-.81-.33L16 17.62l-3.76 3.76c-.23.22-.52.33-.81.33s-.59-.11-.81-.33a1.14 1.14 0 0 1 0-1.62L14.38 16l-3.76-3.76a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0L16 14.38l3.76-3.76a1.14 1.14 0 0 1 1.62 0c.45.45.45 1.17 0 1.62L17.62 16z", "M16 0C7.18 0 0 7.18 0 16s7.18 16 16 16 16-7.18 16-16S24.82 0 16 0m0 29.71C8.44 29.71 2.29 23.56 2.29 16S8.44 2.28 16 2.28 29.71 8.44 29.71 16 23.56 29.71 16 29.71"] },
|
|
360
|
+
"Filter": { "viewBox": "0 0 32 32", "paths": ["M3.75 27.07H9v.58c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75v-4.68c0-.97-.78-1.75-1.75-1.75S9 22 9 22.97v.63H3.75c-.97 0-1.75.78-1.75 1.75s.78 1.75 1.75 1.75zm24.47-3.47H14.81v3.5h13.41c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75M3.75 17.74h15.74v.69c0 .9.73 1.64 1.64 1.64h.22c.9 0 1.64-.73 1.64-1.64v-4.88c0-.9-.73-1.64-1.64-1.64h-.22c-.9 0-1.64.73-1.64 1.64v.69H3.75c-.97 0-1.75.78-1.75 1.75s.78 1.75 1.75 1.75m24.47-3.5h-2.88v3.5h2.91c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75zM3.75 8.43H9v.69c0 .9.73 1.64 1.64 1.64h.22c.9 0 1.64-.73 1.64-1.64V4.24c0-.9-.73-1.64-1.64-1.64h-.22C9.74 2.6 9 3.33 9 4.24v.65H3.75C2.78 4.89 2 5.67 2 6.64s.78 1.75 1.75 1.75zm11.07-3.54v3.54h13.41c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75z"] },
|
|
361
|
+
"Folder": { "viewBox": "0 0 32 32", "paths": ["M5.77 28.39h20.47c2.07 0 3.76-1.68 3.76-3.76v-10.8c0-2.07-1.68-3.76-3.76-3.76H15.91a.54.54 0 0 1-.45-.38s-1.2-3.52-1.2-3.52c-.51-1.51-1.91-2.58-3.57-2.58H7.31a3.76 3.76 0 0 0-3.56 2.56v.03l-1.56 4.66c-.12.36-.2.77-.2 1.19v12.6c0 2.07 1.68 3.76 3.76 3.76z"] },
|
|
362
|
+
"FolderOpen": { "viewBox": "0 0 32 32", "paths": ["M5.19 26.87c.21.62.79 1.06 1.47 1.06h19.71c2 0 3.63-1.62 3.63-3.63V13.9c0-2-1.63-3.62-3.63-3.62h-7.84a.52.52 0 0 1-.49-.35s-1.13-3.39-1.13-3.39c-.5-1.45-1.85-2.48-3.44-2.48h-3.23c-1.59 0-2.95 1.03-3.44 2.45v.03l-1.5 4.49c-.12.34-.19.73-.19 1.14v1.23H22.7c.46 0 .84.3.98.71s.48 1.44.48 1.44l1.26 3.79 1.41 4.1a1.04 1.04 0 0 1-.99 1.36h-.12c-.4-.06-.72-.34-.84-.71s-.83-2.52-.83-2.52l-2.04-6.11H3.55c-.86 0-1.56.7-1.56 1.56q0 .27.09.51s3.11 9.33 3.11 9.33Z"] },
|
|
363
|
+
"Forward": { "viewBox": "0 0 32 32", "paths": ["M9.2 14.28h14.93l-3.54-3.54c-.62-.74-.52-1.85.22-2.46.31-.26.71-.4 1.12-.41.41 0 .81.15 1.13.41l6.4 6.4c.34.33.53.77.54 1.24 0 .46-.18.91-.51 1.24l-6.4 6.4c-.68.68-1.8.68-2.48 0s-.68-1.8 0-2.48L24 17.59H9.2c-2.15 0-3.89 1.74-3.89 3.89v1.11c-.07.87-.8 1.54-1.67 1.54-.86 0-1.58-.67-1.64-1.53v-1.12a7.22 7.22 0 0 1 7.19-7.2z"] },
|
|
364
|
+
"Gauge": { "viewBox": "0 0 32 32", "paths": ["m19.67 22.42 5.96-10.47a.898.898 0 0 0-.13-1.04.88.88 0 0 0-1.05-.15s-10.5 5.9-10.5 5.9c-.33.2-.62.43-.87.7-.76.77-1.24 1.82-1.24 2.99 0 2.34 1.89 4.23 4.23 4.23 1.17 0 2.23-.47 2.99-1.24q.36-.405.6-.9v-.02zM16 22.17c-.5 0-.95-.2-1.28-.53s-.54-.78-.54-1.28.21-.96.54-1.28a1.83 1.83 0 0 1 2.56 0c.33.33.53.78.53 1.28 0 1-.81 1.81-1.8 1.81Zm3.5-10.66 3.71-2.09c-2.06-1.26-4.55-2-7.21-2-7.72 0-13.98 6.25-14 13.97 0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75c0-5.8 4.7-10.5 10.5-10.5 1.26 0 2.46.23 3.57.64zm7.58 1.36-1.93 3.4c.84 1.47 1.34 3.24 1.35 5.12 0 .97.78 1.75 1.75 1.75S30 22.36 30 21.39c0-3.22-1.1-6.19-2.95-8.54l.02.03Z"] },
|
|
365
|
+
"GenerateChart": { "viewBox": "0 0 32 32", "paths": ["M28.38 7.92h-2.2c-.89 0-1.62.72-1.62 1.62v16.69h-2.1V4.15c0-.87-.7-1.59-1.57-1.61h-2.21c-.89 0-1.62.72-1.62 1.62v22.03h-2.15V11.7c0-.89-.72-1.62-1.62-1.62h-2.2c-.89 0-1.62.72-1.62 1.62v14.54H7.41v-9.15c0-.89-.72-1.62-1.62-1.62h-2.2c-.89 0-1.62.72-1.62 1.62v10.77c0 .89.72 1.62 1.62 1.62h24.77c.89 0 1.62-.72 1.62-1.62V9.49a1.62 1.62 0 0 0-1.61-1.57Z"] },
|
|
366
|
+
"Gift": { "viewBox": "0 0 32 32", "paths": ["m29.44 10.17-6.99-.63c.3-.16.57-.37.81-.62a3.9 3.9 0 0 0 1.06-3.97 2.953 2.953 0 0 0-3.73-1.88c-.15.05-.3.11-.44.19-1.52.58-3.1 2.93-3.61 4.57-.2-.03-.41-.03-.62 0a4.81 4.81 0 0 0-3.05-4.2c-1.89-.73-4.19-.07-4.8 1.66-.42 1.4 0 2.92 1.06 3.92.11.12.24.23.37.33l-6.95.65c-.31.04-.54.3-.54.61v3.4c0 .31.23.57.54.61l1.33.13h.23a.4.4 0 0 0 0 .16v10.89c0 .62.45 1.16 1.06 1.26l2.48.41V10.81c1.31-.31 2.66-.46 4.01-.47.89.16 1.81.19 2.71.07.05 0 0 .11.15.26s.35.3.35.3l-3.4.43-.12 16.89 4.63.78a.9.9 0 0 0 .4 0l4.38-.67V11.24l-3.41-.33s.55-.29.57-.46c.62.03 1.25 0 1.87-.09.18 0 4.54.63 4.54.63l-.16 16.89 2.65-.41c.62-.1 1.07-.64 1.06-1.26V14.99l1.56-.13a.61.61 0 0 0 .56-.61v-3.47c0-.32-.25-.58-.56-.61m-15.9-.63a5.17 5.17 0 0 1-2.96-1.14c-.76-.62-.87-1.73-.25-2.48.01-.01.02-.02.03-.04.86-.54 1.97-.5 2.79.1.78.61 1.36 1.43 1.67 2.37.12.81-.36 1.12-1.28 1.19m5.44 0c-.97 0-1.51-.3-1.39-1.19.27-.96.84-1.82 1.62-2.45a2.48 2.48 0 0 1 2.87 0c.67.78.58 1.95-.2 2.62-.01.01-.03.02-.04.03-.81.65-1.81 1-2.85.99Z"] },
|
|
367
|
+
"GithubBranch": { "viewBox": "0 0 32 32", "paths": ["M27.62 4.72c-.33-.76-.86-1.41-1.53-1.89s-1.46-.76-2.29-.82c-.82-.06-1.65.11-2.38.49a4.51 4.51 0 0 0-2.44 4c0 .93.29 1.84.83 2.6s1.3 1.33 2.17 1.65v1.26c0 .53-.21 1.04-.59 1.41-.38.38-.88.59-1.41.59h-7.99c-.69 0-1.37.14-2 .42v-3.67c1-.35 1.84-1.05 2.38-1.97s.73-1.99.55-3.04-.72-2-1.53-2.68-1.84-1.06-2.9-1.06-2.09.38-2.9 1.06S4.23 4.7 4.06 5.75s.02 2.12.55 3.04c.54.92 1.38 1.61 2.38 1.97v10.5c-1 .35-1.85 1.05-2.38 1.97-.54.92-.73 1.99-.55 3.04s.72 2 1.54 2.68 1.84 1.06 2.9 1.06 2.09-.38 2.9-1.06 1.36-1.63 1.54-2.68-.02-2.12-.55-3.04a4.53 4.53 0 0 0-2.38-1.97V19c0-.53.21-1.04.59-1.41.38-.38.88-.59 1.41-.59H20c1.33 0 2.6-.53 3.54-1.46C24.48 14.6 25 13.33 25 12v-1.26a4.504 4.504 0 0 0 2.63-6.04ZM9.56 26.55a1.499 1.499 0 1 1-2.12-2.12 1.499 1.499 0 1 1 2.12 2.12m0-18.99a1.499 1.499 0 1 1-2.12-2.12 1.499 1.499 0 1 1 2.12 2.12m14.99 0a1.499 1.499 0 1 1-2.12-2.12 1.499 1.499 0 1 1 2.12 2.12"] },
|
|
368
|
+
"Globe": { "viewBox": "0 0 32 32", "paths": ["M13.89 20.03c-5.04 0-9.14-4.1-9.14-9.14s4.1-9.14 9.14-9.14 9.14 4.1 9.14 9.14-4.1 9.14-9.14 9.14m0-16c-3.78 0-6.86 3.08-6.86 6.86s3.08 6.86 6.86 6.86 6.86-3.08 6.86-6.86-3.08-6.86-6.86-6.86", "M13.89 24.6c-3.51 0-7.02-1.34-9.7-4.01a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0c4.46 4.46 11.71 4.46 16.16 0 4.46-4.46 4.46-11.71 0-16.16a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0c5.35 5.35 5.35 14.05 0 19.4a13.7 13.7 0 0 1-9.7 4.01", "M19.6 31.46h-5.71c-.63 0-1.14-.51-1.14-1.14v-6.86a1.14 1.14 0 1 1 2.28 0v5.71h4.57a1.14 1.14 0 1 1 0 2.28Z", "M13.89 31.46H8.18a1.14 1.14 0 1 1 0-2.28h5.71a1.14 1.14 0 1 1 0 2.28"] },
|
|
369
|
+
"Goal": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2.01 16 2m0 24.5c-5.8 0-10.5-4.7-10.5-10.5S10.2 5.5 16 5.5 26.5 10.2 26.5 16 21.8 26.49 16 26.5m0-18.67c-4.51 0-8.17 3.66-8.17 8.17s3.66 8.17 8.17 8.17 8.17-3.66 8.17-8.17S20.51 7.84 16 7.83m0 12.83c-2.58 0-4.67-2.09-4.67-4.67s2.09-4.67 4.67-4.67 4.67 2.09 4.67 4.67-2.09 4.67-4.67 4.67m2.33-4.67c0 1.29-1.04 2.33-2.33 2.33s-2.33-1.04-2.33-2.33 1.04-2.33 2.33-2.33 2.33 1.04 2.33 2.33"] },
|
|
370
|
+
"Grid": { "viewBox": "0 0 32 32", "paths": ["M4.33 2h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 8.99 2 7.95 2 6.66V4.33C2 3.04 3.04 2 4.33 2m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 19.49 2 18.45 2 17.16v-2.33c0-1.29 1.04-2.33 2.33-2.33m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 29.99 2 28.95 2 27.66v-2.33C2 24.04 3.04 23 4.33 23m10.5-21h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33V4.33C12.5 3.04 13.54 2 14.83 2m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33v-2.33c0-1.29 1.04-2.33 2.33-2.33m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33v-2.33c0-1.29 1.04-2.33 2.33-2.33m10.5-21h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33C24.04 8.99 23 7.95 23 6.66V4.33C23 3.04 24.04 2 25.33 2m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33v-2.33c0-1.29 1.04-2.33 2.33-2.33m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33v-2.33c0-1.29 1.04-2.33 2.33-2.33"] },
|
|
371
|
+
"GuidedActions": { "viewBox": "0 0 32 32", "paths": ["M24.52 15.05 9.87 9.99c-.43-.15-.9 0-1.15.38-.25.37-.23.87.07 1.21l3.77 4.4-3.77 4.4a.999.999 0 0 0 .76 1.65c.11 0 .22-.02.33-.05l14.65-5.06c.4-.14.67-.52.67-.95s-.27-.81-.67-.95Z", "M16 2C8.28 2 2 8.28 2 16s6.28 14 14 14 14-6.28 14-14S23.72 2 16 2m0 25C9.93 27 5 22.07 5 16S9.93 5 16 5s11 4.93 11 11-4.93 11-11 11"] },
|
|
372
|
+
"Hide": { "viewBox": "0 0 32 32", "paths": ["M29.8 14.92c-1.42-2.42-2.91-3.95-4.99-5.3l-.05-.03 2.92-3.03c.3-.31.47-.73.47-1.2s-.18-.89-.48-1.21c-.32-.31-.75-.52-1.23-.52s-.93.2-1.24.52l-3.82 3.82c-1.58-.57-3.41-.89-5.31-.89h-.3c-5.82 0-10.88 3.18-13.57 7.89 0 0-.2.35-.2.87 0 .42.16.8.16.8 1.25 2.23 2.96 4.06 5.01 5.42l.05.04-2.91 3.02c-.46.48-.84.95-.84 1.5 0 1.08.84 1.76 1.75 1.76.59 0 1.08-.42 1.5-.83l3.89-3.89c1.6.6 3.46.94 5.38.96h.23c5.82 0 10.89-3.18 13.57-7.9 0 0 .22-.44.22-.85s-.13-.81-.2-.93ZM9.77 19.57c-1.62-.95-3.96-3.67-3.99-3.69s0-.06 0-.06c2.23-3.2 5.87-5.25 10.01-5.25h.19c1.55 0 2.56.24 2.56.24l-1.45 1.45c-.34-.1-.71-.17-1.08-.17a3.66 3.66 0 0 0-3.66 3.65c0 .38.06.74.17 1.09l-2.74 2.74Zm16.43-3.72c-2.23 3.19-5.99 5.23-10.01 5.23-1.66 0-2.74-.23-2.74-.23l1.59-1.59c.31.09.62.13.95.13a3.66 3.66 0 0 0 3.65-3.66c0-.33-.04-.65-.13-.95l2.69-2.69c1.62.95 3.96 3.67 3.99 3.7.02.03 0 .06 0 .06Z"] },
|
|
373
|
+
"HighlyEngagedLead": { "viewBox": "0 0 32 32", "paths": ["M24.01 11.77c-1.02-.3.16.88.06 2.78-.08 1.46-1.73 2.92-2.52 2.57-.92-.4.85-5.26-1.65-9.44-2.08-3.46-8.2-6.78-7.78-5.35C14.19 9.22 6.94 13 5.33 17.09c-1.92 4.9.15 11.11 6.5 12.89.19.05.32-.19.18-.32-1.26-1.26-2.56-2.78-2.76-4.61-.27-2.55.48-4.11.94-4.81.65-.96-.25 1.13.14 2.49.26.91 1.09 1.51 1.78 1.69.09.02.18-.06.17-.15-.06-.52-.56-1.95.74-5.02.91-2.16 3.57-4.66 4.68-4.93.21-.05.1.25.02.44-1.16 2.58-.99 4.25-.26 5.35.71 1.06 3.14 2.94 3.36 5.34.17 1.84-.16 2.99-1.16 4.13-.08.09 0 .24.12.2 3.93-1.36 7.43-5.65 7.57-10.12.15-4.86-2.59-7.65-3.35-7.88h.01Z"] },
|
|
374
|
+
"Home": { "viewBox": "0 0 32 32", "paths": ["M26.39 16.53v12.31h-7.12V21.5c0-.36-.29-.66-.65-.67h-4.89c-.36 0-.66.29-.67.65v7.36H5.94V16.53l9.9-8.78c.2-.17.49-.17.68 0l9.86 8.78Zm3.24-.24c-.53.48-.89.51-1.4.07-.28-.24-9.59-8.65-12.03-10.86C13.61 7.78 4.26 15.98 3.83 16.33c-.38.38-.99.38-1.36 0-.03-.03-.06-.06-.08-.09-.52-.49-.51-.83.1-1.4L15.52 3.42c.38-.35.96-.35 1.34 0l3.83 3.45V5.44c.01-.13.12-.23.25-.22h2.64c.13 0 .24.09.25.22v4.34l5.64 5.1c.7.65.66.93.16 1.4Z"] },
|
|
375
|
+
"HorizontalRule": { "viewBox": "0 0 32 32", "paths": ["M28.25 14.25H3.75C2.78 14.25 2 15.03 2 16s.78 1.75 1.75 1.75h24.5c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75"] },
|
|
376
|
+
"HubDB": { "viewBox": "0 0 32 32", "paths": ["M28.91 9.65c0 4.22-5.78 7.65-12.91 7.65S3.08 13.87 3.08 9.65 8.86 2 16 2s12.91 3.42 12.91 7.65M16 25.56c-5.46 0-10.12-1.82-12.69-4.58-.13.41-.21.88-.22 1.37C3.09 26.57 8.87 30 16 30s12.91-3.42 12.91-7.65c0-.49-.08-.96-.23-1.4v.03c-2.58 2.76-7.24 4.58-12.7 4.58Zm0-6.35c-5.46 0-10.12-1.82-12.69-4.58-.13.41-.21.88-.22 1.37 0 4.22 5.78 7.65 12.91 7.65S28.91 20.23 28.91 16c0-.49-.08-.96-.23-1.4v.03c-2.58 2.76-7.24 4.58-12.7 4.58Z"] },
|
|
377
|
+
"ImageGallery": { "viewBox": "0 0 32 32", "paths": ["M25.84 8.13H12.65c-2.3 0-4.16 1.86-4.16 4.16v13.88c0 2.3 1.86 4.16 4.16 4.16h13.19c2.3 0 4.16-1.86 4.16-4.16V12.29c0-2.3-1.86-4.16-4.16-4.16m1.39 18.04c0 .77-.62 1.39-1.39 1.39H12.65c-.77 0-1.39-.62-1.39-1.39V12.29c0-.77.62-1.39 1.39-1.39h13.19c.77 0 1.39.62 1.39 1.39zm-2.5-7.88a1.02 1.02 0 0 0-1.13.27s-4.1 4.77-4.1 4.77c-.06.07-.16.12-.26.12-.06 0-.11-.01-.16-.04s-2.02-2.24-2.02-2.24c-.17-.13-.39-.21-.63-.21-.05 0-.11 0-.16.01-.27.04-.51.19-.66.39s-2.3 2.71-2.3 2.71c-.13.17-.2.38-.2.61 0 .57.46 1.03 1.03 1.03h10.19c.57 0 1.03-.46 1.03-1.03v-5.45c0-.42-.26-.79-.62-.94Zm-7.92-3.68c0 1.02-.83 1.85-1.85 1.85s-1.85-.83-1.85-1.85.83-1.85 1.85-1.85 1.85.83 1.85 1.85m3.7-9.72c0-.26-.21-.46-.46-.46H5.24c-.26 0-.46.21-.46.46v15.73c0 .26.21.46.46.46.77 0 1.39.62 1.39 1.39s-.62 1.39-1.39 1.39A3.24 3.24 0 0 1 2 20.62V4.9a3.24 3.24 0 0 1 3.24-3.24h14.81a3.24 3.24 0 0 1 3.24 3.24c0 .77-.62 1.39-1.39 1.39s-1.39-.62-1.39-1.39Z"] },
|
|
378
|
+
"Inbox": { "viewBox": "0 0 32 32", "paths": ["M29.86 17.35 25.1 5.54c-.28-.69-.94-1.16-1.72-1.16H8.59c-.77 0-1.44.48-1.71 1.15L2.13 17.32c-.09.2-.13.44-.14.69v7.77c0 1.02.82 1.84 1.84 1.85h24.31c1.02 0 1.85-.83 1.85-1.85v-7.75c0-.25-.05-.48-.14-.69Zm-20-9.26h12.28l3.26 8.11h-3.47c-.77 0-1.43.47-1.71 1.14s-1.07 2.63-1.07 2.63h-6.31l-1.07-2.61c-.28-.68-.94-1.15-1.71-1.15H6.59L9.85 8.1Z"] },
|
|
379
|
+
"Info": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 13.99-6.26 14-13.98V16c0-7.73-6.27-14-14-14m2.39 23.02H13.6v-9.59h4.79zm0-13.24H13.6V7.01h4.79z"] },
|
|
380
|
+
"InfoNoCircle": { "viewBox": "0 0 32 32", "paths": ["M16 29.71c-.63 0-1.14-.51-1.14-1.14V10.29a1.14 1.14 0 1 1 2.28 0v18.29c0 .63-.51 1.14-1.14 1.14Z", "M16 11.43h-5.71a1.14 1.14 0 1 1 0-2.28H16a1.14 1.14 0 1 1 0 2.28M22.86 29.71H9.15a1.14 1.14 0 1 1 0-2.28h13.71a1.14 1.14 0 1 1 0 2.28", "M16 5.71c-.94 0-1.71-.77-1.71-1.71s.77-1.71 1.71-1.71 1.71.77 1.71 1.71-.77 1.71-1.71 1.71m0-2.28a.57.57 0 1 0 0 1.14.57.57 0 0 0 0-1.14"] },
|
|
381
|
+
"InsertImage": { "viewBox": "0 0 32 32", "paths": ["M25.51 4h-19C4.02 4 2.01 6.01 2 8.5v15c0 2.48 2.01 4.49 4.49 4.5h19c2.48 0 4.49-2 4.51-4.47V8.5c0-2.48-2.01-4.49-4.49-4.5M27 23.53c0 .83-.67 1.5-1.5 1.5h-19c-.83 0-1.5-.67-1.5-1.5V8.5c0-.82.67-1.49 1.49-1.5H25.5c.83 0 1.5.67 1.5 1.5zm-2.94-11.42a1.505 1.505 0 0 0-1.66.4s-6 7-6 7c-.09.11-.23.17-.38.17-.08 0-.16-.02-.23-.06s-3-3.3-3-3.3c-.25-.2-.57-.32-.92-.32-.08 0-.15 0-.23.02-.41.05-.77.26-1 .57s-3.38 4-3.38 4c-.18.25-.29.56-.29.89 0 .83.67 1.5 1.5 1.5h15.01c.83 0 1.5-.67 1.5-1.5v-8c0-.63-.38-1.16-.92-1.39h-.01Zm-13.07-1.1c0 1.1-.9 2-2 2s-2-.9-2-2 .89-2 2-2 2 .89 2 2"] },
|
|
382
|
+
"InsertQuote": { "viewBox": "0 0 32 32", "paths": ["M9.7 13.21H6.91c-.25 0-.5.03-.73.08h.03V8.31c0-.39.31-.7.7-.7H9.7a2.1 2.1 0 1 0 0-4.2H6.91c-2.71 0-4.9 2.2-4.9 4.9v8.4q0 .3.09.57c-.05.24-.08.53-.08.82v5.6c0 2.71 2.2 4.9 4.9 4.9h2.79c2.71 0 4.9-2.2 4.9-4.9v-5.6c0-2.7-2.2-4.89-4.9-4.89Zm15.39 0H22.3c-.25 0-.5.03-.73.08h.03V8.31c0-.39.31-.7.7-.7h2.8a2.1 2.1 0 1 0 0-4.2h-2.8c-2.71 0-4.9 2.2-4.9 4.9v8.4q0 .3.09.57c-.05.24-.08.53-.08.82v5.6c0 2.71 2.2 4.9 4.9 4.9h2.8c2.71 0 4.9-2.2 4.9-4.9v-5.6c0-2.7-2.2-4.89-4.9-4.89h-.01Z"] },
|
|
383
|
+
"InsertVideo": { "viewBox": "0 0 32 32", "paths": ["M25.51 4h-19C4.02 4 2.01 6.01 2 8.5v15c0 2.48 2.01 4.49 4.49 4.5h19c2.48 0 4.49-1.99 4.51-4.47V8.5c0-2.48-2.01-4.49-4.49-4.5m-6.4 16.73c.03.9-.68 1.65-1.58 1.68h-11c-.88-.05-1.56-.8-1.53-1.68v-10.1c-.03-.88.65-1.63 1.53-1.69h11c.9.03 1.61.79 1.58 1.69zm7.94-.34c0 .42-.3.65-.68.42l-5.45-3.65v-2.88l5.45-3.65c.38-.27.68-.09.68.37z"] },
|
|
384
|
+
"Integrations": { "viewBox": "0 0 32 32", "paths": ["M27.65 8.54 16.62 2.18c-.18-.11-.4-.17-.64-.17s-.45.06-.64.17L4.31 8.54c-.37.23-.62.63-.62 1.1v12.73c0 .47.25.88.63 1.1l11.03 6.37c.18.11.4.17.64.17s.45-.06.64-.17l11.03-6.36c.38-.23.63-.63.64-1.1V9.65c0-.47-.26-.88-.65-1.1ZM15.99 4.75l8.48 4.9-8.48 4.9-8.48-4.9zm-9.75 7.1 8.48 4.9v9.78l-8.48-4.9zm11.03 14.68v-9.78l8.47-4.9v9.78z"] },
|
|
385
|
+
"Invoice": { "viewBox": "0 0 32 32", "paths": ["M25.67 2H6.33C4.47 2 2.96 3.51 2.96 5.37v21.25c0 1.86 1.51 3.37 3.37 3.37h19.34c1.86 0 3.37-1.51 3.37-3.37V5.37c0-1.86-1.51-3.37-3.37-3.37m1.69 24.63c0 .93-.75 1.69-1.69 1.69H6.33c-.93 0-1.69-.75-1.69-1.69V5.37c0-.93.75-1.69 1.69-1.69h19.34c.93 0 1.69.75 1.69 1.69v21.25Z", "M24.7 25.13h-5.97c-.4 0-.74.34-.74.74s.34.74.74.74h5.97c.4 0 .74-.34.74-.74s-.34-.74-.74-.74M7.3 7.52h10.75c.4 0 .74-.34.74-.74s-.34-.74-.74-.74H7.3c-.4 0-.74.34-.74.74s.34.74.74.74M25.35 22.77V10.02c0-.36-.29-.66-.65-.66H7.3c-.36 0-.65.3-.65.66v12.75s.02.17.04.21c.08.27.32.45.61.45h17.41c.36 0 .65-.3.65-.66Zm-6.73-.65H7.96v-3.1h10.67v3.1Zm0-4.41H7.96v-2.86h10.67v2.86Zm0-4.17H7.96v-2.87h10.67v2.87Zm5.41 8.58h-4.1v-3.1h4.1zm0-4.41h-4.1v-2.86h4.1zm0-4.17h-4.1v-2.87h4.1z"] },
|
|
386
|
+
"Kanban": { "viewBox": "0 0 32 32", "paths": ["M11.43 11.43h-8a1.14 1.14 0 1 1 0-2.28h8a1.14 1.14 0 1 1 0 2.28M28.57 11.43h-8a1.14 1.14 0 1 1 0-2.28h8a1.14 1.14 0 1 1 0 2.28", "M20.57 19.43c-.63 0-1.14-.51-1.14-1.14V3.43a1.14 1.14 0 1 1 2.28 0v14.86c0 .63-.51 1.14-1.14 1.14M11.43 19.43c-.63 0-1.14-.51-1.14-1.14V3.43a1.14 1.14 0 1 1 2.28 0v14.86c0 .63-.51 1.14-1.14 1.14", "M9.14 29.71H5.71c-1.89 0-3.43-1.54-3.43-3.43V5.71c0-1.89 1.54-3.43 3.43-3.43h20.57c1.89 0 3.43 1.54 3.43 3.43v14.86c0 1.89-1.54 3.43-3.43 3.43h-3.43c-1.89 0-3.43-1.54-3.43-3.43v-1.14h-6.86v6.86c0 1.89-1.54 3.43-3.43 3.43ZM5.71 4.57c-.63 0-1.14.51-1.14 1.14v20.57c0 .63.51 1.14 1.14 1.14h3.43c.63 0 1.14-.51 1.14-1.14v-8c0-.63.51-1.14 1.14-1.14h9.14c.63 0 1.14.51 1.14 1.14v2.29c0 .63.51 1.14 1.14 1.14h3.43c.63 0 1.14-.51 1.14-1.14V5.71c0-.63-.51-1.14-1.14-1.14z"] },
|
|
387
|
+
"Key": { "viewBox": "0 0 32 32", "paths": ["M18.97 13.76c.47-1.29.63-2.68.46-4.05a8.74 8.74 0 0 0-9.71-7.65 8.735 8.735 0 0 0-7.71 8.63c0 4.43 3.28 8.17 7.67 8.74 1.37.17 2.75.02 4.05-.45l5.52 5.52c.16.16.38.25.61.25h2.26c.48 0 .87.39.87.87v2.26c0 .23.09.45.25.61l1.24 1.24c.16.16.38.25.61.25h4.01c.48 0 .87-.39.87-.87v-3.99c0-.23-.09-.45-.25-.61L18.96 13.75ZM7.25 9.04c-.97 0-1.75-.78-1.75-1.75s.78-1.75 1.75-1.75S9 6.32 9 7.29s-.78 1.75-1.75 1.75"] },
|
|
388
|
+
"KnowledgeBase": { "viewBox": "0 0 32 32", "paths": ["M28.47 8c-.27-.86-.86-1.59-1.63-2.04a7.6 7.6 0 0 0-4.35-1.44c-2.36.15-4.63 1.01-6.48 2.48l-.15-.19a9.54 9.54 0 0 0-6.09-2.29c-1.76 0-3.49.5-4.98 1.44-.72.48-1.21 1.24-1.36 2.09-1.16.29-1.41.99-1.41 2.61v13.11a2.98 2.98 0 0 0 3.17 2.75h8.85c.29.6.9.98 1.56.98h.85c.67 0 1.27-.37 1.56-.98h8.85c1.63.1 3.04-1.12 3.16-2.75V10.66c0-1.67-.24-2.38-1.53-2.65ZM6.8 23.25c-2.23.72-2.31.53-2.31-1.74V9.12a1.9 1.9 0 0 1 1.06-1.81c3.78-2.47 7.96-.67 9.72.79v15.87l-.17-.07c-2.64-1.07-5.09-1.7-8.29-.66Zm18.37 0c-2.98-1.41-6.75 0-8.24.66-.08.04-.17.07-.26.09V8.13c1.56-1.17 5.25-3.61 9.68-.83.71.31 1.16 1.03 1.12 1.81v12.91c.02 1.72 0 2.31-2.28 1.24Z"] },
|
|
389
|
+
"Language": { "viewBox": "0 0 32 32", "paths": ["M29.94 14.75c0-.23-.05-.45-.09-.66s-.05-.34-.08-.5-.12-.59-.19-.89c-.02-.08-.04-.15-.06-.22-.2-.75-.43-1.4-.7-2.03l.03.09c-.39-.9-.82-1.67-1.3-2.39l.03.05s-.06-.07-.08-.11c-.24-.32-.47-.66-.72-.97s-.6-.69-.92-1.01c-2.52-2.53-6.02-4.1-9.87-4.1-.73 0-1.45.07-2.15.18h.08l-.44.08c-.36.06-.71.14-1.07.24s-.54.15-.79.24l-.49.17c-.41.15-.82.31-1.21.5l-.28.13c-.21.11-.42.23-.63.35s-.32.17-.51.28l-.47.3-.6.49c-.12.1-.25.18-.36.29-.34.28-.65.55-.94.85-.32.32-.63.66-.92 1.07-.23.27-.46.57-.66.89l-.02.04q-.06.09-.12.15c-.45.65-.87 1.4-1.22 2.18l-.04.09c-.71 1.62-1.12 3.51-1.12 5.5 0 3.87 1.56 7.37 4.09 9.9 2.04 2.02 4.7 3.42 7.68 3.87h.08c.34.06.7.1 1.07.14.38 0 .75.05 1.07.05h.06c3.84 0 7.32-1.55 9.84-4.07.23-.23.43-.47.64-.71.27-.31.51-.62.75-.94l.06-.08c.21-.3.42-.61.61-.93l.1-.17c.16-.25.32-.54.47-.85l.02-.05.13-.28c.13-.28.26-.56.36-.85s.1-.27.15-.4l.26-.79.13-.55c.06-.23.12-.46.16-.69s.08-.5.12-.76.08-.38.08-.54c0-.44.06-.88.06-1.33s-.06-.82-.06-1.27Zm-9.19-4.91c.28-.42 1.15-.5 1-.99a.91.91 0 0 1-.7-1.16c.14-.33.47-.57.85-.57.15 0 .29.04.41.1.27.14.44.42.68.6a.6.6 0 0 0 .82 0 .8.8 0 0 0 .12-.37s.06-.24.06-.24l.41.36c.84.84 1.55 1.8 2.11 2.86l.03.07c-.34.15-.73.24-1.14.24-.15 0-.3-.01-.45-.04h.02c-.36-.16-.81-.32-1.27-.45l-.07-.02c-.44.02-.84.14-1.19.34h.01a1.9 1.9 0 0 1-1.22.19h.01c-.41-.06-.71-.56-.48-.91Zm-2.4 10.72c-.42.58-1.07 1.07-1.42 1.62-.23.45-.48.84-.76 1.21v-.02c-.25.28-.62.45-.9.73-.35.4-.57.93-.57 1.52 0 .11 0 .22.02.32.1.69.29 1.32.56 1.9l-.02-.04c-.7-.05-1.34-.14-1.97-.28l.08.02c-.34-1.68-.61-3.39-.79-5.09-.01-.36-.1-.7-.24-1v.02c-.51-.97-2.14-1.17-2.21-2.25.04-.46.17-.89.37-1.27v.02c.13-.42.09-1-.32-1.16a1.4 1.4 0 0 0-.37-.08H9.8c-.41-.13-.61-.59-.92-.9s-1.07 0-1.51-.3-.61-.8-1.07-1.07-.84-.92-.45-1.29c-.48 0-.91-.16-1.27-.42 1.26-4.31 4.81-7.55 9.2-8.36h.07l.21.1c.19.03.41.05.63.05.39 0 .76-.06 1.11-.17h-.03a1.462 1.462 0 0 1 1.53.5c.05.09.08.19.08.3 0 .04 0 .08-.01.12-.1.48-.74.55-1.2.74-.42.18-.74.51-.91.92.37.09.7.24.97.46a.774.774 0 0 1 .2.97c-.2.32-.63.35-1.01.41-1.07.2-2.14 1.01-3.22.71-.22-.1-.47-.17-.74-.19-.26 0-.54.25-.45.49.59.29 1.29.89.95 1.46-.21.36-.75.46-.89.85s0 .93-.33.98a.58.58 0 0 1-.36-.17 1.76 1.76 0 0 0-1.95.01.76.76 0 0 0-.3.34c-.13.39.29.75.68.84.43.03.83.13 1.19.3h-.02c.49.3.66 1.06 1.22 1.18h.13c.3 0 .58-.06.84-.17h-.01c.14-.02.31-.03.48-.03.84 0 1.6.31 2.18.82.69.6 1.46 1.14 2.28 1.59l.06.03c.54.14 1.01.39 1.4.74a1.69 1.69 0 0 1-.21 2.02Zm6.94 2.83c-.41-.7-.66-1.54-.66-2.43 0-.18 0-.35.03-.53v.02c.08-.57.29-1.07.34-1.68a1.652 1.652 0 0 0-.57-1.53c-1.01-.7-2.51.53-3.56-.09-.3-.22-.55-.5-.71-.83-.32-.45-.55-.98-.66-1.54v-.02c-.01-.06-.02-.13-.02-.2 0-.52.29-.97.73-1.2q.225-.06.39-.18c.19-.17.17-.47.24-.72.18-.64.97-.87 1.62-.98.43-.11.93-.17 1.44-.17.16 0 .32 0 .48.02h-.02c.97.11 1.92.64 2.85.84.42 1.16.66 2.49.66 3.88 0 2.79-.97 5.35-2.58 7.37l.02-.02Z"] },
|
|
390
|
+
"Left": { "viewBox": "0 0 32 32", "paths": ["M22.95 2.48c-.31-.3-.74-.48-1.21-.48-.5 0-.94.21-1.26.54L8.83 14.73v.08l-.11.18c-.07.09-.13.19-.18.29-.03.1-.05.21-.07.32-.03.1-.05.22-.06.33 0 .13.03.24.06.35.01.11.04.22.07.32.06.1.12.2.19.29s.11.17.11.17v.08l11.65 12.19c.32.4.82.66 1.37.66.97 0 1.75-.78 1.75-1.75 0-.52-.23-.99-.59-1.31s-10.5-11.02-10.5-11.02l10.5-11.02c.29-.31.46-.72.46-1.18 0-.48-.2-.92-.52-1.24Z"] },
|
|
391
|
+
"LessCircle": { "viewBox": "0 0 32 32", "paths": ["M13.92 2.87", "M21.57 17H10.14a1.14 1.14 0 1 1 0-2.28h11.43a1.14 1.14 0 1 1 0 2.28", "M15.86 31.86c-8.83 0-16-7.18-16-16s7.17-16 16-16 16 7.18 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14"] },
|
|
392
|
+
"Lesson": { "viewBox": "0 0 32 32", "paths": ["M24.62 2H7.38C5.3 2 3.61 3.69 3.61 5.77v20.46C3.61 28.31 5.3 30 7.38 30h17.23c2.08 0 3.77-1.69 3.77-3.77V5.77c0-2.08-1.69-3.77-3.77-3.77Zm-1.08 24.23H8.46c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08h15.08c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08m0-6.1H8.46c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08h15.08c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08m0-6.11H8.46c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08h15.08c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08m0-6.11H8.46c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08h15.08c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08"] },
|
|
393
|
+
"Light": { "viewBox": "0 0 32 32", "paths": ["M15.86 23.86c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-13.72c-3.15 0-5.71 2.56-5.71 5.71s2.56 5.71 5.71 5.71 5.71-2.56 5.71-5.71-2.56-5.71-5.71-5.71M15.86 5.57c-.63 0-1.14-.51-1.14-1.14V1A1.14 1.14 0 1 1 17 1v3.43c0 .63-.51 1.14-1.14 1.14M15.86 31.86c-.63 0-1.14-.51-1.14-1.14v-3.43a1.14 1.14 0 1 1 2.28 0v3.43c0 .63-.51 1.14-1.14 1.14M30.71 17h-3.43a1.14 1.14 0 1 1 0-2.28h3.43a1.14 1.14 0 1 1 0 2.28M4.43 17H1a1.14 1.14 0 1 1 0-2.28h3.43a1.14 1.14 0 1 1 0 2.28M5.57 27.29c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l2.29-2.29a1.14 1.14 0 0 1 1.62 0c.45.45.45 1.17 0 1.62l-2.29 2.29c-.22.22-.52.33-.81.33M26.14 27.29c-.29 0-.58-.11-.81-.33l-2.29-2.29a1.14 1.14 0 0 1 0-1.62 1.15 1.15 0 0 1 1.62 0l2.29 2.29a1.14 1.14 0 0 1-.81 1.95M7.86 9c-.29 0-.58-.11-.81-.33L4.76 6.38a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0l2.29 2.29A1.14 1.14 0 0 1 7.86 9M23.86 9c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l2.29-2.29a1.15 1.15 0 0 1 1.62 0c.45.45.45 1.17 0 1.62l-2.29 2.29c-.22.22-.52.33-.81.33"] },
|
|
394
|
+
"Link": { "viewBox": "0 0 32 32", "paths": ["M23 19.79c0-.97-.78-1.75-1.75-1.75s-1.75.78-1.75 1.75v6.57c0 .08-.07.15-.15.15h-6.7c-.08 0-.15-.07-.15-.15v-6.57c0-.97-.78-1.75-1.75-1.75S9 18.82 9 19.79v6.57c0 2.02 1.63 3.65 3.65 3.65h6.7c2.02 0 3.65-1.63 3.65-3.65zm0-14.14C23 3.63 21.37 2 19.35 2h-6.7C10.63 2 9 3.63 9 5.65v6.57c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75V5.65c0-.08.07-.15.15-.15h6.7c.08 0 .15.07.15.15v6.57c0 .97.78 1.75 1.75 1.75S23 13.19 23 12.22zm-5.25 16.04V10.32c0-.97-.78-1.75-1.75-1.75s-1.75.78-1.75 1.75v11.37c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75"] },
|
|
395
|
+
"Lists": { "viewBox": "0 0 32 32", "paths": ["M26.96 14.25a4.55 4.55 0 0 0 1.32-3.05 3.103 3.103 0 0 0-3.11-3.09 3.12 3.12 0 0 0-3.03 2.4v.02c1.58.91 2.63 2.59 2.64 4.52v8.8h3.5c.95 0 1.72-.77 1.72-1.72v-4.44a3.44 3.44 0 0 0-3.03-3.42h-.02ZM3.75 23.86h3.51v-8.8c.02-1.93 1.07-3.6 2.62-4.5h.03c-.33-1.41-1.56-2.44-3.04-2.44a3.11 3.11 0 0 0-3.11 3.09c.04 1.19.54 2.26 1.31 3.05-1.73.2-3.07 1.66-3.07 3.43v4.45c0 .95.77 1.72 1.72 1.72zm5.26-8.74v10.49c0 .95.77 1.72 1.72 1.72h10.53c.95 0 1.72-.77 1.72-1.72V15.12c0-1.93-1.57-3.5-3.5-3.5h-1.52c.27-.25.5-.54.7-.84v-.02c.17-.25.33-.53.45-.83v-.04c.24-.51.37-1.1.38-1.72 0-1.94-1.57-3.51-3.5-3.51s-3.5 1.57-3.5 3.5c.01.63.15 1.22.38 1.75v-.03c.13.33.28.62.46.88v-.02c.2.33.44.61.7.86s-1.54 0-1.54 0c-1.93 0-3.5 1.57-3.5 3.5Z"] },
|
|
396
|
+
"ListView": { "viewBox": "0 0 32 32", "paths": ["M4.33 2h23.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 8.99 2 7.95 2 6.66V4.33C2 3.04 3.04 2 4.33 2m0 10.5h23.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 19.49 2 18.45 2 17.16v-2.33c0-1.29 1.04-2.33 2.33-2.33m0 10.5h23.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 29.99 2 28.95 2 27.66v-2.33C2 24.04 3.04 23 4.33 23"] },
|
|
397
|
+
"Location": { "viewBox": "0 0 32 32", "paths": ["M16 2C10.1 2 5.32 6.78 5.32 12.68S16 30 16 30s10.68-11.39 10.68-17.32S21.9 2 16 2m0 15.59c-2.71 0-4.9-2.2-4.9-4.9s2.2-4.9 4.9-4.9 4.9 2.2 4.9 4.9-2.2 4.89-4.9 4.89Z"] },
|
|
398
|
+
"Locked": { "viewBox": "0 0 32 32", "paths": ["M25.68 11.7h-1.07v-1.07c0-4.76-3.86-8.62-8.62-8.62s-8.62 3.85-8.62 8.61v1.07H6.32c-2.08 0-3.77 1.69-3.77 3.77v10.76c0 2.08 1.69 3.77 3.77 3.77h19.37c2.08 0 3.77-1.69 3.77-3.77V15.46c0-2.08-1.69-3.77-3.77-3.77Zm-6.46 7.56c0 1.19-.96 2.15-2.15 2.15v3.22a1.071 1.071 0 0 1-2.14 0v-3.24c-1.19 0-2.16-.96-2.16-2.16s.96-2.16 2.16-2.16h2.15c1.19.02 2.14.98 2.15 2.17Zm-8.61-8.63c0-2.97 2.41-5.39 5.39-5.39s5.39 2.41 5.39 5.39v1.07H10.62v-1.07Z"] },
|
|
399
|
+
"LogPostalMail": { "viewBox": "0 0 32 32", "paths": ["M7.51 10.21h2.28c.59 0 1.08-.48 1.08-1.08s-.48-1.08-1.08-1.08H7.51V5.76c0-.59-.49-1.08-1.08-1.08s-1.08.48-1.08 1.08v2.28H3.07c-.59 0-1.08.48-1.08 1.08s.48 1.08 1.08 1.08h2.28v2.3c0 .59.48 1.08 1.08 1.08s1.08-.48 1.08-1.08v-2.28Zm22.47 9.81q0-.135-.09-.24c-.05-.06-1.25-1.48-3.91-1.48-.52 0-.48 0-.86.07-.32.04-.29.05-.58.05h-.03v-2.46c0-1.13-.92-2.04-2.05-2.04H10.11c-1.13 0-2.05.91-2.05 2.04v6.48c0 1.14.92 2.05 2.05 2.05h2.92c-.1.17-.2.42-.16.69.08.56.57.97 1.36 1.14.66.13 8.12.91 9.07.98h.09c.84 0 2.28-.81 2.43-.9 0 0 .36-.43 1.22-.79.25-.1.52-.17.76-.26.86-.27 1.76-.54 2.02-1.64.16-.67.16-3.38.16-3.7h-.02Zm-18.56 1.95c-.1.11-.25.18-.42.18-.33 0-.59-.26-.59-.59 0-.17.08-.33.19-.44l2.07-2.02-2.03-1.83a.57.57 0 0 1-.14-.38c0-.32.27-.59.59-.59a.5.5 0 0 1 .31.1l4.13 3.66a1.175 1.175 0 0 0 1.57 0l4.12-3.66c.1-.1.24-.15.39-.15.33 0 .59.26.59.59 0 .17-.08.33-.2.44l-1.5 1.34c-.17.03-.35.05-.54.05-.72 0-1.37.24-1.77.65a1.62 1.62 0 0 0-.36 1.65c-.4.34-.94.57-1.52.57s-1.15-.23-1.57-.59l-1.18-1.05zm17.66 1.57c-.15.64-.64.82-1.5 1.08-.27.09-.54.17-.81.28-.9.36-1.23.78-1.29.81-.58.33-1.64.87-2.1.8-.9-.06-8.36-.84-8.96-.97-.34-.07-.72-.23-.75-.48-.02-.1.08-.24.16-.31s.1-.17.1-.27l8.27-.02c0 .16.1.31.26.36.2.07.42-.03.49-.24.52-1.52 1.22-2.14 1.22-2.14.1-.09.15-.21.14-.34a.42.42 0 0 0-.2-.3c-.37-.2-.7-.15-.99-.1-.14.03-.29.04-.46.04-.36 0-.71-.08-1.08-.16-.41-.1-.84-.18-1.36-.18-1.68 0-1.7-.73-1.71-.96 0-.24.07-.44.23-.59.24-.26.73-.42 1.22-.42.54 0 .97-.12 1.4-.24.38-.1.75-.21 1.22-.22.63-.02 1.1.06 1.45.12.22.03.4.07.52.07.35 0 .36 0 .7-.06.37-.06.29-.06.73-.06 1.92 0 2.95.83 3.23 1.1 0 1.18-.03 2.95-.14 3.38Z"] },
|
|
400
|
+
"Marketing": { "viewBox": "0 0 32 32", "paths": ["M11.29 28.15c-2.52 0-4.57-2.05-4.57-4.57v-2.29a1.14 1.14 0 1 1 2.28 0v2.29c0 1.26 1.03 2.29 2.29 2.29s2.29-1.03 2.29-2.29v-2.29a1.14 1.14 0 1 1 2.28 0v2.29c0 2.52-2.05 4.57-4.57 4.57M28.31 12.67a1.145 1.145 0 0 1-.29-2.25l2.4-.64c.6-.16 1.24.2 1.4.81s-.2 1.24-.81 1.4l-2.4.64c-.1.03-.2.04-.3.04M24.9 7.98c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l1.84-1.84a1.15 1.15 0 0 1 1.62 0c.45.45.45 1.17 0 1.62l-1.84 1.84c-.22.22-.52.33-.81.33M30.21 19.11c-.1 0-.2-.01-.3-.04l-2.51-.67c-.61-.16-.97-.79-.81-1.4s.79-.97 1.4-.81l2.51.67a1.145 1.145 0 0 1-.29 2.25", "M24.12 22.44H2.4c-.52 0-.97-.35-1.1-.85l-1.4-5.21c-.13-.5.08-1.03.53-1.29L19.24 4.23c.31-.18.68-.2 1.01-.07.33.14.57.42.67.76L25.23 21c.09.34.02.71-.2.99s-.55.45-.91.45M3.28 20.15h19.36L19.1 6.95 2.33 16.63l.94 3.52Z"] },
|
|
401
|
+
"MarketingEvents": { "viewBox": "0 0 32 32", "paths": ["M27.05 6.52h-5.27l.13-1.12a.41.41 0 0 0-.35-.46h-1.11c-.16-.31-.36-.59-.6-.83C18.72 2.98 17.3 2 14.21 2c-6 .04-10.84 4.93-10.8 10.94v.32c0 2.11 0 6.55 3.41 6.55.77.09 1.53-.2 2.04-.78 1.22-1.62.54-5.36.31-6.65-.19-1.05-.23-5.27.76-6.32a6.12 6.12 0 0 1 4.68-2.64c1.45-.18 2.91.26 4.01 1.22.13.11.26.19.37.29h-.64c-.23 0-.41.18-.42.4v.08l.72 4.67c.03.2.2.36.41.36h1.91c.21 0 .38-.16.41-.37l.11-.82h2.33c.49 0 .9.4.9.9v.08c0 .49-.4.89-.9.9h-7.76c-.5 0-.9-.4-.91-.9v-.07c0-.5.41-.91.91-.91h1.63l-.42-2.74h-4.64c-.86 0-1.55.69-1.55 1.55v20.38c0 .86.69 1.55 1.55 1.55h14.42c.85 0 1.54-.69 1.54-1.54V8.07c0-.85-.68-1.54-1.53-1.55zM8.79 5.57c-1.17 1.19-1.17 4.39-1.01 6.38s.72 2.71.43 5.01c-.11.84-.51 1.54-1.36 1.54-1.5 0-2.11-1.86-2.11-5.27 0-3.84 2.56-7.88 4.52-8.43.23.15-.28.53-.47.76Zm11.12 16.48a4.213 4.213 0 0 1-4.27-4.16 4.213 4.213 0 0 1 4.16-4.27 4.213 4.213 0 0 1 4.27 4.16v.1a4.21 4.21 0 0 1-4.16 4.16Z"] },
|
|
402
|
+
"Marketplace": { "viewBox": "0 0 32 32", "paths": ["M25.38 16.19c-1.06-.19-1.92-.96-2.31-1.92 0-.1-.1-.1-.19-.1l-.1.1c-.48 1.25-1.73 2.02-2.98 2.02-1.63 0-3.27-.87-3.65-2.02 0-.1-.19-.19-.29 0-.58 1.25-1.92 2.02-3.27 2.02-1.44.1-2.79-.67-3.56-2.02 0-.1-.19-.1-.19 0-.87 1.35-1.35 2.02-3.08 2.02-.38 0-.77 0-1.15-.19v12.6h22.02V16.2c-.38.1-.77.1-1.25 0Zm-9.42 3.27c0-.38.29-.67.67-.67h6.92c.38 0 .67.29.67.67v4.04c0 .38-.29.67-.67.67h-6.92c-.38 0-.67-.29-.67-.67zM7.5 27.83v-7.21c0-.38.29-.67.67-.67h3.65c.38 0 .67.29.67.67v7.31h-5v-.1ZM9.23 3.31l-1.06 9.23c-.29 1.44-1.63 2.5-3.08 2.31-1.73 0-3.27-1.06-3.08-2.31s2.6-9.23 2.6-9.23zm6.44 0v9.23c0 1.35-1.35 2.31-3.08 2.31s-3.08-1.06-3.08-2.31c.1-1.63.77-9.23.77-9.23zm.96 0v9.23c0 1.35 1.35 2.31 3.08 2.31s3.08-1.06 3.08-2.31l-.77-9.23zm6.25 0 .96 9.23c0 1.35 1.35 2.31 3.08 2.31S30 13.79 30 12.54l-2.5-9.23z"] },
|
|
403
|
+
"Meetings": { "viewBox": "0 0 32 32", "paths": ["M25.11 5.81H22.7l-.01-2.4c0-.8-.66-1.44-1.45-1.44-.8 0-1.44.66-1.44 1.45v2.41l-7.7.04V3.46c-.02-.8-.67-1.44-1.47-1.44s-1.44.66-1.44 1.45v2.41l-2.4.01a3.38 3.38 0 0 0-3.35 3.39l.1 17.39a3.38 3.38 0 0 0 3.39 3.36l13.49-.08c.39 0 .75-.17 1-.43l6.71-6.79c.26-.26.41-.61.42-1.01l-.07-12.59a3.376 3.376 0 0 0-3.37-3.36ZM6.9 27.12a.47.47 0 0 1-.47-.44s-.07-13.06-.07-13.06l19.27-.11.04 7.6-.12.12-3.73.02c-1.06 0-1.92.87-1.92 1.94l.02 3.74-.12.12zm4.28-11.59H9.25c-.55.01-1 .47-1 1.02l.04 7.72c0 .55.46 1 1.01 1h1.93c.55-.01 1-.47 1-1.02l-.04-7.76a1.01 1.01 0 0 0-1.01-.96m5.83-.03H15c-.55.01-1 .47-1 1.02l.04 7.72c0 .55.46 1 1.01 1h2.01c.55-.01 1-.47 1-1.02l-.04-7.76a1.01 1.01 0 0 0-1.01-.96m3.82-.02h1.93c.53-.01.97.42.97.95v1.93c.01.53-.42.97-.95.97h-1.93a.954.954 0 0 1-.97-.95v-1.93c-.01-.53.42-.97.95-.97"] },
|
|
404
|
+
"Mention": { "viewBox": "0 0 32 32", "paths": ["M29.21 8.28c-.5-1.19-1.27-2.22-2.21-3.1-.98-.85-2.14-1.52-3.48-1.99-1.34-.46-2.87-.7-4.56-.7-2.35 0-4.53.36-6.59 1.06-2.06.72-3.88 1.76-5.4 3.1a14.2 14.2 0 0 0-3.64 4.93c-.9 1.94-1.32 4.1-1.32 6.53 0 1.68.26 3.23.79 4.65.55 1.39 1.32 2.61 2.35 3.59 1.03 1.01 2.27 1.78 3.74 2.32 1.45.57 3.11.83 4.93.83.87 0 1.66-.05 2.43-.18.76-.13 1.58-.34 2.45-.67.9-.31 1.95-.77 3.19-1.39l-1.16-2.09c-.79.41-1.53.77-2.19 1.03-.66.28-1.32.49-2.06.65-.71.13-1.56.18-2.56.18-1.48 0-2.79-.18-3.95-.59s-2.14-1.01-2.9-1.78c-.79-.8-1.37-1.73-1.79-2.84s-.63-2.37-.63-3.79c0-2.04.34-3.87 1-5.47.69-1.63 1.63-2.99 2.85-4.1 1.24-1.14 2.74-1.99 4.48-2.58 1.77-.59 3.69-.88 5.85-.88 1.79 0 3.32.28 4.61.88 1.27.59 2.24 1.45 2.93 2.53.66 1.11 1 2.45 1 4 0 1.03-.11 2.04-.34 2.99-.24.96-.55 1.78-.95 2.53-.4.72-.87 1.29-1.42 1.73-.55.41-1.13.62-1.77.62-.29 0-.53-.08-.76-.21-.24-.1-.4-.31-.53-.57-.11-.26-.13-.59-.08-.98L23.13 9h-3.19l-.34 2.19c-.05-.26-.16-.49-.29-.72-.34-.54-.76-.98-1.27-1.29-.53-.31-1.11-.46-1.77-.46-1.13 0-2.14.26-3.06.77-.95.52-1.74 1.19-2.43 2.01-.66.83-1.19 1.73-1.53 2.71-.37 1.01-.55 1.99-.55 2.97 0 1.11.21 2.09.61 2.92.4.85.95 1.52 1.66 1.99.71.49 1.5.72 2.43.72.84 0 1.61-.18 2.35-.54.71-.34 1.34-.85 1.87-1.52.21-.26.4-.57.55-.88.03.57.18 1.06.47 1.5.32.44.76.8 1.32 1.06.55.26 1.21.39 1.92.39 1.16 0 2.21-.28 3.19-.85s1.85-1.34 2.58-2.32c.74-.98 1.32-2.12 1.71-3.38.42-1.26.63-2.61.63-4s-.26-2.76-.79-3.95Zm-10.28 6.4c-.05.26-.11.57-.16.96-.11.75-.4 1.45-.87 2.14s-1.05 1.26-1.71 1.7-1.37.67-2.08.67c-.66 0-1.19-.26-1.58-.75-.4-.52-.58-1.21-.58-2.12 0-.96.18-1.91.58-2.81.42-.93.95-1.68 1.63-2.27.66-.59 1.42-.88 2.24-.88.53 0 .98.1 1.37.31s.69.49.9.88.32.85.32 1.39c0 .23-.03.49-.05.77Z"] },
|
|
405
|
+
"Messages": { "viewBox": "0 0 32 32", "paths": ["M29.34 5.71a2.83 2.83 0 0 0-2.49-2.51h-.01c-2.46-.42-5.3-.66-8.19-.66h-.63.03-.59c-2.89 0-5.72.24-8.48.7l.3-.04c-1.01.09-1.86.73-2.25 1.61v.02c2.06-.25 4.45-.4 6.88-.4h.54c3.03 0 6.01.25 8.9.73l-.31-.04c2.21.31 3.93 2.05 4.2 4.25v.02c.43 1.97.68 4.24.69 6.57v.28c0 1.47-.1 2.91-.28 4.33l.02-.17c.91-.4 1.55-1.24 1.65-2.24.41-1.88.65-4.03.66-6.24 0-2.21-.24-4.35-.69-6.42l.04.2v.02Zm-4.13 4.04a2.83 2.83 0 0 0-2.49-2.51h-.01c-2.46-.42-5.3-.66-8.19-.66h-.63.03-.58c-2.89 0-5.72.24-8.48.7l.3-.04a2.83 2.83 0 0 0-2.51 2.49c-.42 1.88-.66 4.03-.66 6.24s.24 4.35.7 6.42l-.04-.2a2.83 2.83 0 0 0 2.49 2.51h.01c1.71.3 3.73.52 5.79.59h.08l2.17 3.76c.15.25.42.42.74.42s.59-.17.74-.42 2.17-3.76 2.17-3.76c2.13-.08 4.15-.29 6.13-.63l-.27.04a2.82 2.82 0 0 0 2.51-2.48c.41-1.88.65-4.03.66-6.24 0-2.21-.24-4.35-.69-6.42l.04.2Z"] },
|
|
406
|
+
"Minus": { "viewBox": "0 0 32 32", "paths": ["M3.97 17.83H28.3c.95-.07 1.7-.86 1.7-1.83s-.75-1.76-1.69-1.83H3.83a1.83 1.83 0 0 0 0 3.66z"] },
|
|
407
|
+
"Mobile": { "viewBox": "0 0 32 32", "paths": ["M22.48 2H9.53C7.7 2 6.21 3.49 6.21 5.32v21.93a3.04 3.04 0 0 0 3.03 2.74h13.25c.87 0 1.66-.34 2.25-.89l.09-.07.09-.12c.54-.56.88-1.33.89-2.18V5.32c0-1.83-1.49-3.32-3.32-3.32Zm-6.47 26.13h-.02a1.419 1.419 0 1 1 1.42-1.42c0 .18-.03.34-.09.5-.19.54-.71.92-1.31.92M9 5.32c0-.29.23-.52.52-.52h12.95c.29 0 .52.23.52.52v18.2c-.09 0-.19-.01-.3-.01s-.21 0-.31.01H8.99V5.32Z"] },
|
|
408
|
+
"MoreCircle": { "viewBox": "0 0 32 32", "paths": ["M21.57 17H10.14a1.14 1.14 0 1 1 0-2.28h11.43a1.14 1.14 0 1 1 0 2.28", "M15.86 22.71c-.63 0-1.14-.51-1.14-1.14V10.14a1.14 1.14 0 1 1 2.28 0v11.43c0 .63-.51 1.14-1.14 1.14", "M15.86 31.86c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14"] },
|
|
409
|
+
"Move": { "viewBox": "0 0 32 32", "paths": ["m29.47 14.78-3.5-3.5c-.7-.7-1.75-.7-2.45 0s-.7 1.75 0 2.45l.53.53h-6.3v-6.3l.53.53c.7.7 1.75.7 2.45 0s.7-1.75 0-2.45l-3.5-3.5c-.7-.7-1.75-.7-2.45 0l-3.5 3.5c-.7.7-.7 1.75 0 2.45s1.75.7 2.45 0l.53-.53v6.3h-6.3l.52-.53c.7-.7.7-1.75 0-2.45s-1.75-.7-2.45 0l-3.5 3.5c-.7.7-.7 1.75 0 2.45l3.5 3.5c.7.7 1.75.7 2.45 0s.7-1.75 0-2.45l-.53-.52h6.3v6.3l-.53-.53c-.7-.7-1.75-.7-2.45 0s-.7 1.75 0 2.45l3.5 3.5c.7.7 1.75.7 2.45 0l3.5-3.5c.7-.7.7-1.75 0-2.45s-1.75-.7-2.45 0l-.53.53v-6.3h6.3l-.53.53c-.7.7-.7 1.75 0 2.45s1.75.7 2.45 0l3.5-3.5c.7-.7.7-1.75 0-2.45Z"] },
|
|
410
|
+
"NotEditable": { "viewBox": "0 0 32 32", "paths": ["M25.9 3c-.62-.62-1.48-1-2.43-1s-1.81.38-2.43 1l-1.56 1.56c-.27.27-.44.65-.44 1.06s.17.79.44 1.06l5.84 5.84c.27.27.65.44 1.06.44s.79-.17 1.06-.44L29 10.96c.62-.62 1-1.48 1-2.43s-.38-1.81-1-2.43l-3.09-3.09Zm-5.35 10.54.97-.97a1.498 1.498 0 0 0-1.06-2.56c-.42 0-.79.17-1.07.44l-.97.97zm2.99 2.98 1.04-1.05c.27-.27.43-.64.43-1.06 0-.83-.67-1.5-1.5-1.5-.42 0-.79.17-1.07.44l-1.03 1.04 2.12 2.12Zm-5.96-5.96.97-.97a1.498 1.498 0 1 0-2.12-2.12l-.97.97zm-3.15 10.88-2.92 2.92-.88-.88 2.92-2.92-2.11-2.11-2.92 2.92-.88-.88 2.92-2.92-2.12-2.12-4 4c-.12.12-.22.27-.29.43s-.05.14-.05.14 0 .09-.05.13l-2 8.01c-.03.11-.05.24-.05.37a1.498 1.498 0 0 0 1.88 1.45h-.01l8.01-2h.06l.25-.1.1-.05c.09-.05.16-.11.23-.18l3.98-4.01zM6.18 3.28l22.53 22.54c.38.37.62.89.62 1.46s-.24 1.09-.62 1.46c-.37.38-.89.62-1.46.62s-1.09-.24-1.46-.62L3.29 6.16c-.37-.37-.6-.89-.6-1.46 0-1.14.92-2.06 2.06-2.06.57 0 1.09.23 1.46.6z"] },
|
|
411
|
+
"Notification": { "viewBox": "0 0 32 32", "paths": ["m27.94 22.75-3.75-3.3v-9.24a8.209 8.209 0 1 0-16.42 0v9.23l-3.75 3.31c-.42.42-.43 1.1 0 1.52.19.19.44.3.71.32h22.56c.59-.03 1.05-.54 1.02-1.13-.01-.27-.13-.52-.32-.71h-.04Zm-8.9 3.92c.1 1.74-1.22 3.22-2.96 3.33-1.74.1-3.22-1.22-3.33-2.96v-.37z"] },
|
|
412
|
+
"NotificationOff": { "viewBox": "0 0 32 32", "paths": ["M23.53 18.24v-7.56c-.02-4.22-3.45-7.63-7.67-7.61A7.6 7.6 0 0 0 9.65 6.3zM8.25 13.36v5.93l-3.49 3.06a.987.987 0 0 0 0 1.41c.17.18.4.28.65.3H20.7L8.26 13.36Zm7.56 15.57c1.61 0 2.92-1.32 2.92-2.93H12.9c0 1.61 1.3 2.92 2.91 2.93m13.26-.49c.41-.02.8-.22 1.06-.54.52-.65.42-1.59-.23-2.11L4.06 3.58A1.5 1.5 0 0 0 2 5.76c.05.05.11.09.17.13L28.02 28.1c.29.24.67.36 1.05.33Z"] },
|
|
413
|
+
"NumericDataType": { "viewBox": "0 0 32 32", "paths": ["M19.74 29.77c-.86-.09-1.44-.78-1.36-1.55l.63-6.26h-7.8l-.66 6.54c-.08.73-.68 1.27-1.41 1.27h-.18c-.75-.08-1.31-.78-1.24-1.55l.63-6.26H3.42c-.78 0-1.42-.63-1.42-1.42s.63-1.42 1.42-1.42h5.24l.71-7.07H3.73a1.419 1.419 0 1 1 0-2.84h5.92l.58-5.71c.07-.73.67-1.27 1.41-1.27h.15c.77.08 1.34.77 1.27 1.55l-.54 5.42h7.8l.58-5.71c.07-.73.67-1.27 1.41-1.27h.15c.77.08 1.34.77 1.27 1.55l-.54 5.42h5.42c.78 0 1.42.63 1.42 1.42s-.63 1.42-1.42 1.42h-5.7l-.71 7.07h6.1c.78 0 1.42.63 1.42 1.42s-.63 1.42-1.42 1.42h-6.38l-.66 6.54c-.08.73-.68 1.27-1.41 1.27h-.06l-.02.02Zm-8.25-10.66h7.8l.71-7.07h-7.8z"] },
|
|
414
|
+
"ObjectAssociations": { "viewBox": "0 0 32 32", "paths": ["M24.72 19.21v-1.47a.29.29 0 0 0-.29-.29H12.91v7.31h11.53c.16 0 .29-.14.3-.3v-1.5c0-.06.01-.11.05-.16.08-.14.26-.18.4-.1l4.67 2.98.08.07c.09.14.07.32-.07.42l-4.67 3.46c-.05.04-.12.06-.19.07-.16 0-.29-.14-.29-.3v-1.49a.29.29 0 0 0-.29-.29H10.54c-.24 0-.43-.19-.43-.43v-9.82H2.54c-.28.02-.53-.2-.54-.48v-1.8c0-.28.23-.51.51-.51h7.59V4.8c0-.23.18-.42.41-.43h13.91a.31.31 0 0 0 .28-.29v-1.5c0-.06.01-.11.05-.16.09-.14.27-.18.41-.09l4.63 2.98s.06.04.08.07c.09.14.07.32-.07.42l-4.67 3.46s-.11.07-.18.07c-.17 0-.3-.13-.3-.3V7.55c0-.14-.1-.25-.23-.28H12.9v7.31h11.52c.16 0 .29-.14.29-.3v-1.51c0-.06.01-.11.05-.16.09-.14.27-.18.41-.09l4.63 2.98s.06.04.08.07c.09.14.07.32-.07.42l-4.67 3.46s-.11.07-.18.07a.3.3 0 0 1-.26-.3Z"] },
|
|
415
|
+
"ObjectAssociationsManyToMany": { "viewBox": "0 0 32 32", "paths": ["M25.34 19.34c.06 0 .11-.02.17-.06l4.38-3.27c.12-.1.15-.27.06-.4-.03-.03-.04-.04-.08-.06l-4.38-2.82a.29.29 0 0 0-.39.09c-.04.04-.04.1-.04.15v1.42c0 .15-.12.27-.27.28h-3.74V7.74l3.74.03c.15 0 .27.12.27.27v1.39c0 .15.12.28.28.28.06 0 .11-.02.17-.06l4.38-3.27c.12-.1.15-.27.06-.4-.03-.03-.04-.04-.08-.06L25.49 3.1a.29.29 0 0 0-.39.09c-.04.04-.04.1-.04.15v1.42c0 .15-.12.27-.27.28h-6c-.22 0-.4.17-.4.4v9.25h-4.9V5.43c0-.23-.18-.41-.4-.41H2.31c-.17 0-.3.14-.3.31v2.11c0 .17.13.3.31.3l8.53-.02v6.92H2.31c-.17 0-.3.14-.3.31v2.11c0 .17.13.31.31.3l8.53-.02v6.92H2.3c-.17 0-.3.14-.3.31v2.12c0 .17.13.3.3.3l8.93-.02h1.85c.22 0 .41-.19.41-.41V17.3h4.9v9.26c0 .22.19.41.41.41h1.85l4.13.03c.16 0 .28.12.28.27v1.39c0 .15.12.28.27.28.06 0 .12-.03.18-.06l4.38-3.27c.12-.1.15-.27.06-.4-.03-.03-.05-.04-.08-.06l-4.39-2.82a.28.28 0 0 0-.38.09c-.04.04-.04.1-.04.15v1.42c0 .15-.12.27-.28.28h-3.73v-6.93l3.74.03c.15 0 .27.12.27.27v1.39c0 .15.12.28.28.28v.02Z"] },
|
|
416
|
+
"ObjectAssociationsManyToOne": { "viewBox": "0 0 32 32", "paths": ["m29.88 15.97-4.5 3.38c-.05.04-.11.06-.17.06a.29.29 0 0 1-.29-.29v-1.45c0-.15-.13-.28-.29-.29l-1.28-.04h-6.97v9.56c0 .22-.2.41-.42.41h-1.91l-11.64.03c-.16 0-.16-2.82 0-2.81h11.23v-7.15l-11.29.03c-.11 0-.31-.09-.31-.25 0 0-.07-1.72 0-2.28.02-.16.15-.29.32-.29h11.28V7.44l-11.32.03a.32.32 0 0 1-.31-.25V4.84c.04-.11.15-.19.27-.19h13.68c.22 0 .41.19.41.42v9.55h7.13l1.13-.03c.15 0 .28-.14.28-.29v-1.46c0-.06.01-.11.04-.16.09-.13.27-.17.4-.09l4.52 2.91s.05.04.08.06a.3.3 0 0 1-.07.41", "M16.3 16.25h.37v.07h-.37zM16.29 13.5h.53v.03h-.53z"] },
|
|
417
|
+
"Office365": { "viewBox": "0 0 32 32", "paths": ["M4.38 24.58V7.57L19.44 2l8.18 2.62v22.92L19.44 30zl15.06 1.81V6.58L9.62 8.87v13.42z"] },
|
|
418
|
+
"Order": { "viewBox": "0 0 32 32", "paths": ["M26.53 7.27c-.08-.82-.77-1.46-1.6-1.46h-3.88v-.53c0-2.59-2.12-4.71-4.72-4.71h-.8c-2.6 0-4.72 2.12-4.72 4.71v.53H7c-.83 0-1.53.63-1.61 1.45L3.67 25.11a3.163 3.163 0 0 0 3.17 3.47l18.22-.14c1.85-.02 3.3-1.62 3.12-3.47zM12.79 5.28c0-1.5 1.22-2.72 2.73-2.72h.8c1.5 0 2.73 1.22 2.73 2.72v.53h-6.27v-.53Zm9.55 8.32-6.38 7.62c-.18.22-.45.35-.73.36h-.03c-.27 0-.54-.11-.72-.31l-3.9-4.16a.976.976 0 0 1 .05-1.4.993.993 0 0 1 1.4.05l3.13 3.34 5.66-6.76c.35-.42.98-.48 1.4-.12.42.35.48.98.12 1.4Z"] },
|
|
419
|
+
"Partial": { "viewBox": "0 0 32 32", "paths": ["M5.28 27.2h21.47c1.8 0 3.26-1.47 3.26-3.27V8.06c0-1.8-1.46-3.27-3.27-3.27H5.26A3.27 3.27 0 0 0 2 8.06v15.89c.01 1.8 1.47 3.25 3.27 3.25zm21.92-3.27c0 .26-.21.47-.47.47h-9.8V16H27.2zm0-15.87v5.13H16.93v-5.6h9.8c.26 0 .47.21.47.47v.02zm-22.4 0c0-.26.21-.47.47-.47h8.87v16.8H5.28a.47.47 0 0 1-.47-.47V8.05Z"] },
|
|
420
|
+
"PaymentSubscriptions": { "viewBox": "0 0 32 32", "paths": ["M21.2 13.94H4.09c-1.13-.02-2.06.88-2.09 2v9.39a2.03 2.03 0 0 0 2.07 2.01H21.2c1.12.02 2.04-.88 2.06-2v-9.39a2.04 2.04 0 0 0-2.06-2ZM3.3 15.95c0-.41.35-.73.75-.73H21.2c.41 0 .74.32.75.73v.95H3.3zm18.65 9.39c0 .41-.35.73-.75.73H4.09c-.41 0-.74-.32-.75-.73v-6.05h18.62v6.05Zm7.83-2.59-4.13 1.51a.32.32 0 0 1-.42-.19c-.02-.04-.02-.08-.02-.12v-4.18a.335.335 0 0 1 .51-.28l1.25.82c.68-1.33 1.04-2.8 1.03-4.29-.01-5.26-4.29-9.51-9.54-9.49-3.69 0-7.04 2.15-8.6 5.5H7.89c2.19-5.86 8.72-8.84 14.58-6.65a11.31 11.31 0 0 1 7.36 10.64c0 1.84-.45 3.66-1.32 5.28l1.33.86c.15.09.21.29.11.45-.04.07-.1.12-.18.14Z"] },
|
|
421
|
+
"Pin": { "viewBox": "0 0 32 32", "paths": ["m18.1 29.63-6.46-6.46L5 28.8c-.44.37-.97.64-1.56.77H3.3c-.04 0-.09.01-.14.01-.4 0-.73-.33-.73-.73v-.18c.14-.62.41-1.16.79-1.61s5.68-6.62 5.68-6.62l-6.48-6.5c-.24-.24-.4-.57-.4-.94 0-.57.36-1.05.86-1.23a8.623 8.623 0 0 1 5.88.61l-.05-.02 10.06-7.3-.5-.5c-.24-.24-.4-.58-.4-.95s.15-.71.4-.95l.27-.27c.24-.24.58-.4.95-.4s.71.15.95.4l9.11 9.11c.24.24.4.58.4.95s-.15.71-.4.95l-.27.27c-.24.24-.58.4-.95.4s-.71-.15-.95-.4l-.43-.41-7.3 10.08c.52 1.08.82 2.35.82 3.68 0 .75-.1 1.48-.28 2.18v-.06c-.18.5-.66.84-1.21.84-.36 0-.68-.14-.91-.37Z"] },
|
|
422
|
+
"PowerPointFile": { "viewBox": "0 0 32 32", "paths": ["M27.22 10.56h-.03a2 2 0 0 0-.12-.35v-.07a1.8 1.8 0 0 0-.22-.3l-7.53-7.5c-.09-.09-.18-.16-.28-.22h-.08q-.15-.075-.33-.12H9.01c-2.32 0-4.2 1.87-4.23 4.17v20.09c0 2.2 1.73 3.74 4.21 3.74h14.02c2.47 0 4.21-1.54 4.21-3.74zm-2.84 15.7c0 .77-.76.97-1.4.97H9c-.64 0-1.4-.17-1.4-.97V6.17c0-.78.63-1.4 1.4-1.4h7.94v5.14c0 1.29 1.04 2.34 2.34 2.34h5.1v14.02Zm-8.05-11.83c1.01-.07 2.01.22 2.82.83.68.6 1.04 1.49.98 2.39 0 .63-.16 1.26-.49 1.79s-.81.95-1.37 1.22c-.65.3-1.35.45-2.07.44h-1.96v3.64h-2.01V14.43zm-2.08 5.09h1.73c.55.04 1.09-.13 1.53-.46.36-.35.55-.84.52-1.33 0-1.14-.66-1.7-1.98-1.7h-1.79v3.5Z"] },
|
|
423
|
+
"Presentation": { "viewBox": "0 0 32 32", "paths": ["M4.9 4.7h22.44c.69-.07 1.23-.64 1.23-1.35S28.03 2.07 27.35 2H4.77c-.75 0-1.35.61-1.35 1.35S4.03 4.7 4.77 4.7zm21.38 2.93H5.96c-.82 0-1.49.67-1.49 1.49v13.21c0 .84.67 1.5 1.49 1.5h7.87l-3.91 3.91a1.322 1.322 0 1 0 1.87 1.87l4.8-4.81 4.81 4.81c.24.23.56.38.92.38h.01c.36 0 .69-.14.94-.38.24-.24.39-.57.39-.94s-.15-.7-.39-.94l-3.91-3.91h6.88c.83 0 1.5-.67 1.5-1.5V9.12c0-.81-.65-1.48-1.45-1.5Zm-1.15 13.56H7.11V10.27h18.04v10.92Z"] },
|
|
424
|
+
"Product": { "viewBox": "0 0 32 32", "paths": ["M29.31 7.47 16.71.2c-.21-.12-.46-.2-.73-.2s-.52.07-.73.2-12.6 7.27-12.6 7.27c-.43.26-.71.72-.71 1.25v14.55c0 .54.29 1 .72 1.26s12.6 7.28 12.6 7.28c.21.12.46.2.73.2s.52-.07.73-.2 12.6-7.27 12.6-7.27c.44-.26.73-.73.73-1.26V8.74c0-.54-.3-1.01-.74-1.26ZM15.99 3.13l9.7 5.59-3.36 1.94-9.5-5.7L16 3.13Zm-1.45 24.89-9.7-5.59V11.25l3.49 2.01 6.21 3.59v11.18Zm1.45-13.7-9.7-5.59 3.64-2.1 9.51 5.7-3.45 2Zm11.14 8.11-9.7 5.59V16.84l3.38-1.94v3.97a1.451 1.451 0 0 0 2.9 0v-5.66l3.38-1.94.02 11.16Z"] },
|
|
425
|
+
"Publish": { "viewBox": "0 0 32 32", "paths": ["M19.59 14.89c-.57 0-1.02-.46-1.02-1.02V5.74l-2.05 2.05c-.43.43-1.12.43-1.55 0s-.43-1.12 0-1.55l4-3.94c.08-.09.18-.16.29-.22.27-.13.59-.13.86 0 .12.06.24.14.33.25l3.94 3.92a1 1 0 0 1 .33.78c-.02.6-.5 1.09-1.11 1.11-.3 0-.58-.12-.78-.35l-2.05-2.05v8.09c.02.57-.42 1.04-.98 1.06h-.19ZM10.09 30c-1.88 0-3.4-1.52-3.4-3.4V11.92c0-1.88 1.52-3.4 3.4-3.4h2.84c.53-.01.96.4.98.93v.1c.02.5-.37.93-.87.95H10.1c-.79 0-1.43.64-1.46 1.42V26.6c0 .81.65 1.46 1.46 1.47h11.83c.81 0 1.46-.66 1.46-1.47V13.62c.1-.46.5-.79.97-.8.47-.03.89.3.96.77V26.6c0 1.88-1.52 3.4-3.4 3.4H10.1Zm6.05-13.08h-5.12a.72.72 0 0 1-.8-.63c-.05-.39.23-.75.63-.8h5.29c.39-.05.75.23.8.63.05.39-.23.75-.63.8zm4.87 4.28h-10c-.4 0-.72-.32-.72-.72s.32-.72.72-.72h10c.4 0 .72.32.72.72s-.32.72-.72.72m0 4.2h-10c-.4 0-.72-.32-.72-.72s.32-.72.72-.72h10c.4 0 .72.32.72.72s-.32.72-.72.72"] },
|
|
426
|
+
"Question": { "viewBox": "0 0 32 32", "paths": ["M18 27.82c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18.98-2.18 2.18-2.18 2.18.98 2.18 2.18m-2.18-4.77c-1.2 0-2.18-.98-2.18-2.18V17.6c0-1.2.98-2.18 2.18-2.18 2.5 0 4.53-2.03 4.53-4.53s-2.03-4.53-4.53-4.53c-1.99 0-3.67 1.28-4.29 3.05v.03c-.31.87-1.12 1.48-2.08 1.48-1.2 0-2.18-.98-2.18-2.18 0-.25.04-.49.12-.71v.02c1.22-3.54 4.53-6.04 8.42-6.04a8.89 8.89 0 0 1 8.89 8.89c0 4.14-2.82 7.61-6.65 8.61h-.06v1.38c0 1.2-.98 2.17-2.18 2.17Z"] },
|
|
427
|
+
"QuestionAnswer": { "viewBox": "0 0 32 32", "paths": ["M24.16 13.38h2.94c1.6.01 2.9 1.32 2.9 2.92v4.62c0 1.6-1.29 2.9-2.9 2.91h-.06v1.63c0 1.06-.85 1.92-1.91 1.92-.54 0-1.02-.22-1.36-.58s-2.68-2.98-2.68-2.98h-3.34a2.91 2.91 0 0 1-2.89-2.91v-1.32h-.37l-5.2 5.66c-.22.23-.53.37-.87.38-.18 0-.34-.04-.5-.1-.47-.2-.79-.66-.79-1.19V19.6H4.97a3.007 3.007 0 0 1-2.98-3.01V7.64c0-1.66 1.33-3 2.98-3.02h16.2c1.65.01 2.98 1.36 2.98 3.01v5.73Zm0 2.34v.88c0 1.66-1.33 3-2.98 3.02h-4.02v1.31c0 .32.25.58.56.59h4.38l2.65 2.84v-2.85h2.4c.31-.01.56-.27.56-.59v-4.63c0-.31-.25-.57-.56-.58h-2.99Zm-7.52-6.21v-.07c0-.44-.1-.85-.29-1.21-.18-.34-.43-.63-.74-.86-.3-.23-.65-.41-1.04-.51h-.02c-.35-.1-.76-.16-1.18-.16h-.02c-.45 0-.87.07-1.28.19h.03c-.41.12-.77.32-1.08.57-.32.25-.58.57-.77.93v.02c-.21.39-.35.84-.39 1.32s2.22.25 2.22.25c.02-.33.14-.63.33-.88.19-.24.49-.4.82-.4h.11c.27 0 .51.1.69.27.17.17.28.41.28.67v.06c0 .2-.07.39-.18.55-.12.16-.25.3-.4.43s-.46.44-.46.44q-.255.225-.48.45-.18.21-.33.45c-.09.17-.16.34-.21.53-.04.2-.07.43-.07.65v.54h2.18v-.75c.03-.11.07-.21.13-.3.06-.11.14-.2.23-.28l.38-.32c.25-.18.45-.37.65-.54q.285-.24.48-.54c.13-.19.24-.4.31-.63v-.02c.08-.23.12-.49.12-.76v-.08Zm-2.05 6.19c0-.19-.04-.36-.11-.52s-.17-.3-.29-.41a1.4 1.4 0 0 0-.43-.28c-.15-.07-.32-.11-.51-.11h-.02c-.19 0-.38.04-.54.11-.17.07-.31.16-.44.28a1.31 1.31 0 0 0-.4.94c0 .19.04.37.12.53.08.15.18.29.31.41.12.12.26.21.42.28.16.06.34.1.52.1h.07c.37 0 .7-.15.94-.39.21-.22.34-.53.34-.86v-.09Z"] },
|
|
428
|
+
"QuestionCircle": { "viewBox": "0 0 32 32", "paths": ["M15.86 31.86c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14", "M15.86 26.14a1.71 1.71 0 1 1-.002-3.418 1.71 1.71 0 0 1 .002 3.418m0-2.28a.57.57 0 1 0 0 1.14.57.57 0 0 0 0-1.14M15.86 20.64c-.63 0-1.14-.51-1.14-1.14 0-2.61 1.81-4.04 3.27-5.19 1.5-1.19 2.42-1.99 2.42-3.45 0-1.76-1.86-2.99-4.53-2.99-2.16 0-4.1 1.2-4.61 2.85-.19.6-.82.94-1.43.75-.6-.19-.94-.83-.75-1.43.81-2.63 3.61-4.46 6.8-4.46 4.01 0 6.82 2.17 6.82 5.28 0 2.64-1.82 4.08-3.29 5.24-1.49 1.18-2.4 1.97-2.4 3.4 0 .63-.51 1.14-1.14 1.14Z"] },
|
|
429
|
+
"Quickbooks": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m-.78 23.18a2.02 2.02 0 0 1-2.02-2.02V12.58h-1.87c-1.89 0-3.42 1.53-3.42 3.42s1.53 3.42 3.42 3.42h.78v2.02h-.78a5.44 5.44 0 1 1 0-10.88h3.89zm5.44-3.73h-3.89V6.82c1.12 0 2.02.91 2.02 2.02v10.58h1.87c1.89 0 3.42-1.53 3.42-3.42s-1.53-3.42-3.42-3.42h-.78v-2.02h.78a5.44 5.44 0 1 1 0 10.88Z"] },
|
|
430
|
+
"ReadMore": { "viewBox": "0 0 32 32", "paths": ["M28.44 4.33c-.86 0-1.55.7-1.55 1.55v1.54c0 .28-.23.51-.52.52H5.63c-.29 0-.52-.23-.52-.52V5.76c0-.86-.7-1.56-1.56-1.56s-1.56.7-1.56 1.56v1.66c0 2 1.63 3.63 3.63 3.63h20.74c2 0 3.63-1.63 3.63-3.63V5.88c0-.87-.7-1.56-1.55-1.56ZM3.56 27.78c.86 0 1.56-.7 1.56-1.56v-1.54c0-.29.23-.52.51-.52h20.74c.29 0 .52.23.52.52v1.54c0 .86.7 1.55 1.55 1.55s1.55-.7 1.55-1.55v-1.54c0-2-1.63-3.63-3.63-3.63H5.63c-2 0-3.63 1.63-3.63 3.63v1.54c0 .86.69 1.56 1.55 1.56Zm2.6-13.09H3.44c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h2.72c.75 0 1.36-.61 1.36-1.36s-.61-1.36-1.36-1.36m22.48 0h-2.72c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h2.72c.75 0 1.36-.61 1.36-1.36s-.61-1.36-1.36-1.36m-14.98 0h-2.72c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h2.72c.75 0 1.36-.61 1.36-1.36s-.61-1.36-1.36-1.36m7.5 0h-2.72c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h2.72c.75 0 1.36-.61 1.36-1.36s-.61-1.36-1.36-1.36"] },
|
|
431
|
+
"ReadOnlyView": { "viewBox": "0 0 32 32", "paths": ["M9.22 18.66c-.83 0-1.5-.67-1.5-1.5V6.53c0-.4.32-.73.73-.74h14.2c.36 0 .66.27.72.62l2.09-1.84H5.44c-.9 0-1.63.73-1.63 1.63v17.38l5.59-4.91h-.19Zm14.16-1.5c0 .83-.67 1.5-1.49 1.5h-5.4l-4.61 4.05h10.2c.47 0 .86.37.86.84v3.28c0 .16-.12.29-.27.29H10.12a.29.29 0 0 1-.29-.29v-2.29l-3.24 2.84.11.1c.3.36.75.57 1.23.57h17.74c.9 0 1.63-.73 1.63-1.63V9.16l-3.93 3.43.02 4.56Zm6.36-13.17a.97.97 0 0 0-1.38-.13c-.02.01-.03.03-.05.05L2.36 26.6c-.42.34-.48.96-.13 1.38.01.01.02.03.04.04.19.22.46.34.75.34.25 0 .5-.08.69-.25L29.64 5.42c.42-.34.49-.96.14-1.38a.12.12 0 0 0-.05-.05Z"] },
|
|
432
|
+
"RealEstateListing": { "viewBox": "0 0 32 32", "paths": ["M26.69 10.54 16.06.82a.335.335 0 0 0-.44 0L5 10.54c-.13.13-.13.34 0 .47l.57.58c.13.12.33.12.46 0l1.31-1.2v11.42h5.73v-7.05c0-.24.2-.44.44-.44h4.69c.24 0 .44.2.44.44v7.05h5.74v-11.4l1.31 1.19c.12.12.32.12.45 0l.57-.58a.32.32 0 0 0 .01-.46l-.02-.02ZM27.61 26.46v-1.2l-10.39 5.96c-.15.09-.32.13-.5.13-.26 0-.52-.1-.71-.3l-4.83-5-8.33 4.71a.99.99 0 0 1-1.36-.37c-.27-.48-.1-1.09.38-1.37l9-5.09a1 1 0 0 1 1.21.18l4.82 4.99 9.72-5.57-1.04-.6 5.33-.71z"] },
|
|
433
|
+
"RecentlySelected": { "viewBox": "0 0 32 32", "paths": ["M29.97 15.1c0-.3-.06-.6-.1-.89A12.86 12.86 0 0 0 17.73 3.13h-.63c-5.22 0-9.91 3.15-11.88 7.98H2.47c-.19 0-.35.11-.43.28s-.05.37.08.51l4.1 4.38c.08.09.2.15.33.15s.26-.05.35-.15L11 11.9a.46.46 0 0 0 .09-.5.47.47 0 0 0-.43-.29h-2.8l.3-.51c1.87-3.16 5.27-5.09 8.94-5.08h.2c4.94.12 9.14 3.66 10.07 8.51.08.41.13.83.15 1.25.2 2.89-.82 5.73-2.82 7.83-3.93 4.21-10.53 4.44-14.74.51-.7-.66-1.31-1.41-1.81-2.23a1.2 1.2 0 0 0-2.1 0c-.22.39-.22.86 0 1.25 3.67 6.09 11.57 8.06 17.67 4.39a13 13 0 0 0 2.77-2.24c2.47-2.59 3.74-6.11 3.48-9.69M16.58 8.69a.97.97 0 0 0-.97.97v7.42c0 .26.09.52.28.71.16.12.34.22.53.29l6.2 2.11a.97.97 0 0 0 1.19-.59c.16-.54-.11-1.11-.63-1.33l-5.6-1.87V9.7a.97.97 0 0 0-.93-1.01h-.08Z"] },
|
|
434
|
+
"Record": { "viewBox": "0 0 32 32", "paths": ["M20.5 15.5v-9C20.5 4.01 18.48 2 16 2s-4.5 2.02-4.5 4.5v9c0 2.49 2.02 4.5 4.5 4.5s4.5-2.02 4.5-4.5M8 12.11c-.83 0-1.5.67-1.5 1.5v1.78c.01 4.71 3.45 8.61 7.95 9.35h.06v2.25h-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h12c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-4.5v-2.25c4.56-.75 7.99-4.66 8-9.37V13.6c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.78c-.14 3.48-3 6.25-6.5 6.25s-6.36-2.77-6.5-6.24V13.6c0-.83-.67-1.5-1.5-1.5Z"] },
|
|
435
|
+
"Redo": { "viewBox": "0 0 32 32", "paths": ["M2.06 20.27c1.75-5.58 5.96-9.44 11.08-10.08s10.26 2 13.35 6.5v-5.43c0-.97.78-1.75 1.75-1.75s1.75.78 1.75 1.75v9.39c0 .49-.21.93-.53 1.25s-.75.51-1.23.52l-9.43-.02c-.97 0-1.75-.78-1.75-1.75s.78-1.75 1.75-1.75h4.93c-2.31-3.59-6.32-5.72-10.17-5.25s-6.84 3.41-8.15 7.66c-.24.69-.89 1.18-1.66 1.18a1.746 1.746 0 0 1-1.68-2.23Z"] },
|
|
436
|
+
"Refresh": { "viewBox": "0 0 32 32", "paths": ["M2.92 13.11h7.36s.1.01.15.01c.55 0 .99-.44.99-.99 0-.34-.17-.63-.42-.81S8.87 9.17 8.87 9.17c1.86-2.08 4.54-3.38 7.54-3.38.32 0 .65.01.96.05h-.04c3.89.48 7.16 3.54 8.54 7.99a2.031 2.031 0 0 0 3.97-.6c0-.21-.03-.42-.09-.61-1.87-5.97-6.43-10.11-11.88-10.79-.44-.05-.95-.08-1.46-.08-4.1 0-7.79 1.76-10.36 4.56S3.69 3.96 3.69 3.96c-.19-.19-.45-.3-.73-.3-.57 0-1.04.46-1.04 1.03v7.37c0 .57.46 1.03 1.03 1.04Zm25.89 5.77h-7.37s-.1-.01-.15-.01c-.55 0-.99.44-.99.99 0 .34.17.63.42.81s2.14 2.14 2.14 2.14a10.08 10.08 0 0 1-7.54 3.38c-.32 0-.64-.01-.95-.04h.04c-3.89-.48-7.16-3.54-8.54-7.99a2.031 2.031 0 0 0-3.97.6c0 .21.03.42.09.61 1.84 5.93 6.4 10.11 11.88 10.79.48.06 1.03.1 1.58.1 4.07-.06 7.72-1.8 10.29-4.57s2.35 2.34 2.35 2.34c.19.19.45.3.73.3.57 0 1.04-.46 1.04-1.03v-7.37c0-.57-.47-1.04-1.04-1.04h-.04Z"] },
|
|
437
|
+
"Registration": { "viewBox": "0 0 32 32", "paths": ["m19.88 7.69 1.41-1.41c0-.75-.62-1.36-1.38-1.35h-7.85v5.08c0 1.28-1.04 2.31-2.31 2.31H4.71v13.85c0 .8.75.96 1.39.96h13.82c.63 0 1.39-.2 1.39-.96v-3.75l2.8-2.76v6.52c0 2.2-1.71 3.7-4.16 3.7H6.16c-2.46 0-4.15-1.52-4.15-3.7V10.93a1 1 0 0 1 0-.26c.01-.12.05-.24.11-.34v-.08c.07-.1.14-.2.22-.29l7.41-7.41c.08-.1.17-.19.28-.26h.09c.1-.05.22-.1.33-.12.09-.01.18-.01.26 0h9.23c1.43.01 2.76.76 3.5 1.98.59-.58 1.54-.58 2.13 0l4.02 4.03c.56.58.56 1.51 0 2.09L17.57 22.29c-.16.17-.37.29-.59.35l-6.02 2.01c-.15.05-.31.08-.47.08-.41.02-.81-.14-1.1-.44-.4-.4-.55-1-.37-1.54l2.05-6.02c.08-.22.2-.43.36-.59l5.51-5.51 2.97-2.93Z"] },
|
|
438
|
+
"Remove": { "viewBox": "0 0 32 32", "paths": ["M2.57 29.48c.32.32.75.51 1.24.51s.92-.2 1.24-.51L16.03 18.5l11 10.98c.32.32.75.51 1.24.51A1.752 1.752 0 0 0 29.51 27l-11-10.98 10.98-11c.28-.31.46-.72.46-1.17a1.741 1.741 0 0 0-2.92-1.28s-11 10.98-11 10.98l-11-10.98a1.741 1.741 0 1 0-2.47 2.45s10.98 11 10.98 11l-10.97 11c-.31.31-.51.75-.51 1.23s.19.92.51 1.23"] },
|
|
439
|
+
"Replace": { "viewBox": "0 0 32 32", "paths": ["M5.52 19h7.03c.97 0 1.76.79 1.76 1.76v5.27c0 .97-.79 1.76-1.76 1.76H5.52c-.97 0-1.76-.79-1.76-1.76v-5.27c0-.97.79-1.76 1.76-1.76m8.56-14.79H7.46c-.97 0-1.76.79-1.76 1.76v4.92H2.91c-.5 0-.91.41-.91.91 0 .25.1.48.27.64l4.53 4.53c.16.17.39.27.64.27s.48-.1.64-.27l4.53-4.53c.16-.16.26-.39.26-.63 0-.5-.41-.91-.91-.91H9.22V7.73h4.86c.97 0 1.76-.79 1.76-1.76s-.79-1.76-1.76-1.76h-.03Zm5.37 0h7.03c.97 0 1.76.79 1.76 1.76v5.27c0 .97-.79 1.76-1.76 1.76h-7.03c-.97 0-1.76-.79-1.76-1.76V5.97c0-.97.79-1.76 1.76-1.76m10.28 15.35-4.53-4.53c-.16-.17-.39-.27-.64-.27s-.48.1-.64.27l-4.53 4.53c-.16.16-.26.39-.26.63 0 .5.41.91.91.91h2.74v3.17h-4.83c-.97 0-1.76.79-1.76 1.76s.79 1.76 1.76 1.76h6.62c.97 0 1.76-.79 1.76-1.76v-4.92h2.79c.5 0 .91-.41.91-.91 0-.25-.1-.48-.27-.64Z"] },
|
|
440
|
+
"Reporting": { "viewBox": "0 0 32 32", "paths": ["M7.86 29H1c-.63 0-1.14-.51-1.14-1.14V17.57c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v10.29C9 28.49 8.49 29 7.86 29m-5.72-2.28h4.57v-8H2.14zM19.29 29h-6.86c-.63 0-1.14-.51-1.14-1.14v-16c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v16c0 .63-.51 1.14-1.14 1.14m-5.72-2.28h4.57V13.01h-4.57zM30.71 29h-6.86c-.63 0-1.14-.51-1.14-1.14V5c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v22.86c0 .63-.51 1.14-1.14 1.14M25 26.71h4.57V6.14H25z"] },
|
|
441
|
+
"Reports": { "viewBox": "0 0 32 32", "paths": ["M26.7 2.01H5.3C3.48 2.01 2 3.48 2 5.31v21.38c0 1.82 1.47 3.3 3.3 3.3h21.39c1.82 0 3.3-1.47 3.3-3.3V5.3c0-1.82-1.47-3.3-3.3-3.3Zm-.76 22.2c0 .51-.41.92-.92.92H6.99c-.51 0-.92-.41-.92-.92v-7.84c0-.51.41-.92.92-.92H8.6c.51 0 .92.41.92.92v6.92h2.01V12.45c0-.51.41-.92.92-.92h1.61c.51 0 .92.41.92.92v10.8h2.08V6.97c0-.51.41-.92.92-.92h1.61c.49.01.89.42.89.92V23.3h2.04V10.89c0-.51.41-.92.92-.92h1.61c.5 0 .9.39.92.89v13.35l-.02.02Z"] },
|
|
442
|
+
"Right": { "viewBox": "0 0 32 32", "paths": ["M23.52 15.26c-.06-.11-.12-.21-.19-.3s-.11-.17-.11-.17v-.08L11.57 2.5c-.32-.31-.75-.5-1.23-.5-.97 0-1.75.78-1.75 1.75 0 .43.15.82.41 1.13S19.5 15.9 19.5 15.9L9 26.93c-.37.32-.59.79-.59 1.32 0 .97.78 1.75 1.75 1.75.55 0 1.05-.26 1.37-.66s11.65-12.2 11.65-12.2v-.08l.11-.18c.07-.09.13-.19.18-.29.03-.1.05-.21.07-.32.03-.1.05-.22.06-.33 0-.13-.03-.24-.06-.35s0-.03 0-.05c0-.1 0-.2-.02-.29Z"] },
|
|
443
|
+
"Rotate": { "viewBox": "0 0 32 32", "paths": ["M25.89 16.13c-1.07 0-1.94.87-1.94 1.94v.03c0 4.37-3.54 7.91-7.91 7.91s-7.91-3.54-7.91-7.91 3.52-7.89 7.87-7.91v3.21c0 .57.47 1.03 1.04 1.03.28 0 .54-.11.73-.3l5.19-5.19c.19-.19.3-.45.3-.73s-.12-.55-.3-.73l-5.19-5.17c-.19-.19-.45-.3-.73-.3s-.55.12-.73.3c-.19.19-.3.44-.3.73v3.22c-6.56 0-11.87 5.31-11.87 11.87S9.45 30 16.01 30s11.87-5.31 11.87-11.87v-.06c0-1.07-.87-1.94-1.94-1.94h-.04Z"] },
|
|
444
|
+
"RotateLeads": { "viewBox": "0 0 32 32", "paths": ["M9.85 14.83v.2c0 1.89.62 3.64 1.66 5.06l-.02-.02c.63.91 1.65 1.51 2.81 1.57 1.17-.06 2.18-.66 2.81-1.56a8.55 8.55 0 0 0 1.64-5.03v-.23c0-2.45-1.99-4.44-4.45-4.44s-4.45 1.99-4.45 4.45m19.82-3.64a1.27 1.27 0 0 0-1.37-.36s-2.03.67-2.03.67l-.48.16c-1.8-4.69-6.28-7.96-11.51-7.96-6.79 0-12.3 5.51-12.3 12.3S7.3 28.12 13.94 28.3h.5c.28 0 .57 0 .86-.05h.1c1.06-.09 2.03-.3 2.95-.62l-.09.03c.35-.12.7-.26 1.04-.41l.07-.04a5.5 5.5 0 0 0 2.45-2.06v-.02c.2-.25.31-.56.31-.9 0-.29-.08-.56-.22-.79-.06-.15-.14-.28-.24-.4s-.06-.04-.06-.04a9.592 9.592 0 0 0-3.19-2.38l-.06-.03c-.87 1.38-2.35 2.31-4.05 2.39h-.01a5.06 5.06 0 0 1-4.05-2.33v-.02a9.9 9.9 0 0 0-3.28 2.42c-.11.13-.2.28-.26.43a10.57 10.57 0 0 1-3.02-7.42c0-5.88 4.77-10.65 10.65-10.65 4.5 0 8.34 2.79 9.9 6.73l.03.07-.36.13-1.95.66c-.52.17-.89.64-.89 1.21 0 .51.3.94.73 1.15s4.28 2.11 4.28 2.11a1.271 1.271 0 0 0 1.69-.56s2.1-4.29 2.1-4.29c.08-.17.14-.36.14-.57 0-.33-.12-.62-.32-.85Z"] },
|
|
445
|
+
"Sales": { "viewBox": "0 0 32 32", "paths": ["M29.43 13.14H2c-.63 0-1.14-.51-1.14-1.14V4c0-.63.51-1.14 1.14-1.14h27.43c.63 0 1.14.51 1.14 1.14v8c0 .63-.51 1.14-1.14 1.14M3.14 10.86h25.14V5.15H3.14z", "M26 21.14H5.43c-.63 0-1.14-.51-1.14-1.14v-8c0-.63.51-1.14 1.14-1.14H26c.63 0 1.14.51 1.14 1.14v8c0 .63-.51 1.14-1.14 1.14M6.57 18.86h18.29v-5.71H6.57z", "M22.57 29.14H8.86c-.63 0-1.14-.51-1.14-1.14v-8c0-.63.51-1.14 1.14-1.14h13.71c.63 0 1.14.51 1.14 1.14v8c0 .63-.51 1.14-1.14 1.14M10 26.86h11.43v-5.71H10z"] },
|
|
446
|
+
"SalesQuote": { "viewBox": "0 0 32 32", "paths": ["M17.45 13.69c.32-.32.54-.75.54-1.18s-.21-.86-.54-1.07c-.21-.11-.43-.32-.64-.43v3c.32 0 .54-.11.64-.32M14.66 7.58c0 .32.11.64.32.75s.32.21.54.32V6.5c-.21 0-.32.11-.43.21-.32.21-.43.54-.43.86Z", "M24.42 2H7.47C5.32 2 3.61 3.72 3.61 5.86v20.28c0 2.15 1.72 3.86 3.86 3.86h17.06c2.15 0 3.86-1.72 3.86-3.86V5.86C28.28 3.71 26.57 2 24.42 2M13.8 12.3c.21.54.43 1.07.86 1.5.32.21.64.32.97.32v-3.65c-.75-.21-1.39-.64-1.93-1.07s-.75-1.07-.75-1.72c0-.32.11-.64.21-.86.11-.32.32-.54.54-.75s.54-.43.86-.54c.32-.21.75-.32 1.18-.43V4.03c0-.21.21-.43.43-.32h.54c.21 0 .43.11.43.32V5.1c.54.11 1.07.21 1.5.54.54.32.86.75 1.18 1.18.11.64-.86 1.29-1.72.64-.32-.32-.64-.64-1.07-.86v2.68c.43.21.75.32 1.07.54s.64.43.97.64c.54.54.97 1.29.86 2.04 0 .75-.32 1.5-.86 2.04-.54.64-1.29.97-2.15 1.18v.86c0 .21-.21.43-.43.32h-.54c-.21 0-.43-.11-.43-.32v-.86c-.86-.11-1.72-.43-2.36-.86a3.36 3.36 0 0 1-1.18-2.15c-.11-.75 1.39-1.18 1.82-.43Zm9.87 14.27H8.65c-.64 0-1.07-.43-1.07-1.07s.43-1.07 1.07-1.07h15.02c.64 0 1.07.43 1.07 1.07 0 .54-.43 1.07-1.07 1.07m0-5.15H8.65c-.64 0-1.07-.43-1.07-1.07s.43-1.07 1.07-1.07h15.02c.64 0 1.07.43 1.07 1.07s-.43 1.07-1.07 1.07"] },
|
|
447
|
+
"SalesTemplates": { "viewBox": "0 0 32 32", "paths": ["M23.94 8.54h-9.35c-1.81 0-3.27 1.46-3.27 3.27v14.92c0 1.81 1.46 3.27 3.27 3.27h9.35c1.81 0 3.27-1.46 3.27-3.27V11.81c0-1.81-1.46-3.27-3.27-3.27m-.47 2.8c.08-.02.18-.04.27-.04.54 0 .97.44.97.97a.977.977 0 0 1-1.25.93s-8.45 0-8.45 0a.97.97 0 0 1-.01-1.86s8.45 0 8.45 0Zm0 11.22h-8.45a.97.97 0 0 1-.01-1.86s8.41 0 8.41 0a.97.97 0 0 1 .01 1.86s.04 0 .04 0m0-4.67h-8.45a.97.97 0 0 1-.01-1.86s8.41 0 8.41 0a.97.97 0 0 1 .01 1.86s.04 0 .04 0m-15.42 2.8a.47.47 0 0 1-.47-.47V5.27c0-.26.21-.47.47-.47h9.35c.26 0 .47.21.47.47v.02a1.4 1.4 0 0 0 2.8.02v-.04C20.67 3.46 19.21 2 17.4 2H8.05C6.24 2 4.78 3.46 4.78 5.27v14.95c0 1.81 1.46 3.27 3.27 3.27.77 0 1.4-.63 1.4-1.4s-.63-1.4-1.4-1.4"] },
|
|
448
|
+
"SaveEditableView": { "viewBox": "0 0 32 32", "paths": ["M28.02 2.05H3.98C2.91 2.02 2.02 2.87 2 3.94v21.19c0 .47.16.92.47 1.27l2.89 2.88c.37.42.9.66 1.46.66h21.2c1.07.03 1.96-.82 1.98-1.89V3.98c0-1.07-.88-1.93-1.95-1.93h-.04ZM24.79 28.5c0 .19-.14.34-.33.35H9.48c-.19 0-.35-.16-.35-.35v-3.87c0-.57.46-1.03 1.03-1.03h13.6c.56 0 1.02.44 1.03 1v3.89Zm.55-11.51c0 .99-.8 1.8-1.8 1.8H8.5c-.99.02-1.81-.77-1.83-1.76V4.08c0-.48.4-.87.89-.86h16.88c.48 0 .87.39.87.87l.02 12.89Z"] },
|
|
449
|
+
"Search": { "viewBox": "0 0 32 32", "paths": ["m29.66 27.7-8.36-8.36c1.4-1.8 2.24-4.09 2.24-6.58C23.54 6.82 18.72 2 12.78 2S2.01 6.82 2.01 12.76s4.82 10.76 10.76 10.76c2.49 0 4.78-.84 6.6-2.26l-.02.02 8.34 8.36c.24.22.57.36.92.36.76 0 1.38-.62 1.38-1.38 0-.36-.14-.68-.36-.93s.03 0 .03 0Zm-16.84-6.94c-4.4 0-7.96-3.58-7.96-7.97s3.57-7.97 7.97-7.97 7.97 3.57 7.97 7.97v.03c-.02 4.39-3.59 7.95-7.98 7.95Z"] },
|
|
450
|
+
"Section": { "viewBox": "0 0 32 32", "paths": ["M26.5 5.5h-21C3.57 5.5 2 7.07 2 9v14c0 1.93 1.57 3.5 3.5 3.5h21c1.93 0 3.5-1.57 3.5-3.5V9c0-1.93-1.57-3.5-3.5-3.5m0 3.5v5.25h-8.75V9zm-21 14V9h8.75v14zm12.25 0v-5.25h8.75V23z"] },
|
|
451
|
+
"Send": { "viewBox": "0 0 32 32", "paths": ["m26.57 2.26-22 13.48c-.95.59-.89 1.42.13 1.89l5.22 2.24L22.23 8.34c1.63-1.52 1.89-1.31.5.45L11.26 23.21V29c0 1.11.59 1.33 1.32.49l5.31-6.18 5.99 2.57c.19.11.42.17.66.17.76 0 1.39-.62 1.39-1.38S28.09 3.2 28.09 3.2c.11-1.1-.58-1.53-1.53-.95Z"] },
|
|
452
|
+
"Sequences": { "viewBox": "0 0 32 32", "paths": ["M18.26 11.08c1.25 0 2.27-1.02 2.27-2.27V4.28c0-1.26-1.02-2.28-2.27-2.28h-4.53c-1.25 0-2.26 1.02-2.26 2.27V8.8c0 1.25 1.02 2.27 2.27 2.27h.76v2.01h-.76c-1.25 0-2.27 1.02-2.27 2.27v4.53c0 1.25 1.02 2.27 2.27 2.27h.76v2.02h-2.28a.77.77 0 0 0-.65 1.18s3.74 4.27 3.74 4.27c.13.23.38.38.66.38s.53-.15.66-.38 3.74-4.27 3.74-4.27c.08-.12.13-.26.13-.42a.77.77 0 0 0-.77-.77h-2.22v-2.01h.76c1.25 0 2.27-1.02 2.27-2.27v-4.53c0-1.25-1.02-2.27-2.27-2.27h-.76v-2.01h.75Zm-.76 8.05h-3.02v-3.02h3.02zM14.48 8.05V5.03h3.02v3.02z"] },
|
|
453
|
+
"Service": { "viewBox": "0 0 32 32", "paths": ["M28.14 29.28H3c-.36 0-.69-.17-.91-.45s-.29-.65-.2-.99l1.05-3.93c.4-1.5 1.76-2.54 3.31-2.54h18.62c1.55 0 2.91 1.04 3.31 2.54l1.05 3.93c.09.34.02.71-.2.99s-.55.45-.91.45ZM4.49 27h22.16l-.67-2.49c-.13-.5-.59-.85-1.1-.85H6.26c-.52 0-.97.35-1.1.85zM25.86 19c-.63 0-1.14-.51-1.14-1.14 0-5.04-4.1-9.14-9.14-9.14s-9.14 4.1-9.14 9.14a1.14 1.14 0 1 1-2.28 0c0-6.3 5.13-11.43 11.43-11.43s11.43 5.13 11.43 11.43c0 .63-.51 1.14-1.14 1.14ZM18.06 4.14h-4.99a1.14 1.14 0 1 1 0-2.28h4.99a1.14 1.14 0 1 1 0 2.28", "M15.57 8.71c-.63 0-1.14-.51-1.14-1.14V3a1.14 1.14 0 1 1 2.28 0v4.57c0 .63-.51 1.14-1.14 1.14"] },
|
|
454
|
+
"Settings": { "viewBox": "0 0 32 32", "paths": ["M27.88 13.38h-2.55c-.21-.79-.49-1.47-.84-2.12l.02.05 1.8-1.8c.4-.38.65-.93.65-1.52s-.24-1.14-.65-1.52l-.73-.77c-.38-.39-.93-.65-1.52-.65s-1.14.24-1.52.65l-1.83 1.8c-.57-.32-1.23-.6-1.93-.8l-.06-.02V4.12c0-1.17-.96-2.13-2.13-2.13h-1.06c-1.18 0-2.13.96-2.13 2.13v2.55c-.79.21-1.48.49-2.13.84l.05-.02-1.8-1.8c-.38-.4-.94-.66-1.54-.66s-1.16.26-1.54.66l-.73.73c-.4.38-.65.93-.65 1.52s.24 1.14.65 1.52l1.8 1.83c-.32.57-.6 1.23-.8 1.93l-.02.06H4.15c-1.17 0-2.13.96-2.13 2.13v1.14c0 1.18.95 2.13 2.13 2.13H6.7c.21.76.49 1.41.83 2.04l-.02-.05-1.8 1.8c-.4.38-.65.93-.65 1.52s.24 1.14.65 1.52l.77.77c.38.4.93.65 1.52.65s1.14-.24 1.52-.65l1.8-1.79c.56.32 1.23.6 1.93.8l.06.02v2.55c0 1.17.96 2.13 2.13 2.13h1.06c1.17 0 2.13-.96 2.13-2.13v-2.55a9.7 9.7 0 0 0 2.13-.84l-.05.02 1.8 1.8c.38.4.93.65 1.52.65s1.14-.24 1.52-.65l.77-.77c.4-.38.65-.93.65-1.53s-.24-1.14-.65-1.52l-1.8-1.81c.32-.57.6-1.23.8-1.93l.02-.06h2.55c1.17 0 2.13-.96 2.13-2.13v-1.06c0-1.18-.96-2.13-2.13-2.13v.02Zm-5.41 3.17a6.7 6.7 0 0 1-.38 1.72c-.05.15-.12.29-.18.44a6.56 6.56 0 0 1-3.15 3.17l-.04.02-.45.18c-.5.19-1.09.33-1.69.38h-1.11a6.7 6.7 0 0 1-1.72-.38l-.44-.18a6.56 6.56 0 0 1-3.17-3.15l-.02-.04c-.06-.15-.13-.3-.18-.45-.19-.5-.33-1.09-.38-1.69v-1.11c.03-.39.1-.76.18-1.11.06-.26.14-.46.21-.66v.04c.04-.15.11-.3.17-.45a6.56 6.56 0 0 1 3.15-3.17l.04-.02.45-.18c.5-.19 1.09-.33 1.69-.38h1.11c.62.05 1.19.19 1.72.38l.44.18c1.41.66 2.53 1.78 3.17 3.15l.02.04c.06.15.13.3.18.45.19.5.33 1.09.38 1.69v1.11Zm-6.46-4.72c-2.31 0-4.18 1.87-4.18 4.18s1.87 4.18 4.18 4.18 4.18-1.87 4.18-4.18-1.87-4.18-4.18-4.18"] },
|
|
455
|
+
"Share": { "viewBox": "0 0 32 32", "paths": ["M22.98 30H9.01c-1.93 0-3.49-1.56-3.49-3.49V16.04c0-1.93 1.56-3.49 3.49-3.49h1.7a1.16 1.16 0 0 1 0 2.32h-1.7c-.64 0-1.16.52-1.16 1.16V26.5c0 .64.52 1.16 1.16 1.16h13.97c.64 0 1.16-.52 1.16-1.16V16.03c0-.64-.52-1.16-1.16-1.16h-1.75a1.16 1.16 0 0 1 0-2.32h1.75c1.93 0 3.49 1.56 3.49 3.49v10.47c0 1.93-1.56 3.49-3.49 3.49m-.9-19.85c-.32 0-.61-.13-.82-.34l-4.99-4.99-4.99 4.99a1.16 1.16 0 0 1-1.64-1.64s5.82-5.82 5.82-5.82a1.156 1.156 0 0 1 1.64 0l5.82 5.82c.21.21.34.5.34.83 0 .64-.52 1.16-1.16 1.16Zm-5.82 10.47c-.64 0-1.16-.52-1.16-1.16V3.16a1.16 1.16 0 0 1 2.32 0v16.29c0 .64-.52 1.16-1.16 1.16Z"] },
|
|
456
|
+
"SidebarCollapse": { "viewBox": "0 0 32 32", "paths": ["M27.91 4s.09.04.09.09v23.83s-.04.09-.09.09H4.09S4 27.97 4 27.92V4.09S4.04 4 4.09 4h23.83m0-2H4.09C2.94 2 2 2.93 2 4.09v23.83c0 1.15.93 2.09 2.09 2.09h23.83c1.15 0 2.09-.93 2.09-2.09V4.09c0-1.15-.93-2.09-2.09-2.09m-8.23 19.75-6.15-5.8 6.04-5.7c.5-.48.53-1.27.05-1.77-.47-.5-1.26-.52-1.76-.05l-7 6.6c-.5.46-.53 1.24-.07 1.74.01.02.02.03.04.05.04.05.08.1.13.15l7 6.6c.24.22.55.34.86.34.33 0 .66-.14.91-.4.47-.5.45-1.29-.05-1.76"] },
|
|
457
|
+
"SidebarExpand": { "viewBox": "0 0 32 32", "paths": ["M27.91 2H4.09C2.93 2 2 2.94 2 4.09v23.83C2 29.07 2.93 30 4.09 30h23.82c1.15 0 2.09-.93 2.09-2.08V4.09C30 2.94 29.06 2 27.91 2M16.35 23.99c0 1.1-.9 2-2 2h-6c-1.1 0-2-.9-2-2v-16c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2z"] },
|
|
458
|
+
"Signal": { "viewBox": "0 0 32 32", "paths": ["M16 23.429a2 2 0 1 0 0 4 2 2 0 0 0 0-4M15.976 5.668c-5.484 0-10.811 2.072-15 5.835a1.143 1.143 0 1 0 1.527 1.7c3.769-3.385 8.553-5.25 13.473-5.25 4.937 0 9.734 1.876 13.508 5.28a1.14 1.14 0 0 0 1.614-.083 1.143 1.143 0 0 0-.083-1.613c-4.195-3.786-9.536-5.87-15.039-5.87", "M15.989 11.81c-3.88 0-7.646 1.465-10.603 4.126a1.144 1.144 0 0 0 1.53 1.7c2.536-2.284 5.758-3.542 9.073-3.542 3.318 0 6.544 1.262 9.083 3.552a1.14 1.14 0 0 0 1.614-.083 1.143 1.143 0 0 0-.083-1.614c-2.96-2.67-6.73-4.14-10.614-4.14Z", "M15.994 17.938c-2.262 0-4.464.852-6.2 2.398a1.142 1.142 0 1 0 1.52 1.707c1.317-1.173 2.98-1.82 4.68-1.82 1.702 0 3.366.649 4.684 1.826a1.14 1.14 0 0 0 1.613-.092c.42-.471.38-1.194-.091-1.614-1.738-1.55-3.942-2.405-6.206-2.405Z"] },
|
|
459
|
+
"SignalPoor": { "viewBox": "0 0 32 32", "paths": ["M31.015 11.537c-3.09-2.79-6.823-4.676-10.794-5.456a1.143 1.143 0 0 0-.441 2.242c3.565.701 6.92 2.4 9.704 4.91a1.14 1.14 0 0 0 1.614-.083 1.143 1.143 0 0 0-.083-1.613ZM13.122 6.973a1.15 1.15 0 0 0-1.34-.904c-3.97.77-7.707 2.65-10.807 5.434a1.144 1.144 0 0 0 1.527 1.7c2.791-2.508 6.152-4.198 9.716-4.89.62-.12 1.025-.72.904-1.34ZM20.319 12.425a1.142 1.142 0 1 0-.637 2.196 13.7 13.7 0 0 1 5.39 3.025 1.14 1.14 0 0 0 1.614-.083 1.143 1.143 0 0 0-.082-1.614c-1.845-1.663-3.96-2.849-6.285-3.524M13.098 13.2a1.14 1.14 0 0 0-1.414-.78 16 16 0 0 0-6.298 3.516 1.144 1.144 0 0 0 1.53 1.7 13.7 13.7 0 0 1 5.4-3.021c.607-.175.957-.808.782-1.414ZM20.57 19.189a1.143 1.143 0 0 0-1.139 1.982c.5.288.907.575 1.246.877a1.144 1.144 0 0 0 1.523-1.705 9.6 9.6 0 0 0-1.63-1.154M11.433 19.18a9.6 9.6 0 0 0-1.639 1.156 1.142 1.142 0 1 0 1.522 1.705c.34-.302.75-.59 1.252-.877a1.143 1.143 0 1 0-1.135-1.984ZM16 21.869c.63 0 1.143-.512 1.143-1.143V5.746a1.143 1.143 0 0 0-2.286 0v14.98c0 .631.512 1.143 1.143 1.143"] },
|
|
460
|
+
"Signature": { "viewBox": "0 0 32 32", "paths": ["M15 27.5h-.1c-.39 0-.77-.07-1.13-.19h.02a4.2 4.2 0 0 1-2.58-2.18v-.02c-1.34-2.67-.01-6.44 1.43-10.8l.27-.79c.41-1.24 1.08-3.2 1.39-4.62a27.8 27.8 0 0 0-4.56 6.63l-.07.16c-1.46 2.66-2.97 5.91-4.29 9.26l-.21.61c-.23.76-.93 1.3-1.75 1.3a1.83 1.83 0 0 1-1.83-1.83c0-.93 2.96-7.56 4.86-11.02 3.81-7.21 7.05-10.26 9.87-9.36.56.16 1.03.51 1.33.98s.11.2.11.2c.89 1.72.07 4.49-1.39 8.89l-.28.81c-.99 2.96-2.28 6.68-1.64 7.99.14.29.28.32.36.34l.21.07c.66-.2 1.75-3.11 2.21-4.35.49-1.45 1.02-2.68 1.64-3.86l-.07.14c.33-.73.91-1.29 1.63-1.59h.02c.17-.07.37-.1.58-.1.95 0 1.73.73 1.82 1.66v.3c0 1.02-.16 2-.47 2.91l.02-.07c-.19.78-.66 2.77-.37 3.05s2.54.48 5.85-.19q.3-.12.66-.12c1.01 0 1.83.82 1.83 1.83s-.75 1.76-1.7 1.82c-4.57.94-7.64.68-9.12-.75q-.165-.15-.3-.33c-1 1.82-2.26 3.23-4.26 3.23Z"] },
|
|
461
|
+
"SimpleBot": { "viewBox": "0 0 32 32", "paths": ["M7.59 19.92s3.05.33 7.75.36v1.66c-1.34 0-2.66.11-3.94.31l.15-.02c-.86.06-1.55.69-1.7 1.52-.22.89-.35 1.9-.35 2.94v.06c0 .64.05 1.27.13 1.89v-.07c1.87.89 4.07 1.42 6.39 1.42 2.15 0 4.19-.45 6.05-1.26l-.1.04c.1-.61.16-1.31.16-2.02 0-1.03-.12-2.03-.34-3l.02.09c-.13-.85-.81-1.51-1.66-1.6-1.04-.17-2.24-.28-3.47-.3h-.02v-1.67c4.75 0 7.73-.36 7.74-.36 2.01-.17 2.7-1.06 2.92-1.8.41-1.07.65-2.31.66-3.61-.01-1.3-.25-2.55-.68-3.69l.02.07c-.22-.73-.9-1.62-2.91-1.79 0 0-3.02-.33-7.75-.36V6.98c1.1-.29 1.9-1.28 1.9-2.45 0-1.4-1.13-2.54-2.54-2.54s-2.54 1.13-2.54 2.54c0 1.17.8 2.16 1.88 2.45h.02v1.75c-4.75 0-7.73.36-7.74.36-2.04.17-2.72 1.09-2.91 1.77-.41 1.08-.65 2.33-.66 3.64 0 1.3.25 2.53.67 3.67l-.02-.07c.18.74.83 1.65 2.89 1.82Zm13.86-7.1a2.9 2.9 0 0 1 2.8 2.73v.03c0 .34-.28.62-.62.63-.34 0-.62-.28-.63-.62-.07-.81-.72-1.45-1.53-1.5-.82.05-1.47.69-1.54 1.49 0 .35-.28.62-.63.62h-.02a.64.64 0 0 1-.62-.64v-.02c.07-1.5 1.28-2.69 2.78-2.72Zm-10.96 0a2.9 2.9 0 0 1 2.8 2.73v.03c0 .34-.28.62-.62.63-.34 0-.62-.28-.63-.62-.07-.81-.72-1.45-1.53-1.5-.83.04-1.49.68-1.57 1.49s0 .06 0 .08c0 .35-.28.64-.64.64s-.64-.28-.64-.64v-.08c.08-1.51 1.3-2.71 2.81-2.76Z"] },
|
|
462
|
+
"SiteTree": { "viewBox": "0 0 32 32", "paths": ["M19.03 17.68h-8.3v7.84h8.3c0-1.24 1-2.24 2.24-2.24h2.24c1.24 0 2.24 1 2.24 2.24v2.24c0 1.24-1 2.24-2.24 2.24h-2.24c-1.24 0-2.24-1-2.24-2.24H9.61c-.62 0-1.12-.5-1.12-1.12V8.72c-1.24 0-2.24-1-2.24-2.24V4.24C6.25 3 7.25 2 8.49 2h2.24c1.24 0 2.24 1 2.24 2.24v2.24c0 1.24-1 2.24-2.24 2.24v6.72h8.3c0-1.24 1-2.24 2.24-2.24h2.24c1.24 0 2.24 1 2.24 2.24v2.24c0 1.24-1 2.24-2.24 2.24h-2.24c-1.24 0-2.24-1-2.24-2.24"] },
|
|
463
|
+
"Sleep": { "viewBox": "0 0 32 32", "paths": ["M16.71 30.43c-8.19 0-14.86-6.66-14.86-14.86C1.86 9.36 5.75 4 11.77 1.92c.6-.21 1.25.11 1.45.71s-.11 1.25-.71 1.45c-5.09 1.76-8.37 6.27-8.37 11.49 0 6.93 5.64 12.57 12.57 12.57 4.47 0 8.42-2.41 10.57-6.3-.71.12-1.41.17-2.18.17-4.66 0-9.03-1.88-11.69-5.02-2.05-2.42-2.9-5.42-2.39-8.47.1-.62.69-1.03 1.32-.94.62.1 1.04.69.94 1.32-.4 2.4.25 4.69 1.88 6.61 2.23 2.63 5.95 4.21 9.95 4.21 1.35 0 2.42-.19 3.81-.66.41-.14.87-.04 1.18.27s.41.77.27 1.18c-2.09 6.02-7.45 9.91-13.65 9.91Z"] },
|
|
464
|
+
"Snooze": { "viewBox": "0 0 32 32", "paths": ["M14.71 30.57c-8.19 0-14.85-6.66-14.85-14.86 0-6.2 3.89-11.56 9.91-13.65.6-.21 1.25.11 1.45.71s-.11 1.25-.71 1.45C5.43 5.99 2.14 10.5 2.14 15.71c0 6.93 5.64 12.57 12.57 12.57 4.47 0 8.42-2.41 10.57-6.3-.71.12-1.41.17-2.18.17-4.66 0-9.03-1.88-11.69-5.02-2.05-2.42-2.9-5.42-2.39-8.46.1-.62.7-1.03 1.32-.94.62.1 1.04.69.94 1.32-.4 2.4.25 4.69 1.88 6.61 2.23 2.63 5.95 4.21 9.95 4.21 1.35 0 2.42-.19 3.81-.66.42-.14.87-.04 1.18.27s.41.77.27 1.18c-2.09 6.02-7.45 9.91-13.65 9.91ZM30.71 8.86H25c-.46 0-.88-.28-1.06-.71s-.08-.92.25-1.25l3.76-3.76H25a1.14 1.14 0 1 1 0-2.28h5.71c.46 0 .88.28 1.06.71s.08.92-.25 1.25l-3.76 3.76h2.95a1.14 1.14 0 1 1 0 2.28", "M20.43 13.43h-4.57c-.46 0-.88-.28-1.06-.71s-.08-.92.25-1.25l2.62-2.62h-1.81a1.14 1.14 0 1 1 0-2.28h4.57c.46 0 .88.28 1.06.71s.08.92-.25 1.25l-2.62 2.62h1.81a1.14 1.14 0 1 1 0 2.28"] },
|
|
465
|
+
"SocialBlockInstagram": { "viewBox": "0 0 32 32", "paths": ["M21.7 16c0 3.15-2.55 5.7-5.7 5.7s-5.7-2.55-5.7-5.7 2.55-5.7 5.7-5.7 5.7 2.55 5.7 5.7m8.21-6.9a9.6 9.6 0 0 0-.61-3.23l.02.06c-.29-.77-.73-1.42-1.28-1.96-.53-.55-1.18-.99-1.91-1.27h-.04c-.94-.37-2.03-.59-3.17-.6-1.8-.1-2.34-.1-6.9-.1s-5.09 0-6.9.1c-1.14.02-2.23.23-3.23.61l.06-.02c-.77.29-1.42.73-1.96 1.28-.55.54-.99 1.19-1.27 1.92v.04c-.37.94-.59 2.02-.6 3.16-.1 1.82-.1 2.35-.1 6.91s0 5.1.1 6.9c.02 1.14.23 2.23.61 3.23l-.02-.06c.29.77.73 1.42 1.28 1.96.54.56 1.19.99 1.92 1.27h.04c.94.37 2.02.59 3.16.6 1.81.1 2.35.1 6.9.1s5.1 0 6.9-.1c1.14-.02 2.23-.23 3.23-.61l-.06.02a5.7 5.7 0 0 0 3.22-3.19v-.04c.37-.94.59-2.02.61-3.16.11-1.82.11-2.35.11-6.92s0-5.09-.1-6.9Zm-13.9 15.68c-4.84 0-8.76-3.93-8.76-8.77s3.92-8.77 8.77-8.77 8.76 3.92 8.77 8.75c0 4.85-3.92 8.78-8.77 8.78h-.01Zm9.12-15.84c-1.13 0-2.05-.92-2.05-2.05s.92-2.05 2.05-2.05 2.05.92 2.05 2.05-.92 2.05-2.05 2.05"] },
|
|
466
|
+
"SocialBlockLinkedin": { "viewBox": "0 0 32 32", "paths": ["M29.99 24.75A5.31 5.31 0 0 1 24.76 30H7.24c-2.88-.04-5.21-2.37-5.24-5.24V7.25A5.31 5.31 0 0 1 7.23 2h17.5c2.9.04 5.24 2.4 5.24 5.3v17.45zM8.45 6.7c-.06 0-.14-.01-.22-.01a2.19 2.19 0 1 0 0 4.38c.08 0 .15 0 .22-.01.06 0 .14.01.22.01a2.19 2.19 0 1 0 0-4.38c-.08 0-.15 0-.22.01m2.12 18.73V12.8H6.33v12.63zm15.13 0v-7.25c0-3.88-2.12-5.69-4.86-5.69h-.12c-1.56 0-2.93.84-3.66 2.1v.02l-.01-1.8h-4.23s.06 1.19 0 12.65h4.24v-7.25c0-.31.05-.62.15-.9v.02c.32-.88 1.14-1.51 2.11-1.54 1.53 0 2.12 1.15 2.12 2.86v6.76h4.24z"] },
|
|
467
|
+
"SocialBlockPinterest": { "viewBox": "0 0 32 32", "paths": ["M29.92 7.23v17.41a5.285 5.285 0 0 1-5.22 5.23H11.54a13 13 0 0 0 1.94-3.71l.03-.09s.16-.62.97-3.79a3.94 3.94 0 0 0 3.26 1.73h.12c4.42 0 7.39-4.03 7.39-9.5 0-4.08-3.47-7.9-8.73-7.9-6.55 0-9.86 4.7-9.86 8.62 0 2.37.91 4.47 2.83 5.28.06.03.14.05.22.05.24 0 .44-.17.48-.4.06-.24.19-.86.27-1.06.03-.07.05-.16.05-.26 0-.2-.09-.39-.24-.5-.57-.7-.91-1.6-.91-2.58v-.19c0-3.6 2.92-6.52 6.52-6.52h.29-.01c3.71 0 5.72 2.25 5.72 5.28 0 3.98-1.76 7.39-4.37 7.39h-.14a2.104 2.104 0 0 1-2.03-2.68c.42-1.73 1.22-3.62 1.22-4.86a1.852 1.852 0 0 0-1.83-2.11h-.02c-1.48 0-2.66 1.53-2.66 3.55 0 .79.16 1.55.44 2.24v-.04c-1.52 6.33-1.8 7.52-1.8 7.52-.16.82-.26 1.76-.26 2.73 0 .66.04 1.31.13 1.95v-.07H7.27a5.293 5.293 0 0 1-5.22-5.27V7.23A5.29 5.29 0 0 1 7.26 2h17.42c2.9 0 5.25 2.33 5.28 5.22s-.04 0-.04 0Z"] },
|
|
468
|
+
"SocialBlockRss": { "viewBox": "0 0 32 32", "paths": ["M29.97 24.75V7.25A5.31 5.31 0 0 0 24.74 2H7.24C4.36 2.04 2.03 4.37 2 7.24v17.51A5.3 5.3 0 0 0 7.24 30h17.51A5.3 5.3 0 0 0 30 24.76s-.03 0-.03 0Zm-20.77.64c-1.41 0-2.56-1.14-2.56-2.56s1.14-2.56 2.56-2.56 2.56 1.14 2.56 2.56c0 1.41-1.14 2.56-2.56 2.56m8.48-1.36c-.61 0-1.11-.5-1.11-1.11 0-4.1-3.32-7.42-7.42-7.42-.61 0-1.11-.5-1.11-1.11s.5-1.11 1.11-1.11c5.31 0 9.62 4.31 9.63 9.63v.02c0 .6-.47 1.08-1.06 1.11h-.03Zm7.42 0c-.61 0-1.11-.5-1.11-1.11 0-8.2-6.65-14.84-14.84-14.84-.61 0-1.11-.5-1.11-1.11s.5-1.11 1.11-1.11h.03c9.43 0 17.08 7.64 17.09 17.07 0 .62-.5 1.11-1.11 1.11h-.05Z"] },
|
|
469
|
+
"SocialBlockTwitter": { "viewBox": "0 0 32 32", "paths": ["M29.99 24.75A5.3 5.3 0 0 1 24.75 30H7.24c-2.88-.04-5.21-2.37-5.24-5.24V7.25A5.31 5.31 0 0 1 7.23 2h17.5a5.3 5.3 0 0 1 5.25 5.24v17.51zm-6.86-13.36c.79-.48 1.39-1.22 1.69-2.09v-.03c-.69.42-1.51.74-2.38.92h-.05c-.7-.74-1.69-1.2-2.79-1.2-2.1 0-3.81 1.7-3.82 3.81s0 .06 0 .09c0 .28.03.55.1.81v-.02c-3.2-.15-6.02-1.67-7.9-3.98l-.02-.02c-.34.55-.54 1.23-.54 1.94v.04c0 1.3.65 2.45 1.64 3.14h.01c-.67-.02-1.28-.19-1.84-.47h.03a3.916 3.916 0 0 0 3.16 3.77h.02c-.27.09-.58.14-.9.14h-.03c-.25 0-.49-.03-.73-.08h.03c.5 1.54 1.9 2.63 3.56 2.65a7.67 7.67 0 0 1-4.75 1.63h-.01c-.32 0-.64-.02-.95-.07h.04c1.66 1.08 3.69 1.72 5.86 1.72h.02c5.98 0 10.82-4.85 10.82-10.82v-.49c.76-.53 1.39-1.19 1.89-1.95l.02-.03a7.7 7.7 0 0 1-2.17.6h-.04l.01-.02Z"] },
|
|
470
|
+
"SocialBlockX": { "viewBox": "0 0 32 32", "paths": ["m17.28 15.66 6.17 8.82h-2.66l-4.98-7.12-.77-1.11-6.47-9.26h2.66l5.28 7.56zm12.71 9.1a5.31 5.31 0 0 1-5.25 5.25H7.24A5.3 5.3 0 0 1 2 24.76V7.25A5.3 5.3 0 0 1 7.24 2h17.49c2.88.03 5.22 2.36 5.25 5.25v17.5h.01Zm-11.84-10.1 7.65-8.9h-1.73l-6.69 7.78-5.34-7.78H6.2l7.94 11.56-7.29 8.48h1.73l6.34-7.37 5.06 7.37h5.84l-7.65-11.14h-.01Z"] },
|
|
471
|
+
"SocialBlockXing": { "viewBox": "0 0 32 32", "paths": ["M29.99 24.75A5.3 5.3 0 0 1 24.75 30H7.24c-2.88-.04-5.21-2.37-5.24-5.24V7.25A5.31 5.31 0 0 1 7.23 2h17.5a5.3 5.3 0 0 1 5.25 5.24v17.51zM12.2 9.57a1.07 1.07 0 0 0-.95-.63H7.84c-.17 0-.32.07-.42.19-.05.08-.07.17-.07.27s.03.19.08.27 2.28 3.93 2.28 3.93l-3.58 6.36c-.05.07-.08.16-.08.25s.03.18.08.26c.09.14.25.23.42.23h3.39c.41-.03.76-.29.91-.65 3.49-6.17 3.6-6.37 3.6-6.37l-2.28-4.05zm13.21-5.25H22c-.41.03-.75.29-.9.64-7.22 12.89-7.47 13.31-7.47 13.31l4.78 8.77c.16.38.53.64.95.65h3.38c.17 0 .32-.08.41-.21.05-.07.08-.16.08-.26s-.03-.18-.08-.26-4.74-8.71-4.74-8.71l7.42-13.18c.05-.07.07-.16.07-.25s-.03-.18-.07-.26a.41.41 0 0 0-.36-.21h-.06z"] },
|
|
472
|
+
"SocialBlockYoutube": { "viewBox": "0 0 32 32", "paths": ["M30.01 24.75A5.3 5.3 0 0 1 24.77 30H7.24a5.3 5.3 0 0 1-5.25-5.24V7.24C2.03 4.36 4.36 2.03 7.23 2h17.5a5.3 5.3 0 0 1 5.25 5.24v17.51H30Zm-4.33-8.48a2.55 2.55 0 0 0-2.11-1.97h-.01c-1.94-.2-4.19-.31-6.47-.31h-1.15.06c-.37 0-.8-.01-1.23-.01-2.2 0-4.38.1-6.53.31l.27-.02c-1.06.14-1.9.94-2.12 1.96v.02c-.25 1.21-.39 2.6-.39 4.03 0 .25 0 .5.01.75v-.04c-.01.24-.02.51-.02.79 0 1.4.14 2.76.41 4.08l-.02-.13a2.57 2.57 0 0 0 2.11 1.97h.01c1.85.18 4 .28 6.18.28.46 0 .92 0 1.38-.01h-.07.84c2.35 0 4.67-.12 6.95-.35l-.29.02c1.05-.16 1.89-.94 2.12-1.96v-.02c.25-1.19.39-2.56.39-3.96 0-.27 0-.55-.02-.82v.04c.01-.26.02-.55.02-.86 0-1.35-.13-2.68-.37-3.96l.02.13v.02ZM11.7 17.62h-1.46v7.7H8.89v-7.7H7.46v-1.27h4.24zm2.18-13.89h-1.35l-.93 3.55-.98-3.55H9.19c.28.84.58 1.68.86 2.51.28.76.57 1.72.8 2.71l.03.18v3.68h1.35V9.14l1.64-5.41Zm1.46 21.61h-1.22v-.72c-.32.45-.81.76-1.38.82s-.06 0-.09 0c-.32 0-.59-.22-.67-.51a2.7 2.7 0 0 1-.12-.82v-5.45h1.21v4.91c0 .07-.01.15-.01.23s0 .16.01.24c0 .15.12.27.27.27h.01c.25 0 .49-.18.76-.56v-5.09h1.23v6.69h.01Zm2.19-17.1v-.18c0-.52-.15-1-.4-1.41-.32-.42-.82-.69-1.39-.69h-.11c-.55 0-1.04.28-1.34.7-.27.42-.43.92-.43 1.46v2.68c0 .52.15 1 .4 1.41.33.42.84.69 1.42.69s1.09-.27 1.42-.7c.25-.4.4-.88.4-1.4v-.19zm-1.23 2.6c0 .62-.19.93-.58.93-.41 0-.58-.31-.58-.93V8.01c0-.63.18-.95.58-.95s.58.33.58.95zm3.65 12.5v.21c0 .4-.05.78-.15 1.15v-.03c-.08.44-.45.77-.91.77h-.06c-.52-.05-.97-.33-1.25-.74s0 .66 0 .66h-1.22v-9h1.23v2.95c.28-.41.73-.68 1.25-.72s.03 0 .04 0c.46 0 .84.33.93.76.09.34.14.72.14 1.12v2.88h-.01Zm-1.21-2.77c0-.6-.18-.91-.53-.91-.24.02-.45.13-.6.3v4.07c.15.17.36.28.6.3.35 0 .53-.3.53-.9v-2.85Zm3.3-7.76V6.06h-1.23v5.16c-.28.39-.53.56-.76.56h-.01a.29.29 0 0 1-.29-.29s0-.01 0-.01c0-.07-.01-.15-.01-.23s0-.16.01-.24 0-4.95 0-4.95h-1.22v5.45c0 .3.04.59.13.87v-.02c.11.29.39.49.71.49h.07a2.02 2.02 0 0 0 1.4-.81s0 .78 0 .78h1.21Zm2.49 10.39c0 .12.01.25.01.39s0 .27-.02.41v-.02c-.04.27-.14.52-.28.73-.31.43-.81.72-1.38.72h-.18c-.57 0-1.08-.27-1.39-.7-.25-.4-.4-.87-.4-1.38v-2.73c0-.51.15-.98.4-1.38.33-.42.84-.69 1.41-.69h.13c.56 0 1.05.27 1.35.7.25.4.4.88.4 1.4v1.56h-2.46v1.21c0 .63.19.93.63.93h.01c.27 0 .49-.2.53-.46v-.82h1.25v.14Zm-1.22-2.01v-.63c0-.63-.19-.93-.6-.93s-.6.31-.6.93v.63h1.21Z"] },
|
|
473
|
+
"SocialBlockYoutubeplay": { "viewBox": "0 0 32 32", "paths": ["M29.49 22.78c-.3 1.49-1.5 2.63-3 2.82h-.02c-2.63.26-5.69.41-8.78.41-.59 0-1.18 0-1.77-.02h.09c-.53.01-1.15.02-1.77.02-3.07 0-6.1-.15-9.1-.43l.38.03a3.59 3.59 0 0 1-3.02-2.8v-.02c-.31-1.7-.49-3.65-.49-5.64 0-.4 0-.8.02-1.2v.06c-.02-.36-.03-.79-.03-1.21 0-1.97.19-3.9.55-5.76l-.03.19a3.56 3.56 0 0 1 3-2.83h.02c2.61-.26 5.64-.41 8.71-.41.62 0 1.24 0 1.85.02h-.09c.53-.01 1.15-.02 1.77-.02 3.07 0 6.1.15 9.1.43l-.38-.03c1.5.22 2.69 1.35 2.99 2.81v.02c.33 1.69.51 3.63.51 5.62 0 .41 0 .82-.02 1.22V16c.02.37.03.8.03 1.24 0 1.96-.19 3.87-.54 5.72l.03-.19Zm-7.93-7.62-8.04-5.01a1.07 1.07 0 0 0-1.02 0c-.28.18-.46.48-.47.83v10c0 .37.2.7.5.88.14.08.31.12.48.12h.03c.18 0 .36-.06.5-.16s7.96-4.99 7.96-4.99c.28-.18.47-.49.47-.84v-.03a.99.99 0 0 0-.42-.8Z"] },
|
|
474
|
+
"SocialFacebook": { "viewBox": "0 0 32 32", "paths": ["M18.17 30V17.24h4.28l.65-4.99h-4.93V9.08c0-1.44.4-2.4 2.48-2.4h2.63V2.2c-.47-.06-2.04-.2-3.79-.2-3.8 0-6.4 2.33-6.4 6.57v3.68H8.73v4.99h4.28V30h5.18-.01Z"] },
|
|
475
|
+
"SocialGoogleplus": { "viewBox": "0 0 32 32", "paths": ["M19.31 14.7H10.9v3.06h5.04c-.19 1.31-1.48 3.84-5.04 3.84-3.1 0-5.62-2.51-5.62-5.62s2.51-5.62 5.62-5.62h.08c1.34 0 2.57.52 3.47 1.38s2.42-2.34 2.42-2.34a8.62 8.62 0 0 0-5.88-2.31h-.09c-4.92 0-8.9 3.99-8.9 8.9s3.99 8.9 8.9 8.9c5.14 0 8.55-3.62 8.55-8.72v-.09c0-.49-.05-.98-.13-1.45v.05h-.01ZM30 17.27V14.7h-2.53v-2.55h-2.58v2.55h-2.52v2.57h2.52v2.55h2.55v-2.55z"] },
|
|
476
|
+
"SortAlpAsc": { "viewBox": "0 0 32 32", "paths": ["M13.19 23.74h-2.45V2.88c0-.48-.39-.88-.88-.88H8.11c-.48 0-.88.39-.88.88v20.87h-2.4c-1.15 0-1.43.67-.61 1.48l4.76 4.78 4.79-4.79c.83-.81.56-1.47-.59-1.47Zm3.95 4.29 6.66-8.37h-6.55v-1.91h9.15v1.97l-6.69 8.34h6.79V30h-9.35v-1.97ZM21.09 2H23l5.25 12.25h-2.49l-1.14-2.8h-5.31l-1.11 2.8h-2.44zm2.78 7.6-1.9-4.97-1.93 4.97h3.82Z"] },
|
|
477
|
+
"SortAlpDesc": { "viewBox": "0 0 32 32", "paths": ["M13.19 23.74h-2.41V2.88c0-.48-.39-.88-.88-.88H8.15c-.48 0-.88.39-.88.88v20.87H4.84c-1.15 0-1.43.67-.61 1.48l4.8 4.78 4.79-4.79c.8-.81.53-1.47-.63-1.47Zm3.96-11.45 6.66-8.37h-6.55V2h9.15v1.99l-6.7 8.34h6.83v1.92h-9.39zm3.95 5.46h1.89L28.24 30h-2.47l-1.14-2.8h-5.32l-1.1 2.8h-2.44zm2.76 7.58-1.88-4.95-1.92 4.98z"] },
|
|
478
|
+
"SortAmtAsc": { "viewBox": "0 0 32 32", "paths": ["M12.31 23.74H9.88V2.88C9.88 2.4 9.49 2 9 2H7.25c-.48 0-.88.39-.88.88v20.87H3.96c-1.15 0-1.43.67-.61 1.48l4.78 4.78 4.79-4.79c.82-.81.54-1.47-.6-1.47Zm16.81 1.01v3.5h-10.5v-3.5zm-1.75-7v3.5h-8.75v-3.5zm-1.75-6.99v3.5h-7v-3.5zm-1.75-7v3.5h-5.25v-3.5z"] },
|
|
479
|
+
"SortAmtDesc": { "viewBox": "0 0 32 32", "paths": ["M12.3 23.75H9.87V2.88c0-.48-.39-.88-.88-.88H7.24c-.48 0-.88.39-.88.88v20.88H3.95c-1.15 0-1.43.67-.61 1.48l4.77 4.77 4.79-4.79c.82-.8.55-1.46-.6-1.46Zm6.32-16.48v-3.5h10.5v3.5zm0 6.99v-3.5h8.75v3.5zm0 7v-3.5h7v3.5zm0 6.99v-3.5h5.25v3.5z"] },
|
|
480
|
+
"SortNumAsc": { "viewBox": "0 0 32 32", "paths": ["M14.05 23.74h-2.43V2.88c0-.48-.39-.88-.88-.88H8.99c-.48 0-.88.39-.88.88v20.87H5.7c-1.15 0-1.43.67-.61 1.48l4.78 4.78 4.79-4.79c.82-.81.54-1.47-.6-1.47Zm7.74-19.21-2.42 2-1.21-1.44L21.98 2h1.89v12.25h-2.08V4.54Zm-1.1 25.46 3.07-4.44c-.18.08-.39.14-.6.17h-.01c-.2.03-.43.05-.66.05h-.02c-.53 0-1.03-.11-1.48-.31h.02a3.8 3.8 0 0 1-1.22-.8 3.8 3.8 0 0 1-.81-1.19v-.02c-.22-.45-.34-.97-.35-1.52s0-.05 0-.08c0-.61.13-1.18.35-1.7v.03c.2-.51.5-.95.86-1.32.39-.37.84-.67 1.35-.87h.03c.46-.16.98-.25 1.53-.25h.26H23h.05c.61 0 1.19.12 1.73.33h-.03c.54.2 1 .5 1.39.87.76.72 1.23 1.74 1.23 2.87v.1c0 .63-.12 1.24-.34 1.8v-.03c-.12.35-.25.64-.39.91l.02-.04c-.15.28-.32.57-.52.88l-3 4.58h-2.46Zm4.62-8.2c0-.32-.06-.62-.16-.89v.02a2.25 2.25 0 0 0-1.17-1.27h-.01c-.28-.14-.6-.22-.95-.22h-.1c-.62 0-1.17.26-1.57.67-.39.43-.63 1-.63 1.63v.16c0 .32.06.63.16.91v-.02c.1.29.26.53.46.74.2.2.44.36.7.48h.01c.26.11.56.18.88.18.34 0 .67-.07.97-.2h-.02c.57-.21 1.01-.66 1.22-1.21.12-.3.2-.62.21-.96Z"] },
|
|
481
|
+
"SortNumDesc": { "viewBox": "0 0 32 32", "paths": ["M14.05 23.74h-2.42V2.88c0-.48-.39-.88-.88-.88H9c-.48 0-.88.39-.88.88v20.87H5.7c-1.15 0-1.43.67-.61 1.48l4.79 4.78 4.79-4.79c.81-.81.53-1.47-.61-1.47Zm7.74-3.47-2.42 1.99-1.22-1.43 3.82-3.08h1.91V30h-2.09v-9.72Zm-1.11-6.03 3.07-4.38c-.18.08-.39.14-.6.17h-.01c-.2.03-.43.05-.66.05h-.02c-.53 0-1.03-.11-1.48-.31H21a3.8 3.8 0 0 1-1.22-.8 3.8 3.8 0 0 1-.81-1.19v-.02a3.7 3.7 0 0 1-.33-1.55v-.07c0-.61.13-1.18.35-1.7v.03c.2-.51.5-.95.86-1.32.39-.36.86-.64 1.38-.81h.03c.51-.21 1.11-.32 1.73-.32h.07c.61 0 1.19.12 1.73.33h-.03c.54.2 1 .5 1.39.87.76.72 1.23 1.74 1.23 2.87v.1c0 .63-.12 1.24-.34 1.8v-.03c-.12.35-.25.64-.39.91l.02-.04c-.15.28-.32.57-.52.88l-3.01 4.57h-2.47Zm4.62-8.2c0-.32-.06-.62-.16-.89v.02a2.25 2.25 0 0 0-1.17-1.27h-.01c-.24-.1-.52-.16-.81-.16h-.23c-.62 0-1.17.26-1.57.67-.39.43-.63 1-.63 1.63v.16c0 .32.06.63.16.91v-.02c.1.29.26.53.46.74.2.2.44.36.7.48h.01c.26.11.56.18.88.18.35-.01.67-.1.97-.23h-.02c.57-.21 1.01-.66 1.22-1.21.12-.3.19-.63.2-.97s0-.02 0-.02Z"] },
|
|
482
|
+
"SortTable": { "viewBox": "0 0 32 32", "paths": ["M29.38 21.96a1.147 1.147 0 0 0-1.617 0l-3.85 3.852V5.714a1.143 1.143 0 0 0-2.286 0v20.099l-3.853-3.852a1.144 1.144 0 0 0-1.615 1.617l5.803 5.802a1.143 1.143 0 0 0 1.616 0l5.802-5.802a1.144 1.144 0 0 0 0-1.617M15.84 8.422 10.039 2.62a1.145 1.145 0 0 0-1.616 0L2.62 8.422a1.144 1.144 0 0 0 1.617 1.617l3.85-3.851v20.098a1.143 1.143 0 0 0 2.286 0V6.187l3.853 3.852a1.14 1.14 0 0 0 1.616-.001 1.14 1.14 0 0 0-.001-1.616"] },
|
|
483
|
+
"SortTableAsc": { "viewBox": "0 0 32 32", "paths": ["m17.04 3.3 7.64 7.23a1.5 1.5 0 0 1-2.06 2.18l-5.1-4.83.05 19.73c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5l-.05-19.75-5.12 4.85a1.5 1.5 0 0 1-2.06-2.18l7.64-7.23c.12-.11.48-.42.99-.42.47 0 .97.3 1.08.42Z"] },
|
|
484
|
+
"SortTableAscNew": { "viewBox": "0 0 32 32", "paths": ["M22.61 9.566 16.81 3.764c-.43-.43-1.188-.43-1.618 0L9.39 9.566a1.142 1.142 0 1 0 1.617 1.616l3.85-3.852V27.43a1.143 1.143 0 0 0 2.286 0V7.33l3.85 3.852c.224.223.516.335.809.335a1.142 1.142 0 0 0 .809-1.95"] },
|
|
485
|
+
"SortTableDesc": { "viewBox": "0 0 32 32", "paths": ["m14.96 28.7-7.64-7.23a1.5 1.5 0 0 1 2.06-2.18l5.1 4.83-.05-19.73c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5l.05 19.75 5.12-4.85a1.5 1.5 0 0 1 2.06 2.18l-7.64 7.23c-.12.11-.48.42-.99.42-.47 0-.97-.3-1.08-.42Z"] },
|
|
486
|
+
"SortTableDescNew": { "viewBox": "0 0 32 32", "paths": ["M22.126 20.817a1.143 1.143 0 0 0-1.616.001l-3.85 3.852V4.57a1.143 1.143 0 0 0-2.286 0V24.67l-3.852-3.853a1.144 1.144 0 0 0-1.617 1.617l5.803 5.803a1.147 1.147 0 0 0 1.617 0l5.802-5.803a1.14 1.14 0 0 0-.001-1.617"] },
|
|
487
|
+
"SpellCheck": { "viewBox": "0 0 32 32", "paths": ["M3.55 16.03c.86 0 1.55-.7 1.55-1.55v-2.6h2.08v2.6c0 .86.7 1.56 1.56 1.56s1.56-.7 1.56-1.56V4.11c0-.87-.7-1.56-1.55-1.56h-5.2C2.69 2.55 2 3.25 2 4.1v10.37c0 .86.7 1.55 1.55 1.55ZM5.11 5.66h2.07v3.11H5.11zm8.81-3.11h-.02c-.86 0-1.55.7-1.55 1.55v10.37c0 .86.7 1.55 1.55 1.55h5.18c.86 0 1.55-.7 1.55-1.55V4.11c0-.86-.68-1.55-1.53-1.56h-5.19Zm1.55 3.11h2.07v2.07h-2.07zm2.07 7.29h-2.07v-2.11h2.07zm6.74-10.4c-.86 0-1.55.7-1.55 1.55v10.37c0 .86.7 1.55 1.55 1.55h4.15c.86 0 1.56-.7 1.56-1.56s-.7-1.56-1.56-1.56h-2.59V5.61h2.6c.86 0 1.56-.7 1.56-1.56s-.7-1.56-1.56-1.56l-4.15.04ZM8.69 22.71a1.543 1.543 0 0 0 0 2.18l4.15 4.15a1.543 1.543 0 0 0 2.18 0l8.25-8.28c.34-.29.56-.71.56-1.19 0-.86-.7-1.55-1.55-1.55-.48 0-.91.22-1.19.56s-7.2 7.2-7.2 7.2l-3.01-3.06a1.543 1.543 0 0 0-2.18 0Z"] },
|
|
488
|
+
"Sprocket": { "viewBox": "0 0 32 32", "paths": ["M23.2 11.21V7.88c.88-.42 1.48-1.29 1.48-2.31V5.5c0-1.41-1.15-2.56-2.56-2.56h-.07c-1.41 0-2.56 1.15-2.56 2.56v.07c0 1.02.6 1.9 1.46 2.31h.02v3.34c-1.33.2-2.5.74-3.47 1.53h.01L8.37 5.63c.06-.22.1-.47.11-.73 0-1.6-1.29-2.89-2.89-2.89S2.7 3.3 2.7 4.9a2.89 2.89 0 0 0 2.88 2.89c.53 0 1.02-.15 1.44-.4h-.01l8.99 7c-.76 1.13-1.21 2.53-1.21 4.03s.5 3.03 1.35 4.22l-.02-.02-2.78 2.73c-.18-.05-.38-.08-.59-.08-1.31 0-2.37 1.06-2.37 2.37s1.06 2.37 2.37 2.37 2.37-1.06 2.37-2.37v-.03c0-.24-.05-.47-.12-.69v.02l2.67-2.66c1.2.9 2.72 1.45 4.36 1.45 4.03 0 7.3-3.27 7.3-7.3a7.29 7.29 0 0 0-6.06-7.19h-.04Zm-1.12 10.95c-2.07 0-3.75-1.68-3.75-3.75s1.68-3.75 3.75-3.75 3.75 1.68 3.75 3.75c0 2.08-1.68 3.75-3.74 3.75Z"] },
|
|
489
|
+
"StopRecord": { "viewBox": "0 0 32 32", "paths": ["M9.5 15.81v-2.18c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.78c0 1.05.18 2.05.5 2.99l-.02-.07 2.53-2.52ZM20.23 5.07C19.61 3.27 17.94 2 15.97 2a4.5 4.5 0 0 0-4.5 4.5v7.32l8.76-8.76Zm2.2 11.22c-.41 2.9-2.68 5.17-5.54 5.57h-.03l-2.81 2.84.47.1v2.25h-2.83l-2.65 2.61c.26.22.59.35.96.35h12.01c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H17.5V24.8c4.56-.75 8-4.67 8.01-9.38v-1.77c0-.13-.02-.26-.05-.38s-3.02 3.04-3.02 3.04Zm3.4-12.99L3.28 25.85c-.38.37-.62.89-.62 1.46s.24 1.09.62 1.46c.37.38.89.62 1.46.62s1.09-.24 1.46-.62L28.72 6.18c.38-.37.62-.89.62-1.46s-.24-1.09-.62-1.46c-.37-.36-.87-.58-1.43-.58s-1.09.24-1.46.62"] },
|
|
490
|
+
"Strike": { "viewBox": "0 0 32 32", "paths": ["M8.54 13.59h7.39c-3.88-.68-4.1-2.12-4.23-3.2 0-.12-.31-3 3.25-3.61a6.33 6.33 0 0 1 5.31 1.14h-.01c.36.33.84.53 1.38.53a2.01 2.01 0 0 0 1.38-3.47 10.33 10.33 0 0 0-6.59-2.37c-.78 0-1.53.08-2.26.25h.07c-5.34.99-6.81 5.32-6.49 7.99.1 1.02.39 1.95.83 2.78l-.02-.04ZM28 15.32H4a2 2 0 1 0 0 4h16.22a3.12 3.12 0 0 1 .71 2.52v-.02c-.13 1.71-1.46 2.93-3.74 3.44-2.94.65-5.43-1.75-5.45-1.76-.36-.37-.87-.6-1.43-.6-1.1 0-2 .9-2 2 0 .55.22 1.04.58 1.41a11.04 11.04 0 0 0 7.22 3.07h.02c.68 0 1.35-.08 1.99-.23h-.06c4-.88 6.6-3.52 6.85-6.99 0-.15.01-.32.01-.5 0-.82-.12-1.61-.34-2.35v.06h3.41c1.1 0 2-.9 2-2s-.9-2-2-2v-.05Z"] },
|
|
491
|
+
"Styles": { "viewBox": "0 0 32 32", "paths": ["M2.56 28.02c.19-.13.34-.3.46-.5.37-.59.59-1.27.63-1.97.32-3.24 2.88-5.14 5.24-3.54s2.73 4.61-.07 6.23q-.69.405-1.44.69H7.3c-.89.35-1.82.61-2.77.78h-.09c-.44.09-.89.15-1.34.2h-.09c-.57 0-1.03-.46-1.03-1.03 0-.38.22-.73.55-.91V28Zm10.87-4.99c-.39.4-1.04.4-1.43 0l-2.85-2.88c-.19-.19-.3-.45-.3-.73 0-.57.45-1.03 1.01-1.04.28 0 .55.11.75.31l2.83 2.88a1.037 1.037 0 0 1-.01 1.47Zm-2.41-5.93L24.79 3.26a2.887 2.887 0 0 1 4.03-.62c1.28.94 1.56 2.74.62 4.03-.17.24-.38.44-.61.62L15 21.12z"] },
|
|
492
|
+
"Success": { "viewBox": "0 0 32 32", "paths": ["M27.24 6.78 12.23 21.79l-7.47-7.47A1.619 1.619 0 0 0 2 15.47c0 .45.18.85.47 1.14l8.62 8.61a1.62 1.62 0 0 0 2.28 0L29.53 9.07a1.619 1.619 0 0 0-1.15-2.76c-.45 0-.85.18-1.14.47"] },
|
|
493
|
+
"SwitchDataSetField": { "viewBox": "0 0 32 32", "paths": ["M27.41 30c-2.24 0-3.47 0-4.43-.86-.8-.72-.97-1.63-1-2.99-2.18-.02-3.49-.15-4.49-1.05-1.22-1.1-1.22-2.66-1.22-5.25v-2.68H12.9v1.03c0 4.1-3.41 4.1-5.44 4.1s-5.44 0-5.44-4.1v-4.4c0-4.1 3.41-4.1 5.44-4.1s5.44 0 5.44 4.1v1.03h3.37v-2.68c0-2.59 0-4.15 1.22-5.25 1-.9 2.32-1.03 4.49-1.05.04-1.35.2-2.27 1-2.99C23.94 2 25.17 2 27.41 2c.56 0 1.04 0 1.46.01.64.02 1.15.55 1.13 1.2-.02.64-.59 1.11-1.2 1.13-.4-.01-.87-.02-1.39-.01-1.49 0-2.57 0-2.87.26-.24.22-.24 1.14-.24 2.42s0 2.2.24 2.42c.3.27 1.38.27 2.87.27.52 0 .99 0 1.39-.01.6 0 1.18.49 1.2 1.13s-.49 1.18-1.13 1.2c-.42.01-.9.01-1.46.01-2.24 0-3.47 0-4.43-.87-.8-.72-.97-1.63-1-2.98-1.55.01-2.52.08-2.93.45-.43.39-.45 1.36-.45 3.51v7.7c0 2.16.02 3.13.45 3.51.41.37 1.38.44 2.93.45.04-1.35.2-2.26 1-2.98.96-.86 2.19-.86 4.43-.86.56 0 1.04 0 1.46.01.64.02 1.15.55 1.13 1.2-.02.64-.59 1.13-1.2 1.13-.4-.01-.87-.02-1.39-.01-1.5 0-2.58 0-2.87.26-.24.22-.24 1.14-.24 2.42s0 2.2.24 2.42c.3.27 1.38.27 2.87.27.52-.01.99 0 1.39-.01h.03c.63 0 1.15.5 1.17 1.13.02.64-.49 1.18-1.13 1.2-.42.01-.9.01-1.46.01ZM7.44 12.03c-2.98 0-3.11.4-3.11 1.77v4.4c0 1.37.13 1.77 3.11 1.77s3.11-.4 3.11-1.77v-4.4c0-1.37-.13-1.77-3.11-1.77"] },
|
|
494
|
+
"Table": { "viewBox": "0 0 32 32", "paths": ["M26.37 4.2H5.63C3.63 4.2 2 5.83 2 7.83v16.34c0 2 1.63 3.63 3.63 3.63h20.74c2 0 3.63-1.63 3.63-3.63V7.83c0-2-1.63-3.63-3.63-3.63m.52 7.26v5.06h-9.33v-5.06zm-12.44 0v5.06H5.11v-5.06h9.33ZM5.64 24.68c-.28 0-.51-.23-.51-.51v-4.54h9.33v5.06H5.63Zm20.74 0h-8.81v-5.06h9.33v4.54c0 .29-.23.52-.52.52"] },
|
|
495
|
+
"Tablet": { "viewBox": "0 0 32 32", "paths": ["m25.77 29.02.07-.09c.55-.59.89-1.38.89-2.25V5.33c0-1.84-1.49-3.32-3.33-3.33H8.59C6.75 2 5.27 3.49 5.26 5.33v21.84c.1 1.59 1.41 2.84 3.01 2.84H23.5c.85 0 1.62-.35 2.18-.9l.08-.09ZM14.6 26.74v-.03a1.419 1.419 0 1 1 1.42 1.42c-.61 0-1.13-.38-1.33-.92-.06-.15-.09-.31-.09-.47M8.59 4.8H23.4c.29 0 .53.24.53.53v18.16H8.06V5.33c0-.29.24-.53.53-.53"] },
|
|
496
|
+
"Tag": { "viewBox": "0 0 32 32", "paths": ["M26.93 1.97h-9.38c-.85 0-1.62.35-2.17.91S2.9 15.39 2.9 15.39c-.56.56-.9 1.33-.9 2.18s.34 1.62.9 2.18l9.37 9.37c.56.56 1.33.9 2.18.9s1.62-.34 2.18-.9L29.08 16.6c.56-.55.91-1.32.91-2.17V5.06c0-1.71-1.38-3.09-3.07-3.09Zm-4.92 10.02a2 2 0 1 1 2-2 2.01 2.01 0 0 1-2 1.95V12Z"] },
|
|
497
|
+
"Tasks": { "viewBox": "0 0 32 32", "paths": ["M29.68 20.52c-1.12-2.26-1.78-4.91-1.78-7.72V5.7c0-.13-.02-.26-.06-.37-.31-1.54-1.65-2.7-3.27-2.7H5.33c-1.61 0-2.96 1.16-3.26 2.68v.02q-.06.165-.06.36v7.09c0 3.74 1.02 7.25 2.81 10.25l-.05-.09c.84 1.4 2.34 2.32 4.06 2.34h16.65v.74c0 .51-.41.91-.91.91H5.33c-.51 0-.91-.41-.91-.91 0-.67-.54-1.21-1.21-1.21S2 25.35 2 26.02c0 1.84 1.49 3.33 3.33 3.33h19.23c1.84 0 3.33-1.49 3.33-3.33V25c.68-.27 1.23-.74 1.6-1.33.31-.51.5-1.11.5-1.75 0-.52-.12-1-.33-1.44v.02Zm-22.82 1.2c-1.53-2.56-2.43-5.65-2.43-8.95v-1.62h21.05v1.63c0 3.2.75 6.23 2.09 8.92l-.05-.12c.07.12.11.27.11.43s-.04.3-.11.43c-.16.26-.45.43-.78.43H8.87c-.85 0-1.6-.46-2.01-1.14s0-.01 0-.01"] },
|
|
498
|
+
"Test": { "viewBox": "0 0 32 32", "paths": ["M29.73 27.46c.17-.34.27-.74.27-1.17 0-.62-.21-1.19-.57-1.65s-8.04-9.72-8.04-9.72V6.27h.54a1.62 1.62 0 1 0 0-3.24H10.04a1.62 1.62 0 1 0 0 3.24h.54v8.65l-8.04 9.73a2.701 2.701 0 0 0 2.16 4.32h22.61c1.06 0 1.97-.61 2.41-1.5v-.02Zm-12.66-2.81c0-.6.48-1.08 1.08-1.08h5.41c.6 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08h-5.41c-.6 0-1.08-.48-1.08-1.08m-3.61-8.16c.23-.28.37-.64.37-1.03V6.28h4.32v9.24c0 .39.14.75.37 1.03s3.17 3.78 3.17 3.78h-11.4z"] },
|
|
499
|
+
"Text": { "viewBox": "0 0 32 32", "paths": ["M25.33 2H6.67c-1.1 0-2 .9-2 2s.9 2 2 2H14v22c0 1.1.9 2 2 2s2-.9 2-2V6h7.33c1.1 0 2-.9 2-2s-.9-2-2-2"] },
|
|
500
|
+
"TextBodyExpanded": { "viewBox": "0 0 32 32", "paths": ["M5 23.29h3.43v3.43H5z", "M8.43 27.86H5c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.29-2.29h1.14v-1.14H6.14zM23.29 23.29h3.43v3.43h-3.43z", "M26.71 27.86h-3.43c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.29h1.14v-1.14h-1.14zM14.14 23.29h3.43v3.43h-3.43z", "M17.57 27.86h-3.43c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.29h1.14v-1.14h-1.14zM14.14 14.14h3.43v3.43h-3.43z", "M17.57 18.71h-3.43c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.28h1.14v-1.14h-1.14zM23.29 14.14h3.43v3.43h-3.43z", "M26.71 18.71h-3.43c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.28h1.14v-1.14h-1.14zM23.29 5h3.43v3.43h-3.43z", "M26.71 9.57h-3.43c-.63 0-1.14-.51-1.14-1.14V5c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.28h1.14V6.15h-1.14z"] },
|
|
501
|
+
"TextColor": { "viewBox": "0 0 32 32", "paths": ["M6.22 29.9a1.608 1.608 0 0 0 2.07-.96s2.01-5.45 2.01-5.45h11.35l2.01 5.44c.23.63.83 1.08 1.54 1.08a1.63 1.63 0 0 0 1.53-2.19S17.53 2.9 17.53 2.9v-.06l-.1-.15-.08-.14-.1-.13-.1-.12-.18-.08-.11-.09-.16-.09-.13-.06h-1.26l-.12.06-.16.09-.03.09-.14.12-.1.11-.1.13-.08.14-.08.15v.06L5.24 27.82a1.608 1.608 0 0 0 .96 2.07h.01ZM16 8.1l4.47 12.11h-8.94z"] },
|
|
502
|
+
"TextDataType": { "viewBox": "0 0 32 32", "paths": ["M7.77 11.33a.87.87 0 0 0-.35-.46.95.95 0 0 0-.53-.17c-.2-.03-.39.03-.56.14s-.3.28-.38.49l-3.91 9.36c-.03.11-.04.2-.04.3 0 .22.07.41.2.57.14.16.35.24.64.24.18 0 .34-.05.49-.17.15-.11.27-.27.34-.46l.81-1.91h4.67l.81 1.89c.08.2.2.36.35.47.16.12.32.18.51.18.22 0 .42-.08.6-.25s.28-.39.28-.67c0-.12-.03-.24-.08-.38l-3.87-9.17Zm-2.52 6.13 1.56-3.67 1.58 3.67H5.26ZM19.68 13.74c-.57-.37-1.23-.55-1.96-.55-.37 0-.71.06-1.04.18q-.495.195-.87.48c-.23.17-.41.35-.55.53v-3.29c0-.27-.08-.5-.27-.68-.17-.18-.39-.28-.67-.28s-.5.1-.67.28-.27.41-.27.68v9.84c0 .28.1.51.27.69s.4.25.67.25.5-.1.67-.27c.18-.18.27-.41.27-.68v-.11a3.786 3.786 0 0 0 1.33.85c.37.14.76.2 1.18.2.71 0 1.35-.18 1.92-.55s1.02-.88 1.36-1.53c.34-.66.51-1.41.51-2.27s-.17-1.61-.51-2.26-.81-1.15-1.38-1.53v.02Zm-.2 5.12c-.19.4-.46.72-.8.95s-.74.34-1.2.34-.87-.11-1.21-.34c-.35-.23-.62-.54-.81-.95-.19-.39-.29-.85-.29-1.34s.1-.95.29-1.35c.19-.38.46-.7.81-.93.34-.23.74-.34 1.21-.34s.86.11 1.2.34c.33.23.6.54.8.93.19.39.3.85.3 1.35s-.11.94-.3 1.34M29.78 19.82c-.15-.18-.36-.26-.63-.26-.23 0-.4.04-.52.14-.11.1-.25.18-.39.26-.12.06-.28.11-.47.14-.18.04-.41.04-.67.04-.47 0-.88-.11-1.24-.34s-.64-.54-.85-.94c-.2-.39-.31-.84-.31-1.34s.1-.96.3-1.36.48-.7.86-.94c.37-.23.82-.34 1.36-.34.11 0 .26.02.48.05.21.03.38.09.47.15.11.06.21.13.3.2s.18.13.29.18c.11.04.25.07.42.07.24 0 .42-.09.55-.27.12-.18.18-.38.18-.59 0-.31-.12-.59-.37-.81-.25-.23-.59-.4-1.03-.53s-.96-.18-1.56-.18c-.81 0-1.51.18-2.14.56-.62.37-1.1.88-1.45 1.53-.35.66-.53 1.41-.53 2.27s.17 1.55.49 2.21c.33.66.8 1.17 1.4 1.56.6.38 1.32.57 2.14.57.55 0 1.07-.07 1.54-.19.47-.13.86-.31 1.15-.52s.44-.46.44-.71-.07-.46-.22-.63Z"] },
|
|
503
|
+
"TextSnippet": { "viewBox": "0 0 32 32", "paths": ["M17.62 2h10.77c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08H17.62c-.59 0-1.08-.48-1.08-1.08S17.02 2 17.62 2m0 6.46h10.77c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08H17.62c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08m0 6.46h10.77c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08H17.62c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08m-14 6.46h24.77c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08H3.62c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08m0 6.46h24.77c.59 0 1.08.48 1.08 1.08S28.99 30 28.39 30H3.62c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08M12.23 2H3.62c-.59 0-1.08.48-1.08 1.08 0 .59.48 1.08 1.08 1.08h3.23v11.85c0 .59.48 1.08 1.08 1.08s1.08-.48 1.08-1.08V4.15h3.23c.59 0 1.08-.48 1.08-1.08s-.48-1.08-1.08-1.08Z"] },
|
|
504
|
+
"ThumbsDown": { "viewBox": "0 0 32 32", "paths": ["M26.79 2.62h1.07c1.18 0 2.14.96 2.14 2.14V17.6c0 1.18-.96 2.14-2.14 2.14h-1.07c-1.18 0-2.14-.96-2.14-2.14V4.76c0-1.18.96-2.14 2.14-2.14M19.3 4.76c.59 0 1.07.48 1.07 1.07V17.6l-1.96 8.8c-.11.48-.54.83-1.04.83h-1.28c-.59 0-1.07-.48-1.07-1.07V17.6H6.19c-1.18 0-2.14-.96-2.14-2.14a2.142 2.142 0 0 1 2.88-2.01h-.01v-.17a2.16 2.16 0 0 1-1.79-2.12C5.13 9.97 6.1 9 7.29 9c.13 0 .25.01.38.03h-.01v-.16a2.14 2.14 0 0 1 .71-4.12h10.94Zm0-2.14H8.36c-2.34.03-4.24 1.93-4.24 4.28 0 .45.07.88.2 1.29v-.03c-.79.77-1.27 1.85-1.27 3.03 0 .45.07.88.19 1.28v-.03c-.78.77-1.25 1.84-1.25 3.02 0 2.34 1.88 4.25 4.22 4.28h6.66v6.42c0 1.77 1.44 3.21 3.21 3.21h1.29c1.53 0 2.8-1.07 3.13-2.49v-.02l2.01-8.79c0-.07.01-.15.01-.24s0-.16-.01-.25 0-11.76 0-11.76c0-1.77-1.44-3.21-3.21-3.21Z"] },
|
|
505
|
+
"ThumbsUp": { "viewBox": "0 0 32 32", "paths": ["M4.14 12.26h1.07c1.18 0 2.14.96 2.14 2.14v12.84c0 1.18-.96 2.14-2.14 2.14H4.14c-1.18 0-2.14-.96-2.14-2.14V14.4c0-1.18.96-2.14 2.14-2.14m11.77-7.5c.59 0 1.07.48 1.07 1.07v8.56h8.83c1.18 0 2.14.96 2.14 2.14a2.142 2.142 0 0 1-2.88 2.01h.01v.17c1.02.18 1.79 1.06 1.79 2.12 0 1.19-.96 2.15-2.15 2.15-.13 0-.25-.01-.38-.03h.01v.16a2.14 2.14 0 0 1-.71 4.12H12.7c-.59 0-1.07-.48-1.07-1.07V14.39l1.96-8.79c.11-.48.54-.83 1.04-.83h1.28Zm0-2.14h-1.28c-1.53 0-2.8 1.07-3.13 2.49v.02l-2 8.79c0 .07-.01.15-.01.23s0 .16.01.24 0 11.76 0 11.76c0 1.77 1.44 3.21 3.21 3.21h10.93a4.28 4.28 0 0 0 4.23-4.28c0-.45-.07-.88-.2-1.28v.03c.79-.77 1.27-1.85 1.27-3.03 0-.45-.07-.88-.19-1.28v.03c.78-.77 1.26-1.85 1.26-3.03a4.28 4.28 0 0 0-4.23-4.28h-6.66V5.82c0-1.77-1.44-3.21-3.21-3.21Z"] },
|
|
506
|
+
"Ticket": { "viewBox": "0 0 32 32", "paths": ["m22.59 6.2-4.25-4.25-2.13 2.12-9.03 9.04 2.66 2.65-1.02 1.02-2.71-2.61-3.68 3.68c-.27.27-.44.65-.44 1.06s.17.79.44 1.06l9.53 9.64c.27.27.65.44 1.06.44s.79-.17 1.06-.44l.58-.58.48-.47 2.65-2.66-2.65-2.65 1.02-1.02 2.66 2.66 9.03-9.04 2.13-2.12-2.1-2.21-2.12-2.12c-.4.38-.95.62-1.55.62-1.24 0-2.25-1.01-2.25-2.25 0-.6.23-1.14.62-1.55Zm-9.04 15.37-3.19-3.19 1.02-1.02 3.19 3.19zm7.09-8.2-1.02 1.02.24 1.42v.07a.47.47 0 0 1-.68.42s-1.27-.67-1.27-.67l-1.27.67s-.1.02-.15.02-.1 0-.15-.02a.47.47 0 0 1-.39-.45v-.08l.25-1.41-1.02-1.02a.43.43 0 0 1-.13-.26s0-.05 0-.07c0-.24.17-.43.4-.47l1.41-.2.63-1.17c.04-.07.1-.13.17-.17a.5.5 0 0 1 .25-.07c.18 0 .33.1.42.24s.64 1.28.64 1.28l1.42.22c.11.01.2.06.27.13a.463.463 0 0 1-.01.63v-.06Z"] },
|
|
507
|
+
"Time": { "viewBox": "0 0 32 32", "paths": ["M25.86 15.55c0-5.44-4.41-9.84-9.84-9.84s-9.85 4.41-9.85 9.84 4.41 9.84 9.84 9.84 9.84-4.41 9.84-9.84ZM17 9.65v5.9h3.94c.5.05.89.47.89.98s-.39.93-.89.98h-4.93c-.55 0-.99-.44-.99-.99V9.64c.05-.5.47-.89.98-.89s.93.39.98.89Zm6.67-6.72c-.22-.13-.48-.21-.77-.21-.53 0-1 .28-1.26.71-.13.22-.21.49-.21.77 0 .53.28.99.7 1.25 2.31 1.43 4.07 3.56 4.99 6.09l.03.08a1.477 1.477 0 0 0 2.85-.55c0-.16-.02-.31-.07-.45-1.18-3.25-3.37-5.91-6.19-7.65l-.06-.04ZM9.89 5.45a1.47 1.47 0 0 0 .49-2.03 1.5 1.5 0 0 0-1.27-.7c-.28 0-.55.08-.77.21-2.89 1.78-5.09 4.44-6.24 7.61l-.03.1c-.05.15-.08.31-.08.49 0 .82.66 1.48 1.48 1.48.64 0 1.19-.41 1.39-.98.95-2.62 2.71-4.76 4.97-6.15l.05-.03ZM25.7 25.24a1.477 1.477 0 1 0-2.64 1.33s.99 1.91.99 1.91a1.477 1.477 0 1 0 2.64-1.33s-.99-1.91-.99-1.91m-17.4-.66c-.19-.1-.42-.16-.66-.16-.58 0-1.07.33-1.32.81s-.99 1.97-.99 1.97a1.477 1.477 0 0 0 1.39 1.98c.53 0 .99-.28 1.25-.69s.99-1.97.99-1.97c.09-.18.14-.4.14-.63 0-.57-.32-1.06-.79-1.31Z"] },
|
|
508
|
+
"Translate": { "viewBox": "0 0 32 32", "paths": ["M16.67 19.77c-.19 0-.36-.03-.53-.1-2.21-.72-4-1.66-5.66-2.96-.24-.2-.45-.36-.63-.52-.21.18-.41.34-.63.51-1.64 1.25-3.32 2.14-5.59 2.98-.16.05-.31.08-.46.08-.51 0-.91-.29-1.09-.78a1.2 1.2 0 0 1-.08-.41c0-.46.3-.88.8-1.07 1.51-.51 3.33-1.24 5.39-2.85.02-.02.04-.03.05-.04-1.38-1.6-2.42-3.52-3.1-5.74H2.95c-.55 0-.93-.46-.93-1.11s.38-1.05.93-1.05h5.69V5.09c0-.59.48-1.03 1.14-1.03s1.15.43 1.15 1.03v1.62h5.97c.54 0 .93.45.93 1.05s-.39 1.11-.93 1.11h-2.3c-.68 2.21-1.74 4.14-3.15 5.74.16.13.32.25.48.37 1.38 1 3.16 1.89 5.04 2.48.5.16.81.57.81 1.06 0 .14-.03.29-.09.43-.23.72-.8.8-1.04.8h.02ZM7.46 8.88c.53 1.5 1.35 2.93 2.4 4.17 1.05-1.23 1.86-2.67 2.35-4.17zm21.5 19.05c-.22 0-.42-.06-.62-.21-.18-.14-.31-.32-.41-.55l-1.34-3.15h-6.83l-1.32 3.15c-.1.25-.23.44-.41.56-.16.13-.38.2-.6.2-.34 0-.59-.09-.76-.28-.16-.19-.23-.42-.23-.71 0-.13.02-.24.06-.36l5.67-13.68c.08-.25.22-.45.43-.58.18-.13.38-.19.6-.19.29 0 .5.06.7.21.2.13.34.31.43.55l5.59 13.49q.09.195.09.45c0 .33-.11.6-.33.79a1 1 0 0 1-.72.3h.02Zm-3.26-6.06-2.53-6.01-2.52 6.01z"] },
|
|
509
|
+
"Trophy": { "viewBox": "0 0 32 32", "paths": ["M28.84 6.67h-5.06V4.72c0-.64-.52-1.16-1.16-1.16H9.39c-.64 0-1.16.52-1.16 1.16v1.95H3.16C2.52 6.67 2 7.19 2 7.83v2.72c0 1.75 1.09 3.5 3.01 4.89 1.5 1.08 3.32 1.81 5.3 2.03h.05c.83 1.45 1.94 2.65 3.27 3.56l.04.02v3.5h-2.33c-1.75 0-3.11 1.01-3.11 2.72v.59c0 .32.27.58.59.58H23.2c.32 0 .58-.26.59-.58v-.59c0-1.75-1.4-2.72-3.11-2.72h-2.33v-3.5c1.36-.93 2.48-2.13 3.28-3.53l.03-.05c2.03-.22 3.85-.95 5.38-2.05l-.03.02c1.91-1.37 3.01-3.16 3.01-4.89V7.83c0-.65-.52-1.16-1.15-1.16ZM6.83 12.93c-.88-.5-1.53-1.35-1.75-2.35v-.8h3.15c.04 1.51.27 2.95.65 4.32l-.03-.12c-.77-.27-1.44-.62-2.04-1.06l.02.02Zm20.06-2.37c0 .78-.87 1.75-1.75 2.37-.58.42-1.26.77-1.97 1.02l-.06.02c.36-1.25.58-2.69.62-4.17v-.02h3.12z"] },
|
|
510
|
+
"Undo": { "viewBox": "0 0 32 32", "paths": ["M29.94 20.29c-1.75-5.58-5.96-9.44-11.08-10.08s-10.26 2-13.35 6.5v-5.43c0-.97-.78-1.75-1.75-1.75s-1.75.78-1.75 1.75v9.39c0 .49.21.93.53 1.25.32.31.75.5 1.22.5h9.44c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75H8.26c2.31-3.59 6.32-5.72 10.17-5.25 3.85.46 6.86 3.39 8.16 7.63.24.69.89 1.18 1.66 1.18a1.746 1.746 0 0 0 1.68-2.23s0 .04 0 .04Z"] },
|
|
511
|
+
"Up": { "viewBox": "0 0 32 32", "paths": ["M15.36 8.56c-.11.06-.21.12-.3.19s-.18.11-.18.11h-.08L2.66 20.46c-.4.32-.66.81-.66 1.36a1.741 1.741 0 0 0 3.05 1.15s10.96-10.43 10.96-10.43l10.95 10.43a1.741 1.741 0 1 0 2.4-2.51S17.22 8.89 17.22 8.89h-.08l-.18-.11c-.09-.08-.19-.15-.29-.22-.09-.03-.2-.06-.31-.07-.1-.03-.21-.05-.32-.06-.12 0-.23.03-.34.06h.01c-.12 0-.23.03-.33.07h.01Z"] },
|
|
512
|
+
"UpCarat": { "viewBox": "0 0 32 32", "paths": ["M27.66 24.26c.64 0 1.23-.26 1.65-.69s.68-1.02.68-1.67-.26-1.24-.68-1.67L17.65 8.43c-.42-.43-1-.69-1.65-.69s-1.23.27-1.65.69L2.68 20.23c-.42.43-.68 1.02-.68 1.67s.26 1.24.68 1.67 1 .69 1.65.69z"] },
|
|
513
|
+
"Upgrade": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m7.9 13.27c-.43.59-1.24.72-1.83.29a1.3 1.3 0 0 1-.29-.29L17.47 11v13.37c0 1.07-.29 1.5-1.5 1.5s-1.5-.26-1.5-1.5V11l-4.31 4.31a1.338 1.338 0 0 1-2.12 0c-.59-.38-.76-1.16-.38-1.74.1-.15.23-.28.38-.38l6.87-6.87c.58-.59 1.52-.59 2.11-.01l.01.01 6.87 6.87c.58.43.7 1.24.27 1.81q-.12.15-.27.27"] },
|
|
514
|
+
"Upload": { "viewBox": "0 0 32 32", "paths": ["M25.63 16.69c.37-.48.59-1.08.59-1.74v-.03c0-1.68-1.37-3.05-3.05-3.05h-.18c-.68.03-1.29.29-1.77.7a6.747 6.747 0 0 0-13.43.95v.13c0 .42.05.83.13 1.23v-.04h-.77c-.42 0-.83.06-1.23.16h.03c-2.29.56-3.97 2.6-3.97 5.03s1.67 4.47 3.93 5.03h.04c.36.1.77.16 1.19.16h7.05v-5.66h-2.67a.87.87 0 0 1-.57-1.53s3.92-3.92 3.92-3.92c.16-.16.38-.26.62-.26s.46.1.62.26l3.92 3.92a.87.87 0 0 1-.57 1.53h-2.67v5.67h9.05c2.29-.08 4.12-1.95 4.12-4.26s-1.91-4.26-4.26-4.26h-.14l.03-.02Z"] },
|
|
515
|
+
"VerticalMenu": { "viewBox": "0 0 32 32", "paths": ["M16 2c1.93 0 3.5 1.57 3.5 3.5S17.93 9 16 9s-3.5-1.57-3.5-3.5S14.07 2 16 2m0 10.51c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5 1.57-3.5 3.5-3.5m0 10.5c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5 1.57-3.5 3.5-3.5"] },
|
|
516
|
+
"Video": { "viewBox": "0 0 32 32", "paths": ["m29.13 9.52-6.79 4.54c-.11.07-.17.19-.17.32v3.27c0 .13.06.25.17.32l6.79 4.54c.49.3.87 0 .87-.53V10c0-.59-.38-.81-.87-.47ZM18 7.39H3.95A2.084 2.084 0 0 0 2 9.55v12.9c-.04 1.13.83 2.08 1.95 2.15H18c1.15-.04 2.05-.99 2.01-2.15V9.55c.04-1.16-.87-2.11-2.01-2.16"] },
|
|
517
|
+
"VideoFile": { "viewBox": "0 0 32 32", "paths": ["M30.03 10.54a2 2 0 0 0-.12-.35s0-.07 0-.07c-.07-.12-.15-.21-.24-.3L22.15 2.3c-.08-.07-.18-.14-.29-.19s-.08 0-.08 0c-.08-.04-.17-.07-.27-.1s-9.72 0-9.72 0a4.22 4.22 0 0 0-4.22 4.12v3.42c-3.23.68-5.63 3.5-5.63 6.89s2.39 6.21 5.58 6.88h.05v2.94c0 2.21 1.74 3.75 4.22 3.75h14.06c2.48 0 4.22-1.54 4.22-3.75V10.54h-.03ZM6.62 12.93l.98.54 5.63 3.24-2.85 1.63-2.81 1.63-.98.54.04-7.58Zm20.63 13.35c0 .77-.76.98-1.41.98H11.78c-.64 0-1.41-.17-1.41-.98v-2.93c3.23-.68 5.63-3.5 5.63-6.89s-2.39-6.21-5.58-6.88h-.05V6.12c0-.78.63-1.41 1.41-1.41h7.97v5.16c0 1.29 1.05 2.34 2.34 2.34h5.16v14.06Z"] },
|
|
518
|
+
"VideoPlayerSubtitles": { "viewBox": "0 0 32 32", "paths": ["M28.91 4.63H3.09c-.6 0-1.09.49-1.09 1.09v15.31c0 .6.49 1.09 1.09 1.09h6.34v4.86c0 .32.38.5.63.3l6.3-5.15H28.9c.6 0 1.09-.49 1.09-1.09V5.72c0-.6-.49-1.09-1.09-1.09ZM4.44 9.08c0-.19.16-.35.35-.35h7.18c.19 0 .35.16.35.35v1.49c0 .19-.16.35-.35.35H4.79c-.19 0-.35-.16-.35-.35zm13.59 6.93c0 .19-.16.35-.35.35H4.79c-.19 0-.35-.16-.35-.35v-1.49c0-.19.16-.35.35-.35h12.89c.19 0 .35.16.35.35zm9.53 0c0 .19-.16.35-.35.35h-7.17c-.19 0-.35-.16-.35-.35v-1.49c0-.19.16-.35.35-.35h7.18c.19 0 .35.16.35.35v1.49Zm0-5.44c0 .19-.16.35-.35.35H14.32c-.19 0-.35-.16-.35-.35V9.08c0-.19.16-.35.35-.35h12.89c.19 0 .35.16.35.35z"] },
|
|
519
|
+
"View": { "viewBox": "0 0 32 32", "paths": ["M16 12.35c2.02 0 3.65 1.63 3.65 3.65s-1.63 3.65-3.65 3.65-3.65-1.63-3.65-3.65 1.63-3.65 3.65-3.65m13.8 2.73c-1.15-2.4-5.76-7.85-13.73-7.85-6.18 0-11.18 3.18-13.87 7.89 0 0-.2.35-.2.87 0 .42.16.8.16.8 3.98 6.48 9.99 7.97 14.05 7.97 5.72 0 10.89-3.18 13.57-7.9 0 0 .22-.44.22-.85s-.14-.8-.2-.93m-3.6.94c-2.23 3.19-5.99 5.23-10.01 5.23-4.46 0-6.42-1.51-6.42-1.51-1.86-1.1-3.96-3.67-3.99-3.69s0-.06 0-.06c2.23-3.2 5.87-5.25 10.01-5.25h.19c5.43 0 7.24 2.08 10.06 5.05.09.1.16.15.16.17.02.03 0 .06 0 .06"] },
|
|
520
|
+
"ViewDetails": { "viewBox": "0 0 32 32", "paths": ["m29.71 28.56-4.08-4.23a5.71 5.71 0 0 0-4.62-9.05c-3.14 0-5.7 2.56-5.7 5.7s2.55 5.7 5.7 5.7c1.22 0 2.37-.38 3.35-1.08l4.14 4.16c.17.15.38.23.61.23.52.02.91-.33.89-.81 0-.22-.16-.48-.29-.62m-8.68-3.68c-2.14 0-3.87-1.75-3.87-3.88s1.74-3.88 3.88-3.88 3.88 1.75 3.88 3.89-1.75 3.87-3.89 3.87m-7.68.23H5.94c-.93 0-1.69-.77-1.69-1.7V5.95c0-.93.74-1.7 1.69-1.71h13.71c.93 0 1.69.77 1.69 1.7v6.44c0 .54.59.92 1.13.92.73 0 1.11-.46 1.11-.89V5.95c0-2.17-1.76-3.93-3.93-3.94H5.94C3.76 2.01 2 3.77 2 5.95v17.5c0 2.18 1.76 3.94 3.94 3.94h7.41c.79 0 1.33-.34 1.33-1.12 0-.87-.61-1.16-1.33-1.16m6.28-17.3c0-.49-.4-.89-.89-.89H6.85c-.49 0-.89.4-.89.89s.4.89.89.89h11.9c.49 0 .89-.4.89-.89Zm-3.04 5.32c0-.49-.4-.89-.89-.89H6.85c-.49 0-.89.4-.89.89s.4.89.89.89h8.85c.49 0 .89-.4.89-.89m-9.75 4.44c-.49 0-.89.4-.89.89s.4.89.89.89h6.43c.49 0 .89-.4.89-.89s-.4-.89-.89-.89z"] },
|
|
521
|
+
"Warning": { "viewBox": "0 0 32 32", "paths": ["M5.47 28.59h21.07A3.47 3.47 0 0 0 30 25.12c0-.64-.17-1.23-.47-1.75v.02L19 5.14c-.61-1.04-1.73-1.73-3-1.73s-2.39.69-2.99 1.71v.02L2.46 23.39a3.476 3.476 0 0 0 3 5.2ZM16 21.04c1.1 0 2 .89 2 2s-.89 2-2 2-2-.89-2-2a2 2 0 0 1 2-2m-2-9.92s-.01-.1-.01-.15c0-.55.45-1 1-1h2.02c.55 0 1 .45 1 1 0 .05 0 .1-.01.16s-1 6.99-1 6.99c0 .55-.45 1-1 1s-1-.45-1-1z"] },
|
|
522
|
+
"Website": { "viewBox": "0 0 32 32", "paths": ["M25.8 4.8H6.2A4.2 4.2 0 0 0 2 9v14a4.2 4.2 0 0 0 4.2 4.2h19.6A4.2 4.2 0 0 0 30 23V9a4.2 4.2 0 0 0-4.2-4.2M12.27 8.61v-.15c0-.47.38-.86.86-.86h.15c.47 0 .86.38.86.86v.15c0 .47-.38.86-.86.86h-.15a.86.86 0 0 1-.86-.86M9.54 7.6c.47 0 .86.38.86.86v.15c0 .47-.38.86-.86.86h-.15a.86.86 0 0 1-.86-.86v-.15c0-.47.38-.86.86-.86zM4.8 8.74v-.29c0-.47.38-.86.86-.86h.29c.41.06.73.41.73.84v.17c0 .47-.38.86-.86.86h-.17c-.43 0-.78-.31-.84-.72ZM27.2 23c0 .77-.63 1.4-1.4 1.4H6.2c-.77 0-1.4-.63-1.4-1.4V12.27h22.4z"] },
|
|
523
|
+
"Workflows": { "viewBox": "0 0 32 32", "paths": ["M29.24 22.68h-2.13v-4.36c0-1.33-1.08-2.41-2.42-2.42h-7.27v-3.87h.73c1.2 0 2.18-.98 2.18-2.18V5.5c0-1.2-.98-2.18-2.18-2.18h-4.38c-1.2 0-2.18.98-2.18 2.18v4.35c0 1.2.98 2.18 2.18 2.18h.72v3.87H7.25c-1.33 0-2.41 1.08-2.42 2.42v4.36H2.77c-.43.01-.78.37-.78.8 0 .15.04.28.11.4s3.58 4.41 3.58 4.41c.11.24.36.41.64.41s.52-.16.64-.4 3.58-4.41 3.58-4.41a.804.804 0 0 0-.63-1.19H7.74v-3.87H24.2v3.87h-2.1a.807.807 0 0 0-.65 1.19s3.58 4.41 3.58 4.41c.12.24.36.41.64.41s.52-.16.64-.4 3.58-4.41 3.58-4.41a.802.802 0 0 0-.66-1.19ZM14.52 9.12v-2.9h2.9v2.9z"] },
|
|
524
|
+
"XCircle": { "viewBox": "0 0 32 32", "paths": ["M20.43 21.57c-.29 0-.58-.11-.81-.33l-9.14-9.14a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0l9.14 9.14a1.14 1.14 0 0 1-.81 1.95", "M11.29 21.57c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l9.14-9.14a1.14 1.14 0 0 1 1.62 0c.45.45.45 1.17 0 1.62l-9.14 9.14c-.22.22-.52.33-.81.33", "M15.86 31.86c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14"] },
|
|
525
|
+
"ZoomIn": { "viewBox": "0 0 32 32", "paths": ["M14.42 26.75c2.85 0 5.47-.97 7.55-2.6l-.03.02 5.29 5.34a1.619 1.619 0 0 0 2.76-1.15c0-.45-.18-.85-.47-1.14l-5.33-5.33c1.59-2.06 2.55-4.68 2.55-7.52C26.74 7.54 21.2 2 14.37 2S2 7.55 2 14.38s5.54 12.37 12.37 12.37h.05m0-21.54c5.06 0 9.16 4.1 9.16 9.16s-4.1 9.16-9.16 9.16-9.16-4.1-9.16-9.16 4.1-9.15 9.16-9.16m-4.31 10.76h2.69v2.69c0 .89.72 1.62 1.62 1.62s1.62-.72 1.62-1.62v-2.69h2.69c.89 0 1.62-.72 1.62-1.62s-.72-1.62-1.62-1.62h-2.68V9.99c0-.89-.72-1.62-1.62-1.62s-1.62.72-1.62 1.62v2.69h-2.7c-.89 0-1.62.72-1.62 1.62s.72 1.62 1.62 1.62z"] },
|
|
526
|
+
"ZoomOut": { "viewBox": "0 0 32 32", "paths": ["M14.42 26.75c2.85 0 5.47-.97 7.56-2.6l-.03.02 5.28 5.34a1.619 1.619 0 0 0 2.76-1.15c0-.45-.18-.85-.47-1.14l-5.33-5.33c1.59-2.06 2.55-4.68 2.55-7.52C26.74 7.54 21.2 2 14.37 2S2 7.55 2 14.38s5.54 12.37 12.37 12.37h.05m0-21.55c5.06 0 9.16 4.1 9.16 9.16s-4.1 9.16-9.16 9.16-9.16-4.1-9.16-9.16c.01-5.05 4.11-9.14 9.16-9.15Zm-4.31 10.78h8.62c.89 0 1.62-.72 1.62-1.62s-.72-1.62-1.62-1.62h-8.62c-.89 0-1.62.72-1.62 1.62s.72 1.62 1.62 1.62"] }
|
|
527
|
+
};
|
|
528
|
+
|
|
529
|
+
// src/common-components/Icon.js
|
|
530
|
+
var NATIVE_ICON_NAMES = /* @__PURE__ */ new Set([
|
|
531
|
+
"add",
|
|
532
|
+
"appointment",
|
|
533
|
+
"approvals",
|
|
534
|
+
"artificialIntelligence",
|
|
535
|
+
"artificialIntelligenceEnhanced",
|
|
536
|
+
"attach",
|
|
537
|
+
"bank",
|
|
538
|
+
"block",
|
|
539
|
+
"book",
|
|
540
|
+
"bulb",
|
|
541
|
+
"calling",
|
|
542
|
+
"callingHangup",
|
|
543
|
+
"callingMade",
|
|
544
|
+
"callingMissed",
|
|
545
|
+
"callingVoicemail",
|
|
546
|
+
"callTranscript",
|
|
547
|
+
"campaigns",
|
|
548
|
+
"cap",
|
|
549
|
+
"checkCircle",
|
|
550
|
+
"circleFilled",
|
|
551
|
+
"circleHollow",
|
|
552
|
+
"clock",
|
|
553
|
+
"comment",
|
|
554
|
+
"contact",
|
|
555
|
+
"copy",
|
|
556
|
+
"crm",
|
|
557
|
+
"dataSync",
|
|
558
|
+
"date",
|
|
559
|
+
"delay",
|
|
560
|
+
"delete",
|
|
561
|
+
"description",
|
|
562
|
+
"developerProjects",
|
|
563
|
+
"documents",
|
|
564
|
+
"downCarat",
|
|
565
|
+
"download",
|
|
566
|
+
"edit",
|
|
567
|
+
"ellipses",
|
|
568
|
+
"email",
|
|
569
|
+
"emailOpen",
|
|
570
|
+
"emailThreadedReplies",
|
|
571
|
+
"enrichment",
|
|
572
|
+
"enroll",
|
|
573
|
+
"exclamation",
|
|
574
|
+
"exclamationCircle",
|
|
575
|
+
"facebook",
|
|
576
|
+
"faceHappy",
|
|
577
|
+
"faceHappyFilled",
|
|
578
|
+
"faceNeutral",
|
|
579
|
+
"faceNeutralFilled",
|
|
580
|
+
"faceSad",
|
|
581
|
+
"faceSadFilled",
|
|
582
|
+
"favoriteHollow",
|
|
583
|
+
"file",
|
|
584
|
+
"filledXCircleIcon",
|
|
585
|
+
"filter",
|
|
586
|
+
"flame",
|
|
587
|
+
"folder",
|
|
588
|
+
"folderOpen",
|
|
589
|
+
"forward",
|
|
590
|
+
"gauge",
|
|
591
|
+
"generateChart",
|
|
592
|
+
"gift",
|
|
593
|
+
"globe",
|
|
594
|
+
"globeLine",
|
|
595
|
+
"goal",
|
|
596
|
+
"googlePlus",
|
|
597
|
+
"guidedActions",
|
|
598
|
+
"hash",
|
|
599
|
+
"hide",
|
|
600
|
+
"home",
|
|
601
|
+
"hubDB",
|
|
602
|
+
"image",
|
|
603
|
+
"imageGallery",
|
|
604
|
+
"inbox",
|
|
605
|
+
"info",
|
|
606
|
+
"infoNoCircle",
|
|
607
|
+
"insertVideo",
|
|
608
|
+
"instagram",
|
|
609
|
+
"integrations",
|
|
610
|
+
"invoice",
|
|
611
|
+
"key",
|
|
612
|
+
"language",
|
|
613
|
+
"left",
|
|
614
|
+
"lessCircle",
|
|
615
|
+
"lesson",
|
|
616
|
+
"light",
|
|
617
|
+
"link",
|
|
618
|
+
"linkedin",
|
|
619
|
+
"listView",
|
|
620
|
+
"location",
|
|
621
|
+
"locked",
|
|
622
|
+
"mention",
|
|
623
|
+
"messages",
|
|
624
|
+
"mobile",
|
|
625
|
+
"moreCircle",
|
|
626
|
+
"notEditable",
|
|
627
|
+
"notification",
|
|
628
|
+
"notificationOff",
|
|
629
|
+
"objectAssociations",
|
|
630
|
+
"objectAssociationsManyToMany",
|
|
631
|
+
"objectAssociationsManyToOne",
|
|
632
|
+
"office365",
|
|
633
|
+
"order",
|
|
634
|
+
"paymentSubscriptions",
|
|
635
|
+
"pin",
|
|
636
|
+
"pinterest",
|
|
637
|
+
"powerPointFile",
|
|
638
|
+
"presentation",
|
|
639
|
+
"product",
|
|
640
|
+
"publish",
|
|
641
|
+
"question",
|
|
642
|
+
"questionAnswer",
|
|
643
|
+
"questionCircle",
|
|
644
|
+
"quickbooks",
|
|
645
|
+
"quote",
|
|
646
|
+
"readMore",
|
|
647
|
+
"readOnlyView",
|
|
648
|
+
"realEstateListing",
|
|
649
|
+
"recentlySelected",
|
|
650
|
+
"record",
|
|
651
|
+
"redo",
|
|
652
|
+
"refresh",
|
|
653
|
+
"registration",
|
|
654
|
+
"remove",
|
|
655
|
+
"replace",
|
|
656
|
+
"reports",
|
|
657
|
+
"right",
|
|
658
|
+
"robot",
|
|
659
|
+
"rotate",
|
|
660
|
+
"rss",
|
|
661
|
+
"salesQuote",
|
|
662
|
+
"salesTemplates",
|
|
663
|
+
"save",
|
|
664
|
+
"search",
|
|
665
|
+
"send",
|
|
666
|
+
"sequences",
|
|
667
|
+
"settings",
|
|
668
|
+
"shoppingCart",
|
|
669
|
+
"signal",
|
|
670
|
+
"signalPoor",
|
|
671
|
+
"signature",
|
|
672
|
+
"snooze",
|
|
673
|
+
"sortAlpAsc",
|
|
674
|
+
"sortAlpDesc",
|
|
675
|
+
"sortAmtAsc",
|
|
676
|
+
"sortAmtDesc",
|
|
677
|
+
"sortNumAsc",
|
|
678
|
+
"sortNumDesc",
|
|
679
|
+
"sortTableAsc",
|
|
680
|
+
"sortTableDesc",
|
|
681
|
+
"spellCheck",
|
|
682
|
+
"sprocket",
|
|
683
|
+
"star",
|
|
684
|
+
"stopRecord",
|
|
685
|
+
"strike",
|
|
686
|
+
"styles",
|
|
687
|
+
"success",
|
|
688
|
+
"tablet",
|
|
689
|
+
"tag",
|
|
690
|
+
"tasks",
|
|
691
|
+
"test",
|
|
692
|
+
"text",
|
|
693
|
+
"textBodyExpanded",
|
|
694
|
+
"textColor",
|
|
695
|
+
"textDataType",
|
|
696
|
+
"textSnippet",
|
|
697
|
+
"thumbsDown",
|
|
698
|
+
"thumbsUp",
|
|
699
|
+
"ticket",
|
|
700
|
+
"translate",
|
|
701
|
+
"trophy",
|
|
702
|
+
"twitter",
|
|
703
|
+
"undo",
|
|
704
|
+
"upCarat",
|
|
705
|
+
"upload",
|
|
706
|
+
"video",
|
|
707
|
+
"videoFile",
|
|
708
|
+
"videoPlayerSubtitles",
|
|
709
|
+
"view",
|
|
710
|
+
"viewDetails",
|
|
711
|
+
"warning",
|
|
712
|
+
"website",
|
|
713
|
+
"workflows",
|
|
714
|
+
"x",
|
|
715
|
+
"xCircle",
|
|
716
|
+
"xing",
|
|
717
|
+
"youtube",
|
|
718
|
+
"youtubePlay",
|
|
719
|
+
"zoomIn",
|
|
720
|
+
"zoomOut"
|
|
721
|
+
]);
|
|
722
|
+
var NATIVE_COLORS = /* @__PURE__ */ new Set(["inherit", "alert", "warning", "success"]);
|
|
723
|
+
var NATIVE_SIZE_TOKENS = {
|
|
724
|
+
sm: "sm",
|
|
725
|
+
small: "sm",
|
|
726
|
+
md: "md",
|
|
727
|
+
medium: "md",
|
|
728
|
+
lg: "lg",
|
|
729
|
+
large: "lg"
|
|
730
|
+
};
|
|
731
|
+
var SEMANTIC_HEX = {
|
|
732
|
+
inherit: HS_TEXT_COLOR,
|
|
733
|
+
alert: "#F2545B",
|
|
734
|
+
warning: "#D39913",
|
|
735
|
+
success: "#00BDA5"
|
|
736
|
+
};
|
|
737
|
+
var SIZE_TOKENS = {
|
|
738
|
+
xs: 12,
|
|
739
|
+
"extra-small": 12,
|
|
740
|
+
sm: 14,
|
|
741
|
+
"small": 14,
|
|
742
|
+
md: 16,
|
|
743
|
+
"med": 16,
|
|
744
|
+
"medium": 16,
|
|
745
|
+
lg: 20,
|
|
746
|
+
"large": 20,
|
|
747
|
+
xl: 24,
|
|
748
|
+
"extra-large": 24
|
|
749
|
+
};
|
|
750
|
+
var resolveSize = (size) => {
|
|
751
|
+
if (typeof size === "number") return size;
|
|
752
|
+
if (typeof size === "string" && SIZE_TOKENS[size] != null) return SIZE_TOKENS[size];
|
|
753
|
+
return 16;
|
|
754
|
+
};
|
|
755
|
+
var escapeXmlAttr = (s) => String(s).replace(/&/g, "&").replace(/"/g, """).replace(/</g, "<").replace(/>/g, ">");
|
|
756
|
+
var PLUS_24 = "M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z";
|
|
757
|
+
var CURATED_ICONS = {
|
|
758
|
+
checkBare: { paths: ["M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"] },
|
|
759
|
+
plusBare: { paths: [PLUS_24] },
|
|
760
|
+
// Close = a plus rotated 45° → a clean X (reuses transform support, no new
|
|
761
|
+
// path data to hand-author/get-wrong).
|
|
762
|
+
Close: { paths: [PLUS_24], transform: "rotate(45 12 12)" },
|
|
763
|
+
// Universal media-transport glyphs, authored at 32×32 to match the scraped
|
|
764
|
+
// canvas so they sit at the same optical size as the rest of the set.
|
|
765
|
+
Play: { viewBox: "0 0 32 32", paths: ["M9 6v20l17-10z"] },
|
|
766
|
+
Pause: { viewBox: "0 0 32 32", paths: ["M10 6h4v20h-4z M18 6h4v20h-4z"] },
|
|
767
|
+
Stop: { viewBox: "0 0 32 32", paths: ["M8 8h16v16H8z"] },
|
|
768
|
+
// Hand-authored to match HubSpot's filled/rounded weight (verified visually
|
|
769
|
+
// against the scraped set) for genuine gaps the scrape didn't cover.
|
|
770
|
+
Unlocked: {
|
|
771
|
+
viewBox: "0 0 32 32",
|
|
772
|
+
paths: [
|
|
773
|
+
"M9.5 14v-3.4c0-3.57 2.9-6.46 6.46-6.46 2.66 0 5.02 1.64 5.97 4.07a1.6 1.6 0 1 1-2.98 1.16 3.23 3.23 0 0 0-2.99-2.03c-1.78 0-3.23 1.45-3.23 3.23V14z",
|
|
774
|
+
{ d: "M6.3 14h19.4a3.2 3.2 0 0 1 3.2 3.2v8.6a3.2 3.2 0 0 1-3.2 3.2H6.3a3.2 3.2 0 0 1-3.2-3.2v-8.6A3.2 3.2 0 0 1 6.3 14Zm9.7 4.4a2.1 2.1 0 0 0-1.05 3.92V25a1.05 1.05 0 0 0 2.1 0v-2.68A2.1 2.1 0 0 0 16 18.4Z", fillRule: "evenodd" }
|
|
775
|
+
]
|
|
776
|
+
},
|
|
777
|
+
Print: {
|
|
778
|
+
viewBox: "0 0 32 32",
|
|
779
|
+
paths: [
|
|
780
|
+
"M9 4h14a1 1 0 0 1 1 1v6H8V5a1 1 0 0 1 1-1z",
|
|
781
|
+
{ d: "M5 12h22a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-3v-3H8v3H5a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2zm18 3.2a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4z", fillRule: "evenodd" },
|
|
782
|
+
"M10 21h12v6a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1z"
|
|
783
|
+
]
|
|
784
|
+
},
|
|
785
|
+
Shrink: {
|
|
786
|
+
viewBox: "0 0 32 32",
|
|
787
|
+
paths: [
|
|
788
|
+
"M14.05 4.1c1.08 0 1.95.87 1.95 1.95v8a1.95 1.95 0 0 1-1.95 1.95h-8a1.95 1.95 0 1 1 0-3.9h3.28L3.17 5.93A1.95 1.95 0 0 1 5.93 3.17l6.17 6.17V6.05c0-1.08.87-1.95 1.95-1.95Z",
|
|
789
|
+
"M17.95 27.9a1.95 1.95 0 0 1-1.95-1.95v-8a1.95 1.95 0 0 1 1.95-1.95h8a1.95 1.95 0 1 1 0 3.9h-3.28l6.18 6.17a1.95 1.95 0 0 1-2.76 2.76l-6.17-6.17v3.29c0 1.08-.87 1.95-1.95 1.95Z"
|
|
790
|
+
]
|
|
791
|
+
},
|
|
792
|
+
Heart: { viewBox: "0 0 32 32", paths: ["M16 26.5C9 21 5 17 5 12.4 5 9.1 7.6 6.5 11 6.5c2 0 3.8 1 5 2.6 1.2-1.6 3-2.6 5-2.6 3.4 0 6 2.6 6 5.9 0 4.6-4 8.6-11 14.1Z"] },
|
|
793
|
+
CircleFilled: { viewBox: "0 0 32 32", paths: ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2z"] },
|
|
794
|
+
// Dark = crescent moon, pairs with the scraped Light (sun) for theme toggles.
|
|
795
|
+
Dark: { viewBox: "0 0 32 32", paths: ["M19 3.5A12 12 0 1 0 28.5 19 9.6 9.6 0 0 1 19 3.5Z"] },
|
|
796
|
+
Export: { viewBox: "0 0 32 32", paths: ["M16 3l5 5h-3.5v7h-3V8H11z", "M6 16h4v6h12v-6h4v8a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2z"] },
|
|
797
|
+
Import: { viewBox: "0 0 32 32", paths: ["M16 16l5-5h-3.5V4h-3v7H11z", "M6 17h4v5h12v-5h4v7a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2z"] },
|
|
798
|
+
// Backward = horizontal mirror of the scraped Forward arrow (x' = 32 - x).
|
|
799
|
+
// Derived so it stays in sync if Forward is ever re-scraped.
|
|
800
|
+
...GENERATED_ICONS.Forward ? { Backward: { ...GENERATED_ICONS.Forward, transform: "translate(32 0) scale(-1 1)" } } : {}
|
|
801
|
+
};
|
|
802
|
+
var ICONS = { ...GENERATED_ICONS, ...CURATED_ICONS };
|
|
803
|
+
var ICON_NAME_ALIASES = {
|
|
804
|
+
call: "calling",
|
|
805
|
+
phone: "calling",
|
|
806
|
+
meeting: "appointment",
|
|
807
|
+
note: "comment",
|
|
808
|
+
notes: "comment",
|
|
809
|
+
task: "tasks",
|
|
810
|
+
open: "record",
|
|
811
|
+
openRecord: "record",
|
|
812
|
+
office: "record",
|
|
813
|
+
company: "record",
|
|
814
|
+
external: "link",
|
|
815
|
+
externalLink: "link",
|
|
816
|
+
down: "Down",
|
|
817
|
+
up: "Up",
|
|
818
|
+
pencil: "edit",
|
|
819
|
+
trash: "delete"
|
|
820
|
+
};
|
|
821
|
+
var NATIVE_ICON_NAME_ALIASES = new Map([
|
|
822
|
+
...[...NATIVE_ICON_NAMES].map((nativeName) => [nativeName.toLowerCase(), nativeName]),
|
|
823
|
+
...Object.entries(ICON_NAME_ALIASES).map(([alias, nativeName]) => [alias.toLowerCase(), nativeName])
|
|
824
|
+
]);
|
|
825
|
+
var resolveIconName = (name) => {
|
|
826
|
+
if (typeof name !== "string") return name;
|
|
827
|
+
if (NATIVE_ICON_NAMES.has(name)) return name;
|
|
828
|
+
if (ICONS[name]) return name;
|
|
829
|
+
const nativeOrAlias = NATIVE_ICON_NAME_ALIASES.get(name.toLowerCase());
|
|
830
|
+
if (nativeOrAlias) return nativeOrAlias;
|
|
831
|
+
return name;
|
|
832
|
+
};
|
|
833
|
+
var canUseNative = (name, color, size) => NATIVE_ICON_NAMES.has(resolveIconName(name)) && (color == null || NATIVE_COLORS.has(color)) && (size == null || typeof size === "string" && NATIVE_SIZE_TOKENS[size] != null);
|
|
834
|
+
var makeIconDataUri = (nameOrEntry, opts = {}) => {
|
|
835
|
+
const entry = nameOrEntry && typeof nameOrEntry === "object" ? nameOrEntry : ICONS[nameOrEntry];
|
|
836
|
+
if (!entry || !entry.paths) return null;
|
|
837
|
+
const size = resolveSize(opts.size);
|
|
838
|
+
const rawColor = opts.color;
|
|
839
|
+
const color = rawColor && SEMANTIC_HEX[rawColor] || rawColor || HS_TEXT_COLOR;
|
|
840
|
+
const viewBox = entry.viewBox ?? "0 0 24 24";
|
|
841
|
+
const body = entry.paths.map((p) => {
|
|
842
|
+
const d = typeof p === "string" ? p : p.d;
|
|
843
|
+
const fill = typeof p === "object" && p.fill || color;
|
|
844
|
+
const fillRule = typeof p === "object" && p.fillRule ? ` fill-rule="${p.fillRule}"` : "";
|
|
845
|
+
return `<path d="${escapeXmlAttr(d)}" fill="${fill}"${fillRule} />`;
|
|
846
|
+
}).join("");
|
|
847
|
+
const inner = entry.transform ? `<g transform="${escapeXmlAttr(entry.transform)}">${body}</g>` : body;
|
|
848
|
+
const svg = `<svg xmlns="http://www.w3.org/2000/svg" width="${size}" height="${size}" viewBox="${viewBox}">` + inner + `</svg>`;
|
|
849
|
+
return {
|
|
850
|
+
src: `data:image/svg+xml;utf8,${encodeURIComponent(svg)}`,
|
|
851
|
+
width: size,
|
|
852
|
+
height: size
|
|
853
|
+
};
|
|
854
|
+
};
|
|
855
|
+
var ICON_NAMES = Object.keys(ICONS);
|
|
856
|
+
var NATIVE_ICON_NAME_LIST = [...NATIVE_ICON_NAMES].sort(
|
|
857
|
+
(a, b) => a.localeCompare(b)
|
|
858
|
+
);
|
|
859
|
+
var Icon = ({ name, color, size, screenReaderText, onClick, href }) => {
|
|
860
|
+
const resolvedName = resolveIconName(name);
|
|
861
|
+
const renderNativeIcon = () => React3.createElement(HsIcon, {
|
|
862
|
+
name: resolvedName,
|
|
863
|
+
...color != null ? { color } : {},
|
|
864
|
+
...size != null ? { size: NATIVE_SIZE_TOKENS[size] } : {},
|
|
865
|
+
...screenReaderText != null ? { screenReaderText } : {}
|
|
866
|
+
});
|
|
867
|
+
const renderNative = () => {
|
|
868
|
+
const icon = renderNativeIcon();
|
|
869
|
+
if (onClick == null && href == null) return icon;
|
|
870
|
+
return React3.createElement(
|
|
871
|
+
Link,
|
|
872
|
+
{
|
|
873
|
+
...onClick != null ? { onClick } : {},
|
|
874
|
+
...href != null ? { href } : {}
|
|
875
|
+
},
|
|
876
|
+
icon
|
|
877
|
+
);
|
|
878
|
+
};
|
|
879
|
+
if (canUseNative(name, color, size)) return renderNative();
|
|
880
|
+
const result = makeIconDataUri(resolvedName, { size, color });
|
|
881
|
+
if (!result) {
|
|
882
|
+
return canUseNative(name, color, size) ? renderNative() : null;
|
|
883
|
+
}
|
|
884
|
+
return React3.createElement(Image, {
|
|
885
|
+
src: result.src,
|
|
886
|
+
width: result.width,
|
|
887
|
+
height: result.height,
|
|
888
|
+
alt: screenReaderText ?? name,
|
|
889
|
+
...onClick != null ? { onClick } : {},
|
|
890
|
+
...href != null ? { href } : {}
|
|
891
|
+
});
|
|
892
|
+
};
|
|
893
|
+
|
|
894
|
+
// src/common-components/CollectionFilterControl.js
|
|
895
|
+
var h3 = React4.createElement;
|
|
896
|
+
var DEFAULT_LABELS = {
|
|
897
|
+
all: "All",
|
|
898
|
+
dateFrom: "From",
|
|
899
|
+
dateTo: "To"
|
|
900
|
+
};
|
|
901
|
+
var CollectionFilterControl = ({
|
|
902
|
+
filter,
|
|
903
|
+
value,
|
|
904
|
+
onChange,
|
|
905
|
+
namePrefix = "collection-filter",
|
|
906
|
+
labels: labelOverrides,
|
|
907
|
+
selectVariant = "transparent",
|
|
908
|
+
includeAll,
|
|
909
|
+
allValue
|
|
910
|
+
}) => {
|
|
911
|
+
if (!filter) return null;
|
|
912
|
+
const labels = { ...DEFAULT_LABELS, ...labelOverrides || {} };
|
|
913
|
+
const type = filter.type || "select";
|
|
914
|
+
const name = filter.name;
|
|
915
|
+
const controlName = `${namePrefix}-${name}`;
|
|
916
|
+
const handleChange = (next) => onChange == null ? void 0 : onChange(name, next);
|
|
917
|
+
if (type === "multiselect") {
|
|
918
|
+
return h3(MultiSelect, {
|
|
919
|
+
key: name,
|
|
920
|
+
name: controlName,
|
|
921
|
+
placeholder: filter.placeholder || filter.label || labels.all,
|
|
922
|
+
value: Array.isArray(value) ? value : [],
|
|
923
|
+
options: filter.options || [],
|
|
924
|
+
onChange: handleChange
|
|
925
|
+
});
|
|
926
|
+
}
|
|
927
|
+
if (type === "dateRange") {
|
|
928
|
+
const rangeValue = value || { from: null, to: null };
|
|
929
|
+
return h3(
|
|
930
|
+
Flex2,
|
|
931
|
+
{ key: name, direction: "row", align: "center", gap: "xs" },
|
|
932
|
+
h3(DateInput, {
|
|
933
|
+
name: `${controlName}-from`,
|
|
934
|
+
placeholder: filter.fromLabel ?? labels.dateFrom,
|
|
935
|
+
format: "medium",
|
|
936
|
+
value: rangeValue.from ?? null,
|
|
937
|
+
onChange: (next) => handleChange({ ...rangeValue, from: next })
|
|
938
|
+
}),
|
|
939
|
+
h3(Icon, { name: "right", size: "sm" }),
|
|
940
|
+
h3(DateInput, {
|
|
941
|
+
name: `${controlName}-to`,
|
|
942
|
+
placeholder: filter.toLabel ?? labels.dateTo,
|
|
943
|
+
format: "medium",
|
|
944
|
+
value: rangeValue.to ?? null,
|
|
945
|
+
onChange: (next) => handleChange({ ...rangeValue, to: next })
|
|
946
|
+
})
|
|
947
|
+
);
|
|
948
|
+
}
|
|
949
|
+
const resolvedIncludeAll = includeAll ?? filter.includeAll ?? true;
|
|
950
|
+
const resolvedAllValue = filter.emptyValue ?? allValue ?? filter.allValue ?? "";
|
|
951
|
+
const allLabel = filter.allLabel ?? filter.placeholder ?? filter.label ?? labels.all;
|
|
952
|
+
const options = resolvedIncludeAll ? [{ label: allLabel, value: resolvedAllValue }, ...filter.options || []] : filter.options || [];
|
|
953
|
+
return h3(Select2, {
|
|
954
|
+
key: name,
|
|
955
|
+
name: controlName,
|
|
956
|
+
variant: selectVariant,
|
|
957
|
+
placeholder: filter.placeholder || filter.label || labels.all,
|
|
958
|
+
value: value ?? resolvedAllValue,
|
|
959
|
+
options,
|
|
960
|
+
onChange: handleChange
|
|
961
|
+
});
|
|
962
|
+
};
|
|
963
|
+
|
|
964
|
+
// src/common-components/CollectionToolbar.js
|
|
965
|
+
var h4 = React5.createElement;
|
|
966
|
+
var DEFAULT_LABELS2 = {
|
|
967
|
+
filtersButton: "Filters",
|
|
968
|
+
clearAll: "Clear all"
|
|
969
|
+
};
|
|
970
|
+
var isVisible = (config) => config && (config.visible ?? config.show ?? true);
|
|
971
|
+
var CollectionToolbar = ({
|
|
972
|
+
search,
|
|
973
|
+
filters,
|
|
974
|
+
chips,
|
|
975
|
+
right,
|
|
976
|
+
footer,
|
|
977
|
+
labels: labelOverrides,
|
|
978
|
+
leftFlex = 3,
|
|
979
|
+
rightFlex = 1,
|
|
980
|
+
rightAlignSelf = "end",
|
|
981
|
+
gap = "sm",
|
|
982
|
+
idPrefix,
|
|
983
|
+
uniqueNames = true
|
|
984
|
+
}) => {
|
|
985
|
+
const [showMoreFilters, setShowMoreFilters] = useState(false);
|
|
986
|
+
const reactId = useId2();
|
|
987
|
+
const instanceId = String(idPrefix || reactId).replace(/[^a-zA-Z0-9_-]/g, "");
|
|
988
|
+
const nameWithInstance = (name) => uniqueNames && name ? `${name}-${instanceId}` : name;
|
|
989
|
+
const labels = { ...DEFAULT_LABELS2, ...labelOverrides || {} };
|
|
990
|
+
const filterItems = Array.isArray(filters == null ? void 0 : filters.items) ? filters.items : [];
|
|
991
|
+
const filterValues = (filters == null ? void 0 : filters.values) || {};
|
|
992
|
+
const filterInlineLimit = (filters == null ? void 0 : filters.inlineLimit) ?? filterItems.length;
|
|
993
|
+
const inlineFilters = filterItems.slice(0, filterInlineLimit);
|
|
994
|
+
const overflowFilters = filterItems.slice(filterInlineLimit);
|
|
995
|
+
const showSearch = isVisible(search);
|
|
996
|
+
const hasSearch = showSearch && !!search;
|
|
997
|
+
const hasFilters = inlineFilters.length > 0 || overflowFilters.length > 0;
|
|
998
|
+
const hasChips = chips && Array.isArray(chips.items) && chips.items.length > 0;
|
|
999
|
+
const hasLeft = hasSearch || hasFilters || hasChips;
|
|
1000
|
+
const hasRight = !!right;
|
|
1001
|
+
if (!hasLeft && !hasRight && !footer) return null;
|
|
1002
|
+
const filterLabels = { ...labels, ...(filters == null ? void 0 : filters.labels) || {} };
|
|
1003
|
+
const searchHandler = (search == null ? void 0 : search.onChange) || (search == null ? void 0 : search.onInput);
|
|
1004
|
+
const searchProps = hasSearch ? {
|
|
1005
|
+
name: nameWithInstance(search.name || "collection-search"),
|
|
1006
|
+
placeholder: search.placeholder,
|
|
1007
|
+
value: search.value,
|
|
1008
|
+
clearable: search.clearable !== false,
|
|
1009
|
+
...search.onInput ? { onInput: search.onInput } : {},
|
|
1010
|
+
...searchHandler ? { onChange: searchHandler } : {}
|
|
1011
|
+
} : null;
|
|
1012
|
+
const renderFilter = (filter) => h4(CollectionFilterControl, {
|
|
1013
|
+
key: filter.name,
|
|
1014
|
+
namePrefix: nameWithInstance((filters == null ? void 0 : filters.namePrefix) || "collection-filter"),
|
|
1015
|
+
filter,
|
|
1016
|
+
value: filterValues[filter.name],
|
|
1017
|
+
onChange: filters == null ? void 0 : filters.onChange,
|
|
1018
|
+
labels: filterLabels,
|
|
1019
|
+
includeAll: filters == null ? void 0 : filters.includeAll,
|
|
1020
|
+
allValue: filters == null ? void 0 : filters.allValue,
|
|
1021
|
+
selectVariant: filters == null ? void 0 : filters.selectVariant
|
|
1022
|
+
});
|
|
1023
|
+
const left = hasLeft ? h4(
|
|
1024
|
+
Box,
|
|
1025
|
+
{ flex: leftFlex },
|
|
1026
|
+
h4(
|
|
1027
|
+
Flex3,
|
|
1028
|
+
{ direction: "column", gap },
|
|
1029
|
+
hasSearch || hasFilters ? h4(
|
|
1030
|
+
Flex3,
|
|
1031
|
+
{ direction: "row", align: "center", gap, wrap: "wrap" },
|
|
1032
|
+
hasSearch ? h4(SearchInput, searchProps) : null,
|
|
1033
|
+
...inlineFilters.map(renderFilter),
|
|
1034
|
+
overflowFilters.length > 0 ? h4(
|
|
1035
|
+
Button2,
|
|
1036
|
+
{
|
|
1037
|
+
variant: "transparent",
|
|
1038
|
+
size: (filters == null ? void 0 : filters.overflowButtonSize) || "small",
|
|
1039
|
+
onClick: () => setShowMoreFilters((prev) => !prev)
|
|
1040
|
+
},
|
|
1041
|
+
h4(Icon, { name: "filter", size: "sm" }),
|
|
1042
|
+
" ",
|
|
1043
|
+
(filters == null ? void 0 : filters.filtersButtonLabel) || labels.filtersButton
|
|
1044
|
+
) : null
|
|
1045
|
+
) : null,
|
|
1046
|
+
showMoreFilters && overflowFilters.length > 0 ? h4(
|
|
1047
|
+
Flex3,
|
|
1048
|
+
{ direction: "row", align: "center", gap, wrap: "wrap" },
|
|
1049
|
+
...overflowFilters.map(renderFilter)
|
|
1050
|
+
) : null,
|
|
1051
|
+
chips ? h4(ActiveFilterChips, {
|
|
1052
|
+
chips: chips.items,
|
|
1053
|
+
showBadges: chips.showBadges,
|
|
1054
|
+
showClearAll: chips.showClearAll,
|
|
1055
|
+
clearAllLabel: chips.clearAllLabel || labels.clearAll,
|
|
1056
|
+
onRemove: chips.onRemove,
|
|
1057
|
+
gap: chips.gap || gap
|
|
1058
|
+
}) : null
|
|
1059
|
+
)
|
|
1060
|
+
) : null;
|
|
1061
|
+
const rightNode = hasRight ? h4(
|
|
1062
|
+
Box,
|
|
1063
|
+
{ flex: rightFlex, alignSelf: rightAlignSelf },
|
|
1064
|
+
h4(Flex3, { direction: "row", align: "center", gap, justify: "end", wrap: "wrap" }, right)
|
|
1065
|
+
) : null;
|
|
1066
|
+
return h4(
|
|
1067
|
+
Flex3,
|
|
1068
|
+
{ direction: "column", gap: "xs" },
|
|
1069
|
+
h4(Flex3, { direction: "row", gap }, left, rightNode),
|
|
1070
|
+
footer || null
|
|
1071
|
+
);
|
|
1072
|
+
};
|
|
1073
|
+
|
|
143
1074
|
// src/common-components/StyledText.js
|
|
1075
|
+
import React6 from "react";
|
|
1076
|
+
import { Image as Image2, Tag as Tag2 } from "@hubspot/ui-extensions";
|
|
144
1077
|
var VARIANT_PRESETS = {
|
|
145
1078
|
bodytext: { fontSize: 14, lineHeight: 24, fontWeight: 400 },
|
|
146
1079
|
microcopy: { fontSize: 12, lineHeight: 18, fontWeight: 400 }
|
|
@@ -315,34 +1248,28 @@ var makeStyledTextDataUri = (text, opts = {}) => {
|
|
|
315
1248
|
};
|
|
316
1249
|
};
|
|
317
1250
|
|
|
318
|
-
//
|
|
1251
|
+
// src/kanban/Kanban.jsx
|
|
319
1252
|
import {
|
|
320
1253
|
Alert,
|
|
321
1254
|
AutoGrid,
|
|
322
|
-
Box,
|
|
323
|
-
Button,
|
|
1255
|
+
Box as Box2,
|
|
1256
|
+
Button as Button3,
|
|
324
1257
|
Checkbox,
|
|
325
|
-
DateInput,
|
|
326
1258
|
DescriptionList,
|
|
327
1259
|
DescriptionListItem,
|
|
328
1260
|
Divider,
|
|
329
1261
|
Dropdown,
|
|
330
1262
|
EmptyState,
|
|
331
|
-
Flex,
|
|
332
|
-
|
|
333
|
-
Image as Image2,
|
|
1263
|
+
Flex as Flex4,
|
|
1264
|
+
Image as Image3,
|
|
334
1265
|
Inline,
|
|
335
|
-
Link,
|
|
1266
|
+
Link as Link2,
|
|
336
1267
|
LoadingSpinner,
|
|
337
|
-
|
|
338
|
-
ModalBody,
|
|
339
|
-
MultiSelect,
|
|
340
|
-
SearchInput,
|
|
341
|
-
Select,
|
|
1268
|
+
Select as Select3,
|
|
342
1269
|
Statistics,
|
|
343
1270
|
StatisticsItem,
|
|
344
1271
|
StatisticsTrend,
|
|
345
|
-
Tag as
|
|
1272
|
+
Tag as Tag3,
|
|
346
1273
|
Text,
|
|
347
1274
|
Tile
|
|
348
1275
|
} from "@hubspot/ui-extensions";
|
|
@@ -361,7 +1288,7 @@ var applyTruncate = (value, truncate, fallback) => {
|
|
|
361
1288
|
if (value.length <= limit) return value;
|
|
362
1289
|
return value.slice(0, limit).trimEnd() + "\u2026";
|
|
363
1290
|
};
|
|
364
|
-
var
|
|
1291
|
+
var DEFAULT_LABELS3 = {
|
|
365
1292
|
search: "Search cards...",
|
|
366
1293
|
// Only the total is surfaced — callers asked for a single headline number
|
|
367
1294
|
// rather than a "loaded / total" fraction. Fall back to the bare label when
|
|
@@ -409,7 +1336,6 @@ var canStageReceiveRow = (stage, row, canMove) => {
|
|
|
409
1336
|
if (typeof stage.canEnter === "function" && !stage.canEnter(row)) return false;
|
|
410
1337
|
return true;
|
|
411
1338
|
};
|
|
412
|
-
var isFieldDirectionSortOption = (option) => !!(option && option.field && (option.direction === "asc" || option.direction === "desc"));
|
|
413
1339
|
var resolveDividers = (cardDividers, density) => {
|
|
414
1340
|
if (cardDividers === true) {
|
|
415
1341
|
return { afterTitle: true, afterSubtitle: true, afterBody: true, afterFooter: true };
|
|
@@ -477,10 +1403,10 @@ var KanbanCard = ({
|
|
|
477
1403
|
const titleHref = fields.title ? resolveHref(fields.title.href, row) : null;
|
|
478
1404
|
const rawTitleValue = fields.title ? fields.title.render ? fields.title.render(resolveFieldValue(fields.title, row), row) : resolveFieldValue(fields.title, row) : null;
|
|
479
1405
|
const titleValue = fields.title && typeof rawTitleValue === "string" ? applyTruncate(rawTitleValue, fields.title.truncate, DEFAULT_TITLE_TRUNCATE) : rawTitleValue;
|
|
480
|
-
const titleNode = titleHref ? /* @__PURE__ */
|
|
1406
|
+
const titleNode = titleHref ? /* @__PURE__ */ React7.createElement(Link2, { href: titleHref }, titleValue) : /* @__PURE__ */ React7.createElement(Text, { format: { fontWeight: "demibold" } }, titleValue);
|
|
481
1407
|
const metaNodes = fields.meta.filter((f) => !f.visible || f.visible(row)).map((f) => {
|
|
482
1408
|
const val = resolveFieldValue(f, row);
|
|
483
|
-
return /* @__PURE__ */
|
|
1409
|
+
return /* @__PURE__ */ React7.createElement(Text, { key: f.field || f.label, variant: "microcopy" }, f.render ? f.render(val, row) : val);
|
|
484
1410
|
});
|
|
485
1411
|
const showSubtitle = density === "comfortable" && fields.subtitle;
|
|
486
1412
|
const subtitleNode = showSubtitle ? fields.subtitle.render ? fields.subtitle.render(resolveFieldValue(fields.subtitle, row), row) : resolveFieldValue(fields.subtitle, row) : null;
|
|
@@ -492,9 +1418,9 @@ var KanbanCard = ({
|
|
|
492
1418
|
const val = resolveFieldValue(f, row);
|
|
493
1419
|
const rendered = f.render ? f.render(val, row) : val;
|
|
494
1420
|
const key = f.key || f.field || f.label || `footer-${idx}`;
|
|
495
|
-
return /* @__PURE__ */
|
|
1421
|
+
return /* @__PURE__ */ React7.createElement(React7.Fragment, { key }, rendered);
|
|
496
1422
|
};
|
|
497
|
-
const stageControlNode = stageControl === "none" ? null : /* @__PURE__ */
|
|
1423
|
+
const stageControlNode = stageControl === "none" ? null : /* @__PURE__ */ React7.createElement(
|
|
498
1424
|
StageControl,
|
|
499
1425
|
{
|
|
500
1426
|
row,
|
|
@@ -508,7 +1434,7 @@ var KanbanCard = ({
|
|
|
508
1434
|
labels
|
|
509
1435
|
}
|
|
510
1436
|
);
|
|
511
|
-
const titleRow = /* @__PURE__ */
|
|
1437
|
+
const titleRow = /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", justify: "between", align: "center", gap: "sm" }, /* @__PURE__ */ React7.createElement(Box2, { flex: 1 }, titleNode), selectable ? /* @__PURE__ */ React7.createElement(
|
|
512
1438
|
Checkbox,
|
|
513
1439
|
{
|
|
514
1440
|
name: `kanban-select-${rowId}`,
|
|
@@ -516,25 +1442,25 @@ var KanbanCard = ({
|
|
|
516
1442
|
onChange: () => onToggleSelect(rowId)
|
|
517
1443
|
}
|
|
518
1444
|
) : null);
|
|
519
|
-
const metaRow = metaNodes.length === 0 ? null : /* @__PURE__ */
|
|
520
|
-
const bodyRow = bodyFields.length === 0 ? null : bodyAs === "descriptionList" ? /* @__PURE__ */
|
|
1445
|
+
const metaRow = metaNodes.length === 0 ? null : /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", justify: "end", align: "center", gap: "xs" }, metaNodes);
|
|
1446
|
+
const bodyRow = bodyFields.length === 0 ? null : bodyAs === "descriptionList" ? /* @__PURE__ */ React7.createElement(DescriptionList, { direction: "row" }, bodyFields.map((f, idx) => {
|
|
521
1447
|
const val = resolveFieldValue(f, row);
|
|
522
1448
|
const rendered = f.render ? f.render(val, row) : val ?? "\u2014";
|
|
523
1449
|
const key = f.key || f.field || f.label || `body-${idx}`;
|
|
524
|
-
return /* @__PURE__ */
|
|
525
|
-
})) : /* @__PURE__ */
|
|
1450
|
+
return /* @__PURE__ */ React7.createElement(DescriptionListItem, { key, label: f.label || "" }, rendered);
|
|
1451
|
+
})) : /* @__PURE__ */ React7.createElement(Flex4, { direction: "column", gap: "flush" }, bodyFields.map((f, idx) => {
|
|
526
1452
|
const val = resolveFieldValue(f, row);
|
|
527
1453
|
const rendered = f.render ? f.render(val, row) : val ?? "\u2014";
|
|
528
1454
|
const key = f.key || f.field || f.label || `body-${idx}`;
|
|
529
|
-
return /* @__PURE__ */
|
|
1455
|
+
return /* @__PURE__ */ React7.createElement(Text, { key, variant: "microcopy" }, f.label ? /* @__PURE__ */ React7.createElement(Text, { inline: true, variant: "microcopy" }, `${f.label}: `) : null, rendered);
|
|
530
1456
|
}));
|
|
531
|
-
const footerAlertsNode = footerAlerts.length === 0 ? null : /* @__PURE__ */
|
|
1457
|
+
const footerAlertsNode = footerAlerts.length === 0 ? null : /* @__PURE__ */ React7.createElement(Flex4, { direction: "column", gap: "xs" }, footerAlerts.map((f, idx) => renderFooterField(f, idx)));
|
|
532
1458
|
const footerActionsNode = footerActionsField ? renderFooterField(footerActionsField, footerFields.length - 1) : null;
|
|
533
1459
|
const inlineStageControl = stageControlPlacement === "inline" ? stageControlNode : null;
|
|
534
1460
|
const separateRowStageControl = stageControlPlacement === "separateRow" ? stageControlNode : null;
|
|
535
|
-
const footerMainRow = inlineStageControl || footerActionsNode ? /* @__PURE__ */
|
|
536
|
-
const footerRow = !footerAlertsNode && !footerMainRow ? null : /* @__PURE__ */
|
|
537
|
-
return /* @__PURE__ */
|
|
1461
|
+
const footerMainRow = inlineStageControl || footerActionsNode ? /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", justify: "between", align: "start", gap: "sm" }, inlineStageControl ? /* @__PURE__ */ React7.createElement(Box2, { alignSelf: "center" }, inlineStageControl) : /* @__PURE__ */ React7.createElement(Box2, null), footerActionsNode ? /* @__PURE__ */ React7.createElement(Box2, { flex: 1 }, /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", justify: "end", align: "start" }, footerActionsNode)) : null) : null;
|
|
1462
|
+
const footerRow = !footerAlertsNode && !footerMainRow ? null : /* @__PURE__ */ React7.createElement(Flex4, { direction: "column", gap: "xs" }, footerAlertsNode, footerMainRow);
|
|
1463
|
+
return /* @__PURE__ */ React7.createElement(Tile, { compact: density === "compact" }, /* @__PURE__ */ React7.createElement(Flex4, { direction: "column", gap: density === "compact" ? "xs" : "sm" }, titleRow, dividers.afterTitle && (metaRow || bodyRow || footerRow || separateRowStageControl) ? /* @__PURE__ */ React7.createElement(Divider, null) : null, subtitleNode ? /* @__PURE__ */ React7.createElement(Text, { variant: "microcopy" }, subtitleNode) : null, dividers.afterSubtitle && subtitleNode && (metaRow || bodyRow || footerRow || separateRowStageControl) ? /* @__PURE__ */ React7.createElement(Divider, null) : null, metaRow, bodyRow, dividers.afterBody && bodyRow && (footerRow || separateRowStageControl) ? /* @__PURE__ */ React7.createElement(Divider, null) : null, footerRow, dividers.afterFooter && footerRow && separateRowStageControl ? /* @__PURE__ */ React7.createElement(Divider, null) : null, separateRowStageControl));
|
|
538
1464
|
};
|
|
539
1465
|
var StageControl = ({
|
|
540
1466
|
row,
|
|
@@ -548,7 +1474,7 @@ var StageControl = ({
|
|
|
548
1474
|
labels
|
|
549
1475
|
}) => {
|
|
550
1476
|
if (isChanging) {
|
|
551
|
-
return /* @__PURE__ */
|
|
1477
|
+
return /* @__PURE__ */ React7.createElement(LoadingSpinner, { size: "xs" });
|
|
552
1478
|
}
|
|
553
1479
|
const availableStages = (stages || []).filter(
|
|
554
1480
|
(stage) => stage.value === currentStage.value || canStageReceiveRow(stage, row, canMove)
|
|
@@ -556,16 +1482,16 @@ var StageControl = ({
|
|
|
556
1482
|
if (mode === "menu") {
|
|
557
1483
|
const targetStages = availableStages.filter((stage) => stage.value !== currentStage.value);
|
|
558
1484
|
if (targetStages.length === 0) {
|
|
559
|
-
return /* @__PURE__ */
|
|
1485
|
+
return /* @__PURE__ */ React7.createElement(Button3, { variant: "transparent", size: "extra-small", disabled: true }, labels.moveTo);
|
|
560
1486
|
}
|
|
561
|
-
return /* @__PURE__ */
|
|
1487
|
+
return /* @__PURE__ */ React7.createElement(
|
|
562
1488
|
Dropdown,
|
|
563
1489
|
{
|
|
564
1490
|
variant: "transparent",
|
|
565
1491
|
buttonText: labels.moveTo,
|
|
566
1492
|
buttonSize: "xs"
|
|
567
1493
|
},
|
|
568
|
-
targetStages.map((stage) => /* @__PURE__ */
|
|
1494
|
+
targetStages.map((stage) => /* @__PURE__ */ React7.createElement(
|
|
569
1495
|
Dropdown.ButtonItem,
|
|
570
1496
|
{
|
|
571
1497
|
key: stage.value,
|
|
@@ -575,8 +1501,8 @@ var StageControl = ({
|
|
|
575
1501
|
))
|
|
576
1502
|
);
|
|
577
1503
|
}
|
|
578
|
-
return /* @__PURE__ */
|
|
579
|
-
|
|
1504
|
+
return /* @__PURE__ */ React7.createElement(
|
|
1505
|
+
Select3,
|
|
580
1506
|
{
|
|
581
1507
|
name: `stage-${rowId}`,
|
|
582
1508
|
label: "",
|
|
@@ -610,12 +1536,12 @@ var KanbanColumn = ({
|
|
|
610
1536
|
children
|
|
611
1537
|
}) => {
|
|
612
1538
|
const countLabel = labels.cardCount(totalCount != null ? totalCount : bucketCount);
|
|
613
|
-
const countNode = countDisplay === "text" ? /* @__PURE__ */
|
|
1539
|
+
const countNode = countDisplay === "text" ? /* @__PURE__ */ React7.createElement(Text, { format: { fontWeight: "demibold" } }, countLabel) : countDisplay === "none" ? null : /* @__PURE__ */ React7.createElement(Tag3, { variant: "default" }, countLabel);
|
|
614
1540
|
if (collapsed) {
|
|
615
1541
|
const rotated = makeRotatedLabelDataUri(stage.label);
|
|
616
1542
|
const rotatedCount = countDisplay === "none" ? null : makeRotatedTagDataUri(countLabel);
|
|
617
|
-
const stageIdentifier = stage.icon ? /* @__PURE__ */
|
|
618
|
-
|
|
1543
|
+
const stageIdentifier = stage.icon ? /* @__PURE__ */ React7.createElement(Icon, { name: stage.icon, size: "sm", screenReaderText: stage.label }) : /* @__PURE__ */ React7.createElement(
|
|
1544
|
+
Image3,
|
|
619
1545
|
{
|
|
620
1546
|
src: rotated.src,
|
|
621
1547
|
width: rotated.width,
|
|
@@ -623,17 +1549,17 @@ var KanbanColumn = ({
|
|
|
623
1549
|
alt: stage.label
|
|
624
1550
|
}
|
|
625
1551
|
);
|
|
626
|
-
return /* @__PURE__ */
|
|
627
|
-
|
|
1552
|
+
return /* @__PURE__ */ React7.createElement(Tile, { compact: true }, /* @__PURE__ */ React7.createElement(Flex4, { direction: "column", gap: "xs", align: "center" }, /* @__PURE__ */ React7.createElement(
|
|
1553
|
+
Button3,
|
|
628
1554
|
{
|
|
629
1555
|
variant: "transparent",
|
|
630
1556
|
size: "sm",
|
|
631
1557
|
onClick: onToggleCollapsed,
|
|
632
1558
|
tooltip: `Expand ${stage.label}`
|
|
633
1559
|
},
|
|
634
|
-
/* @__PURE__ */
|
|
635
|
-
), stageIdentifier, rotatedCount ? /* @__PURE__ */
|
|
636
|
-
|
|
1560
|
+
/* @__PURE__ */ React7.createElement(Icon, { name: "right", size: "sm", screenReaderText: `Expand ${stage.label}` })
|
|
1561
|
+
), stageIdentifier, rotatedCount ? /* @__PURE__ */ React7.createElement(
|
|
1562
|
+
Image3,
|
|
637
1563
|
{
|
|
638
1564
|
src: rotatedCount.src,
|
|
639
1565
|
width: rotatedCount.width,
|
|
@@ -643,134 +1569,20 @@ var KanbanColumn = ({
|
|
|
643
1569
|
) : null));
|
|
644
1570
|
}
|
|
645
1571
|
const footerContent = stage.footer ? stage.footer(rows) : columnFooter ? columnFooter(rows, stage) : null;
|
|
646
|
-
return /* @__PURE__ */
|
|
647
|
-
};
|
|
648
|
-
var SortModalBody = ({ sortOptions, sortValue, onSortChange, labels }) => {
|
|
649
|
-
const hasFieldDirection = Array.isArray(sortOptions) && sortOptions.length > 0 && sortOptions.every(isFieldDirectionSortOption);
|
|
650
|
-
if (!hasFieldDirection) {
|
|
651
|
-
return /* @__PURE__ */ React2.createElement(Flex, { direction: "column", gap: "xs" }, sortOptions.map((opt) => /* @__PURE__ */ React2.createElement(
|
|
652
|
-
Button,
|
|
653
|
-
{
|
|
654
|
-
key: opt.value,
|
|
655
|
-
variant: sortValue === opt.value ? "primary" : "secondary",
|
|
656
|
-
onClick: () => onSortChange(opt.value)
|
|
657
|
-
},
|
|
658
|
-
opt.label
|
|
659
|
-
)));
|
|
660
|
-
}
|
|
661
|
-
const currentOption = sortOptions.find((o) => o.value === sortValue) || sortOptions[0];
|
|
662
|
-
const currentField = currentOption.field;
|
|
663
|
-
const currentDirection = currentOption.direction;
|
|
664
|
-
const uniqueFields = [];
|
|
665
|
-
const seen = /* @__PURE__ */ new Set();
|
|
666
|
-
for (const opt of sortOptions) {
|
|
667
|
-
if (!seen.has(opt.field)) {
|
|
668
|
-
seen.add(opt.field);
|
|
669
|
-
uniqueFields.push({ value: opt.field, label: opt.fieldLabel || opt.field });
|
|
670
|
-
}
|
|
671
|
-
}
|
|
672
|
-
const fieldOpts = sortOptions.filter((o) => o.field === currentField);
|
|
673
|
-
const ascOption = fieldOpts.find((o) => o.direction === "asc");
|
|
674
|
-
const descOption = fieldOpts.find((o) => o.direction === "desc");
|
|
675
|
-
const handleFieldChange = (newField) => {
|
|
676
|
-
const next = sortOptions.find((o) => o.field === newField && o.direction === currentDirection) || sortOptions.find((o) => o.field === newField && o.direction === "desc") || sortOptions.find((o) => o.field === newField);
|
|
677
|
-
if (next) onSortChange(next.value);
|
|
678
|
-
};
|
|
679
|
-
return /* @__PURE__ */ React2.createElement(Inline, { align: "center", gap: "small" }, /* @__PURE__ */ React2.createElement(
|
|
680
|
-
Select,
|
|
681
|
-
{
|
|
682
|
-
name: "kanban-sort-field",
|
|
683
|
-
label: "",
|
|
684
|
-
value: currentField,
|
|
685
|
-
onChange: handleFieldChange,
|
|
686
|
-
options: uniqueFields
|
|
687
|
-
}
|
|
688
|
-
), /* @__PURE__ */ React2.createElement(Inline, { align: "center", gap: "flush" }, descOption ? /* @__PURE__ */ React2.createElement(
|
|
689
|
-
Button,
|
|
690
|
-
{
|
|
691
|
-
variant: currentDirection === "desc" ? "primary" : "secondary",
|
|
692
|
-
onClick: () => onSortChange(descOption.value)
|
|
693
|
-
},
|
|
694
|
-
labels.sortDescending
|
|
695
|
-
) : null, ascOption ? /* @__PURE__ */ React2.createElement(
|
|
696
|
-
Button,
|
|
697
|
-
{
|
|
698
|
-
variant: currentDirection === "asc" ? "primary" : "secondary",
|
|
699
|
-
onClick: () => onSortChange(ascOption.value)
|
|
700
|
-
},
|
|
701
|
-
labels.sortAscending
|
|
702
|
-
) : null));
|
|
703
|
-
};
|
|
704
|
-
var renderFilterControl = ({ filter, value, onChange, labels }) => {
|
|
705
|
-
const type = filter.type || "select";
|
|
706
|
-
if (type === "multiselect") {
|
|
707
|
-
return /* @__PURE__ */ React2.createElement(
|
|
708
|
-
MultiSelect,
|
|
709
|
-
{
|
|
710
|
-
key: filter.name,
|
|
711
|
-
name: `kanban-filter-${filter.name}`,
|
|
712
|
-
label: "",
|
|
713
|
-
placeholder: filter.placeholder || "All",
|
|
714
|
-
value: value || [],
|
|
715
|
-
onChange: (val) => onChange(filter.name, val),
|
|
716
|
-
options: filter.options
|
|
717
|
-
}
|
|
718
|
-
);
|
|
719
|
-
}
|
|
720
|
-
if (type === "dateRange") {
|
|
721
|
-
const rangeVal = value || { from: null, to: null };
|
|
722
|
-
return /* @__PURE__ */ React2.createElement(Flex, { key: filter.name, direction: "row", align: "center", gap: "xs" }, /* @__PURE__ */ React2.createElement(
|
|
723
|
-
DateInput,
|
|
724
|
-
{
|
|
725
|
-
size: "sm",
|
|
726
|
-
name: `kanban-filter-${filter.name}-from`,
|
|
727
|
-
label: "",
|
|
728
|
-
placeholder: labels.dateFrom,
|
|
729
|
-
format: "medium",
|
|
730
|
-
value: rangeVal.from,
|
|
731
|
-
onChange: (val) => onChange(filter.name, { ...rangeVal, from: val })
|
|
732
|
-
}
|
|
733
|
-
), /* @__PURE__ */ React2.createElement(Icon, { name: "dataSync", size: "sm" }), /* @__PURE__ */ React2.createElement(
|
|
734
|
-
DateInput,
|
|
735
|
-
{
|
|
736
|
-
size: "sm",
|
|
737
|
-
name: `kanban-filter-${filter.name}-to`,
|
|
738
|
-
label: "",
|
|
739
|
-
placeholder: labels.dateTo,
|
|
740
|
-
format: "medium",
|
|
741
|
-
value: rangeVal.to,
|
|
742
|
-
onChange: (val) => onChange(filter.name, { ...rangeVal, to: val })
|
|
743
|
-
}
|
|
744
|
-
));
|
|
745
|
-
}
|
|
746
|
-
return /* @__PURE__ */ React2.createElement(
|
|
747
|
-
Select,
|
|
748
|
-
{
|
|
749
|
-
key: filter.name,
|
|
750
|
-
name: `kanban-filter-${filter.name}`,
|
|
751
|
-
variant: "transparent",
|
|
752
|
-
placeholder: filter.placeholder || "All",
|
|
753
|
-
value,
|
|
754
|
-
onChange: (val) => onChange(filter.name, val),
|
|
755
|
-
options: [
|
|
756
|
-
{ label: filter.placeholder || "All", value: "" },
|
|
757
|
-
...filter.options
|
|
758
|
-
]
|
|
759
|
-
}
|
|
760
|
-
);
|
|
1572
|
+
return /* @__PURE__ */ React7.createElement(Tile, { compact: true }, /* @__PURE__ */ React7.createElement(Flex4, { direction: "column", gap: "xs" }, /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", align: "center", justify: "between", gap: "xs" }, /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", align: "center", gap: "xs" }, /* @__PURE__ */ React7.createElement(Text, { format: { fontWeight: "demibold" } }, stage.shortLabel || stage.label), countNode, loading ? /* @__PURE__ */ React7.createElement(LoadingSpinner, { size: "xs" }) : null), /* @__PURE__ */ React7.createElement(Button3, { variant: "transparent", size: "sm", onClick: onToggleCollapsed, tooltip: "Collapse" }, /* @__PURE__ */ React7.createElement(Icon, { name: "left", size: "sm", screenReaderText: `Collapse ${stage.label}` }))), footerContent ? /* @__PURE__ */ React7.createElement(Text, { variant: "microcopy" }, footerContent) : null, /* @__PURE__ */ React7.createElement(Divider, null), children, error ? /* @__PURE__ */ React7.createElement(Alert, { variant: "danger", title: labels.errorTitle }, /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", gap: "xs", align: "center" }, /* @__PURE__ */ React7.createElement(Text, { variant: "microcopy" }, error), onLoadMore ? /* @__PURE__ */ React7.createElement(Button3, { variant: "transparent", size: "xs", onClick: () => onLoadMore(stage.value) }, labels.retryLoadMore) : null)) : null, !error && hasMore && onLoadMore && !loading && bucketCount > 0 ? /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", justify: "center" }, /* @__PURE__ */ React7.createElement(Link2, { onClick: () => onLoadMore(stage.value) }, labels.loadMore(bucketCount, totalCount))) : null, !error && loading && hasMore ? /* @__PURE__ */ React7.createElement(LoadingSpinner, { size: "sm", layout: "centered", label: labels.loadingMore }) : null, !error && !hasMore && bucketCount > rows.length ? /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", justify: "center" }, /* @__PURE__ */ React7.createElement(Link2, { onClick: onToggleExpanded }, expanded ? labels.showLess : labels.showMore(rows.length, bucketCount))) : null, rows.length === 0 && bucketCount === 0 && !loading ? /* @__PURE__ */ React7.createElement(Text, { variant: "microcopy", format: { italic: true } }, labels.emptyColumn) : null));
|
|
761
1573
|
};
|
|
762
1574
|
var renderMetricsPanel = (metrics) => {
|
|
763
1575
|
if (!metrics) return null;
|
|
764
1576
|
if (!Array.isArray(metrics)) return metrics;
|
|
765
1577
|
if (metrics.length === 0) return null;
|
|
766
|
-
return /* @__PURE__ */
|
|
1578
|
+
return /* @__PURE__ */ React7.createElement(Statistics, null, metrics.map((m, i) => /* @__PURE__ */ React7.createElement(
|
|
767
1579
|
StatisticsItem,
|
|
768
1580
|
{
|
|
769
1581
|
key: m.id || m.label || i,
|
|
770
1582
|
label: m.label,
|
|
771
1583
|
number: m.number != null ? String(m.number) : ""
|
|
772
1584
|
},
|
|
773
|
-
m.trend ? /* @__PURE__ */
|
|
1585
|
+
m.trend ? /* @__PURE__ */ React7.createElement(
|
|
774
1586
|
StatisticsTrend,
|
|
775
1587
|
{
|
|
776
1588
|
direction: m.trend.direction || "increase",
|
|
@@ -799,78 +1611,52 @@ var KanbanToolbar = ({
|
|
|
799
1611
|
metrics,
|
|
800
1612
|
showMetrics,
|
|
801
1613
|
onToggleMetrics,
|
|
802
|
-
labels
|
|
1614
|
+
labels,
|
|
1615
|
+
toolbarLeftFlex,
|
|
1616
|
+
toolbarRightFlex
|
|
803
1617
|
}) => {
|
|
804
|
-
const
|
|
805
|
-
|
|
806
|
-
const overflowFilters = (filters || []).slice(filterInlineLimit);
|
|
807
|
-
return /* @__PURE__ */ React2.createElement(Flex, { direction: "column", gap: "xs" }, /* @__PURE__ */ React2.createElement(Flex, { direction: "row", gap: "sm" }, /* @__PURE__ */ React2.createElement(Box, { flex: 3 }, /* @__PURE__ */ React2.createElement(Flex, { direction: "column", gap: "sm" }, /* @__PURE__ */ React2.createElement(Flex, { direction: "row", align: "center", gap: "sm", wrap: "wrap" }, showSearch ? /* @__PURE__ */ React2.createElement(
|
|
808
|
-
SearchInput,
|
|
1618
|
+
const rightControls = (sortOptions == null ? void 0 : sortOptions.length) > 0 || metrics ? /* @__PURE__ */ React7.createElement(React7.Fragment, null, sortOptions && sortOptions.length > 0 ? /* @__PURE__ */ React7.createElement(
|
|
1619
|
+
CollectionSortSelect,
|
|
809
1620
|
{
|
|
810
|
-
name: "kanban-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
1621
|
+
name: "kanban-sort",
|
|
1622
|
+
value: sortValue,
|
|
1623
|
+
placeholder: labels.sortButton,
|
|
1624
|
+
options: sortOptions,
|
|
1625
|
+
onChange: onSortChange
|
|
814
1626
|
}
|
|
815
|
-
) : null,
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
value: filterValues[filter.name],
|
|
819
|
-
onChange: onFilterChange,
|
|
820
|
-
labels
|
|
821
|
-
})
|
|
822
|
-
), overflowFilters.length > 0 ? /* @__PURE__ */ React2.createElement(
|
|
823
|
-
Button,
|
|
824
|
-
{
|
|
825
|
-
variant: "transparent",
|
|
826
|
-
size: "small",
|
|
827
|
-
onClick: () => setShowMoreFilters((prev) => !prev)
|
|
828
|
-
},
|
|
829
|
-
/* @__PURE__ */ React2.createElement(Icon, { name: "filter", size: "sm" }),
|
|
830
|
-
" ",
|
|
831
|
-
labels.filtersButton
|
|
832
|
-
) : null), showMoreFilters && overflowFilters.length > 0 ? /* @__PURE__ */ React2.createElement(Flex, { direction: "row", align: "center", gap: "sm", wrap: "wrap" }, overflowFilters.map(
|
|
833
|
-
(filter) => renderFilterControl({
|
|
834
|
-
filter,
|
|
835
|
-
value: filterValues[filter.name],
|
|
836
|
-
onChange: onFilterChange,
|
|
837
|
-
labels
|
|
838
|
-
})
|
|
839
|
-
)) : null, activeChips.length > 0 && (showFilterBadges || showClearFiltersButton) ? /* @__PURE__ */ React2.createElement(Flex, { direction: "row", align: "center", gap: "sm", wrap: "wrap" }, showFilterBadges ? activeChips.map((chip) => /* @__PURE__ */ React2.createElement(
|
|
840
|
-
Tag2,
|
|
841
|
-
{
|
|
842
|
-
key: chip.key,
|
|
843
|
-
variant: "default",
|
|
844
|
-
onDelete: () => onFilterRemove(chip.key)
|
|
845
|
-
},
|
|
846
|
-
chip.label
|
|
847
|
-
)) : null, showClearFiltersButton ? /* @__PURE__ */ React2.createElement(
|
|
848
|
-
Button,
|
|
1627
|
+
) : null, metrics ? /* @__PURE__ */ React7.createElement(Button3, { variant: "secondary", size: "small", onClick: onToggleMetrics }, /* @__PURE__ */ React7.createElement(Icon, { name: "gauge", size: "sm" }), " ", labels.metricsButton) : null) : null;
|
|
1628
|
+
return /* @__PURE__ */ React7.createElement(
|
|
1629
|
+
CollectionToolbar,
|
|
849
1630
|
{
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
1631
|
+
search: {
|
|
1632
|
+
visible: showSearch,
|
|
1633
|
+
name: "kanban-search",
|
|
1634
|
+
placeholder: searchPlaceholder,
|
|
1635
|
+
value: searchValue,
|
|
1636
|
+
onChange: onSearchChange
|
|
1637
|
+
},
|
|
1638
|
+
filters: {
|
|
1639
|
+
items: filters,
|
|
1640
|
+
values: filterValues,
|
|
1641
|
+
inlineLimit: filterInlineLimit,
|
|
1642
|
+
namePrefix: "kanban-filter",
|
|
1643
|
+
onChange: onFilterChange,
|
|
1644
|
+
labels
|
|
1645
|
+
},
|
|
1646
|
+
chips: {
|
|
1647
|
+
items: activeChips,
|
|
1648
|
+
showBadges: showFilterBadges,
|
|
1649
|
+
showClearAll: showClearFiltersButton,
|
|
1650
|
+
clearAllLabel: labels.clearAll,
|
|
1651
|
+
onRemove: onFilterRemove
|
|
1652
|
+
},
|
|
1653
|
+
right: rightControls,
|
|
1654
|
+
footer: showMetrics && metrics ? renderMetricsPanel(metrics) : null,
|
|
1655
|
+
labels,
|
|
1656
|
+
leftFlex: toolbarLeftFlex,
|
|
1657
|
+
rightFlex: toolbarRightFlex
|
|
1658
|
+
}
|
|
1659
|
+
);
|
|
874
1660
|
};
|
|
875
1661
|
var DefaultSelectionBar = ({
|
|
876
1662
|
selectedIds,
|
|
@@ -884,15 +1670,15 @@ var DefaultSelectionBar = ({
|
|
|
884
1670
|
labels
|
|
885
1671
|
}) => {
|
|
886
1672
|
const pluralForCount = (n) => countLabel(n);
|
|
887
|
-
return /* @__PURE__ */
|
|
888
|
-
|
|
1673
|
+
return /* @__PURE__ */ React7.createElement(Tile, { compact: true }, /* @__PURE__ */ React7.createElement(Inline, { align: "center", justify: "between", gap: "small" }, /* @__PURE__ */ React7.createElement(Inline, { align: "center", gap: "small" }, /* @__PURE__ */ React7.createElement(Text, { inline: true, format: { fontWeight: "demibold" } }, typeof labels.selected === "function" ? labels.selected(selectedCount, pluralForCount(selectedCount)) : `${selectedCount} selected`), !allSelected ? /* @__PURE__ */ React7.createElement(Button3, { variant: "transparent", size: "extra-small", onClick: onSelectAll }, typeof labels.selectAll === "function" ? labels.selectAll(displayCount, pluralForCount(displayCount)) : labels.selectAll) : null, /* @__PURE__ */ React7.createElement(Button3, { variant: "transparent", size: "extra-small", onClick: onDeselectAll }, labels.deselectAll)), (selectionActions || []).length > 0 ? /* @__PURE__ */ React7.createElement(Inline, { align: "center", gap: "extra-small" }, selectionActions.map((action, i) => /* @__PURE__ */ React7.createElement(
|
|
1674
|
+
Button3,
|
|
889
1675
|
{
|
|
890
1676
|
key: action.key || action.label || i,
|
|
891
1677
|
variant: action.variant || "transparent",
|
|
892
1678
|
size: "extra-small",
|
|
893
1679
|
onClick: () => action.onClick([...selectedIds])
|
|
894
1680
|
},
|
|
895
|
-
action.icon ? /* @__PURE__ */
|
|
1681
|
+
action.icon ? /* @__PURE__ */ React7.createElement(Icon, { name: action.icon, size: "sm" }) : null,
|
|
896
1682
|
" ",
|
|
897
1683
|
action.label
|
|
898
1684
|
))) : null));
|
|
@@ -944,6 +1730,8 @@ var Kanban = ({
|
|
|
944
1730
|
filterInlineLimit = DEFAULT_FILTER_INLINE_LIMIT,
|
|
945
1731
|
showFilterBadges = true,
|
|
946
1732
|
showClearFiltersButton,
|
|
1733
|
+
toolbarLeftFlex = 3,
|
|
1734
|
+
toolbarRightFlex = 1,
|
|
947
1735
|
sortOptions,
|
|
948
1736
|
defaultSort,
|
|
949
1737
|
sort,
|
|
@@ -974,21 +1762,15 @@ var Kanban = ({
|
|
|
974
1762
|
renderErrorState
|
|
975
1763
|
}) => {
|
|
976
1764
|
var _a;
|
|
977
|
-
const labels = useMemo(() => ({ ...
|
|
978
|
-
const [internalSearch, setInternalSearch] =
|
|
979
|
-
const [internalFilters, setInternalFilters] =
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
});
|
|
986
|
-
const [internalSort, setInternalSort] = useState(defaultSort || (((_a = sortOptions == null ? void 0 : sortOptions[0]) == null ? void 0 : _a.value) ?? ""));
|
|
987
|
-
const [internalCollapsed, setInternalCollapsed] = useState([]);
|
|
988
|
-
const [internalExpanded, setInternalExpanded] = useState([]);
|
|
989
|
-
const [internalSelection, setInternalSelection] = useState([]);
|
|
990
|
-
const [internalShowMetrics, setInternalShowMetrics] = useState(false);
|
|
991
|
-
const [transitionPrompts, setTransitionPrompts] = useState({});
|
|
1765
|
+
const labels = useMemo(() => ({ ...DEFAULT_LABELS3, ...labelsProp || {} }), [labelsProp]);
|
|
1766
|
+
const [internalSearch, setInternalSearch] = useState2(searchValue != null ? searchValue : "");
|
|
1767
|
+
const [internalFilters, setInternalFilters] = useState2(() => getEmptyFilterValues(filters));
|
|
1768
|
+
const [internalSort, setInternalSort] = useState2(defaultSort || (((_a = sortOptions == null ? void 0 : sortOptions[0]) == null ? void 0 : _a.value) ?? ""));
|
|
1769
|
+
const [internalCollapsed, setInternalCollapsed] = useState2([]);
|
|
1770
|
+
const [internalExpanded, setInternalExpanded] = useState2([]);
|
|
1771
|
+
const [internalSelection, setInternalSelection] = useState2([]);
|
|
1772
|
+
const [internalShowMetrics, setInternalShowMetrics] = useState2(false);
|
|
1773
|
+
const [transitionPrompts, setTransitionPrompts] = useState2({});
|
|
992
1774
|
const resolvedShowMetrics = controlledShowMetrics != null ? controlledShowMetrics : internalShowMetrics;
|
|
993
1775
|
const toggleMetrics = useCallback2(() => {
|
|
994
1776
|
const next = !resolvedShowMetrics;
|
|
@@ -1054,19 +1836,7 @@ var Kanban = ({
|
|
|
1054
1836
|
);
|
|
1055
1837
|
const handleFilterRemove = useCallback2(
|
|
1056
1838
|
(key) => {
|
|
1057
|
-
|
|
1058
|
-
const cleared = {};
|
|
1059
|
-
(filters || []).forEach((f) => {
|
|
1060
|
-
cleared[f.name] = getEmptyFilterValue(f);
|
|
1061
|
-
});
|
|
1062
|
-
if (filterValues == null) setInternalFilters(cleared);
|
|
1063
|
-
if (onFilterChange) onFilterChange(cleared);
|
|
1064
|
-
fireParamsChange({ filters: cleared });
|
|
1065
|
-
return;
|
|
1066
|
-
}
|
|
1067
|
-
const filter = (filters || []).find((f) => f.name === key);
|
|
1068
|
-
const emptyVal = filter ? getEmptyFilterValue(filter) : "";
|
|
1069
|
-
const next = { ...resolvedFilters, [key]: emptyVal };
|
|
1839
|
+
const next = resetFilterValues(filters, resolvedFilters, key);
|
|
1070
1840
|
if (filterValues == null) setInternalFilters(next);
|
|
1071
1841
|
if (onFilterChange) onFilterChange(next);
|
|
1072
1842
|
fireParamsChange({ filters: next });
|
|
@@ -1185,31 +1955,10 @@ var Kanban = ({
|
|
|
1185
1955
|
}
|
|
1186
1956
|
return out;
|
|
1187
1957
|
}, [buckets, sortComparator]);
|
|
1188
|
-
const activeChips = useMemo(
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
if (!isFilterActive(filter, val)) continue;
|
|
1193
|
-
const type = filter.type || "select";
|
|
1194
|
-
const prefix = filter.chipLabel || filter.placeholder || filter.name;
|
|
1195
|
-
if (type === "multiselect") {
|
|
1196
|
-
const labelList = val.map((v) => {
|
|
1197
|
-
var _a2;
|
|
1198
|
-
return ((_a2 = filter.options.find((o) => o.value === v)) == null ? void 0 : _a2.label) || v;
|
|
1199
|
-
}).join(", ");
|
|
1200
|
-
chips.push({ key: filter.name, label: `${prefix}: ${labelList}` });
|
|
1201
|
-
} else if (type === "dateRange") {
|
|
1202
|
-
const parts = [];
|
|
1203
|
-
if (val.from) parts.push(`from ${formatDateChip(val.from)}`);
|
|
1204
|
-
if (val.to) parts.push(`to ${formatDateChip(val.to)}`);
|
|
1205
|
-
chips.push({ key: filter.name, label: `${prefix}: ${parts.join(" ")}` });
|
|
1206
|
-
} else {
|
|
1207
|
-
const opt = filter.options.find((o) => o.value === val);
|
|
1208
|
-
chips.push({ key: filter.name, label: `${prefix}: ${(opt == null ? void 0 : opt.label) || val}` });
|
|
1209
|
-
}
|
|
1210
|
-
}
|
|
1211
|
-
return chips;
|
|
1212
|
-
}, [filters, resolvedFilters]);
|
|
1958
|
+
const activeChips = useMemo(
|
|
1959
|
+
() => buildActiveFilterChips(filters, resolvedFilters),
|
|
1960
|
+
[filters, resolvedFilters]
|
|
1961
|
+
);
|
|
1213
1962
|
const partitioned = useMemo(() => partitionFields(cardFields || []), [cardFields]);
|
|
1214
1963
|
const dividers = useMemo(() => resolveDividers(cardDividers, cardDensity), [cardDividers, cardDensity]);
|
|
1215
1964
|
const resolvedMaxBody = maxBodyLines || (cardDensity === "comfortable" ? 5 : 3);
|
|
@@ -1244,7 +1993,7 @@ var Kanban = ({
|
|
|
1244
1993
|
const activePrompt = transitionPrompts[rowId];
|
|
1245
1994
|
const promptStage = activePrompt ? stagesByValue[activePrompt.toStage] : null;
|
|
1246
1995
|
if ((_a2 = promptStage == null ? void 0 : promptStage.onEnterRequired) == null ? void 0 : _a2.render) {
|
|
1247
|
-
return /* @__PURE__ */
|
|
1996
|
+
return /* @__PURE__ */ React7.createElement(Tile, { key: rowId, compact: cardDensity === "compact" }, promptStage.onEnterRequired.render({
|
|
1248
1997
|
row: activePrompt.row,
|
|
1249
1998
|
fromStage: activePrompt.fromStage,
|
|
1250
1999
|
toStage: activePrompt.toStage,
|
|
@@ -1260,7 +2009,7 @@ var Kanban = ({
|
|
|
1260
2009
|
onStageChange: (newStage) => handleStageChangeRequest(row, newStage, stage.value)
|
|
1261
2010
|
});
|
|
1262
2011
|
}
|
|
1263
|
-
return /* @__PURE__ */
|
|
2012
|
+
return /* @__PURE__ */ React7.createElement(
|
|
1264
2013
|
KanbanCard,
|
|
1265
2014
|
{
|
|
1266
2015
|
key: rowId,
|
|
@@ -1336,21 +2085,21 @@ var Kanban = ({
|
|
|
1336
2085
|
error,
|
|
1337
2086
|
title: labels.errorTitle,
|
|
1338
2087
|
message: typeof error === "string" ? error : labels.errorMessage
|
|
1339
|
-
}) : /* @__PURE__ */
|
|
2088
|
+
}) : /* @__PURE__ */ React7.createElement(Alert, { variant: "danger", title: labels.errorTitle }, typeof error === "string" ? error : labels.errorMessage) : loading && data.length === 0 ? renderLoadingState ? renderLoadingState({ label: labels.loading }) : (
|
|
1340
2089
|
// Same EmptyState layout as the empty state (just the "building" image +
|
|
1341
2090
|
// a loading message) so loading and empty match with no layout shift.
|
|
1342
|
-
/* @__PURE__ */
|
|
2091
|
+
/* @__PURE__ */ React7.createElement(Tile, null, /* @__PURE__ */ React7.createElement(Flex4, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ React7.createElement(EmptyState, { title: labels.loading, imageName: "building", layout: "vertical" }, /* @__PURE__ */ React7.createElement(Text, null, labels.loadingMessage))))
|
|
1343
2092
|
) : filteredData.length === 0 ? renderEmptyState ? renderEmptyState({
|
|
1344
2093
|
title: labels.emptyTitle,
|
|
1345
2094
|
message: labels.emptyMessage
|
|
1346
|
-
}) : /* @__PURE__ */
|
|
2095
|
+
}) : /* @__PURE__ */ React7.createElement(Tile, null, /* @__PURE__ */ React7.createElement(Flex4, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ React7.createElement(EmptyState, { title: labels.emptyTitle, layout: "vertical" }, /* @__PURE__ */ React7.createElement(Text, null, labels.emptyMessage)))) : /* @__PURE__ */ React7.createElement(Flex4, { direction: "row", gap: "sm", wrap: "nowrap" }, stages.map((stage) => {
|
|
1347
2096
|
const stageRows = sortedBuckets[stage.value] || [];
|
|
1348
2097
|
const meta = stageMeta == null ? void 0 : stageMeta[stage.value];
|
|
1349
2098
|
const isExpanded = resolvedExpanded.includes(stage.value);
|
|
1350
2099
|
const clamp = isExpanded ? maxCardsExpanded : maxCardsPerColumn;
|
|
1351
2100
|
const visibleRows = stageRows.slice(0, clamp);
|
|
1352
2101
|
const isCollapsed = resolvedCollapsed.includes(stage.value);
|
|
1353
|
-
return /* @__PURE__ */
|
|
2102
|
+
return /* @__PURE__ */ React7.createElement(AutoGrid, { key: stage.value, columnWidth: isCollapsed ? 72 : effectiveColumnWidth }, /* @__PURE__ */ React7.createElement(
|
|
1354
2103
|
KanbanColumn,
|
|
1355
2104
|
{
|
|
1356
2105
|
stage,
|
|
@@ -1373,7 +2122,7 @@ var Kanban = ({
|
|
|
1373
2122
|
));
|
|
1374
2123
|
}));
|
|
1375
2124
|
const resolvedShowClearFiltersButton = showClearFiltersButton ?? showFilterBadges;
|
|
1376
|
-
return /* @__PURE__ */
|
|
2125
|
+
return /* @__PURE__ */ React7.createElement(Flex4, { direction: "column", gap: "sm" }, /* @__PURE__ */ React7.createElement(
|
|
1377
2126
|
KanbanToolbar,
|
|
1378
2127
|
{
|
|
1379
2128
|
showSearch: searchEnabled,
|
|
@@ -1394,18 +2143,19 @@ var Kanban = ({
|
|
|
1394
2143
|
metrics,
|
|
1395
2144
|
showMetrics: resolvedShowMetrics,
|
|
1396
2145
|
onToggleMetrics: toggleMetrics,
|
|
1397
|
-
labels
|
|
2146
|
+
labels,
|
|
2147
|
+
toolbarLeftFlex,
|
|
2148
|
+
toolbarRightFlex
|
|
1398
2149
|
}
|
|
1399
|
-
), showSelectionBar && selectable && selectedCount > 0 ? renderSelectionBar ? renderSelectionBar(selectionBarProps) : /* @__PURE__ */
|
|
2150
|
+
), showSelectionBar && selectable && selectedCount > 0 ? renderSelectionBar ? renderSelectionBar(selectionBarProps) : /* @__PURE__ */ React7.createElement(DefaultSelectionBar, { ...selectionBarProps }) : null, mainContent);
|
|
1400
2151
|
};
|
|
1401
2152
|
|
|
1402
|
-
//
|
|
1403
|
-
import
|
|
2153
|
+
// src/kanban/KanbanCardActions.jsx
|
|
2154
|
+
import React8 from "react";
|
|
1404
2155
|
import {
|
|
1405
|
-
Button as
|
|
2156
|
+
Button as Button4,
|
|
1406
2157
|
Dropdown as Dropdown2,
|
|
1407
|
-
Flex as
|
|
1408
|
-
Icon as Icon2,
|
|
2158
|
+
Flex as Flex5,
|
|
1409
2159
|
Text as Text2
|
|
1410
2160
|
} from "@hubspot/ui-extensions";
|
|
1411
2161
|
var renderButton = (action, display, size) => {
|
|
@@ -1420,12 +2170,12 @@ var renderButton = (action, display, size) => {
|
|
|
1420
2170
|
if (href) buttonProps.href = typeof href === "string" ? href : href;
|
|
1421
2171
|
if (onClick) buttonProps.onClick = onClick;
|
|
1422
2172
|
if (display === "icon") {
|
|
1423
|
-
return /* @__PURE__ */
|
|
2173
|
+
return /* @__PURE__ */ React8.createElement(Button4, { ...buttonProps }, icon ? /* @__PURE__ */ React8.createElement(Icon, { name: icon, size: "sm", screenReaderText: label }) : label);
|
|
1424
2174
|
}
|
|
1425
2175
|
if (display === "label") {
|
|
1426
|
-
return /* @__PURE__ */
|
|
2176
|
+
return /* @__PURE__ */ React8.createElement(Button4, { ...buttonProps }, label);
|
|
1427
2177
|
}
|
|
1428
|
-
return /* @__PURE__ */
|
|
2178
|
+
return /* @__PURE__ */ React8.createElement(Button4, { ...buttonProps }, /* @__PURE__ */ React8.createElement(Flex5, { direction: "row", align: "center", gap: "xs" }, icon ? /* @__PURE__ */ React8.createElement(Icon, { name: icon, size: "sm", screenReaderText: label }) : null, /* @__PURE__ */ React8.createElement(Text2, { variant: "microcopy" }, label)));
|
|
1429
2179
|
};
|
|
1430
2180
|
var KanbanCardActions = ({
|
|
1431
2181
|
actions = [],
|
|
@@ -1448,11 +2198,11 @@ var KanbanCardActions = ({
|
|
|
1448
2198
|
const renderedPrimary = primary.map((action, idx) => {
|
|
1449
2199
|
const button = renderButton(action, display, size);
|
|
1450
2200
|
if (separator === "pipe" && idx > 0) {
|
|
1451
|
-
return /* @__PURE__ */
|
|
2201
|
+
return /* @__PURE__ */ React8.createElement(React8.Fragment, { key: `${action.key || action.label}-sep` }, /* @__PURE__ */ React8.createElement(Text2, { variant: "microcopy" }, "|"), button);
|
|
1452
2202
|
}
|
|
1453
2203
|
return button;
|
|
1454
2204
|
});
|
|
1455
|
-
const renderedOverflow = overflow.length > 0 ? /* @__PURE__ */
|
|
2205
|
+
const renderedOverflow = overflow.length > 0 ? /* @__PURE__ */ React8.createElement(Dropdown2, { variant: "transparent", buttonText: overflowLabel, buttonSize: size, key: "overflow" }, overflow.map((action) => /* @__PURE__ */ React8.createElement(
|
|
1456
2206
|
Dropdown2.ButtonItem,
|
|
1457
2207
|
{
|
|
1458
2208
|
key: action.key || action.label,
|
|
@@ -1461,7 +2211,7 @@ var KanbanCardActions = ({
|
|
|
1461
2211
|
action.label
|
|
1462
2212
|
))) : null;
|
|
1463
2213
|
const justify = align === "end" ? "end" : align === "between" ? "between" : "start";
|
|
1464
|
-
return /* @__PURE__ */
|
|
2214
|
+
return /* @__PURE__ */ React8.createElement(Flex5, { direction: "row", align: "end", justify, gap }, renderedPrimary, renderedOverflow);
|
|
1465
2215
|
};
|
|
1466
2216
|
export {
|
|
1467
2217
|
Kanban,
|