@swan-io/lake 1.4.2 → 1.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swan-io/lake",
3
- "version": "1.4.2",
3
+ "version": "1.4.4",
4
4
  "engines": {
5
5
  "node": ">=14.0.0",
6
6
  "yarn": "^1.20.0"
@@ -1,20 +1,20 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { createContext, useCallback, useContext, useEffect, useMemo, useReducer, useRef, useState, } from "react";
3
+ import { Pressable, StyleSheet, Text, View, } from "react-native";
4
+ import { P, match } from "ts-pattern";
5
+ import { v4 as uuid } from "uuid";
6
+ import { animations, backgroundColor, colors, gray75, radii, shadows, spacings, texts, } from "../constants/design";
7
+ import { useHover } from "../hooks/useHover";
8
+ import { usePreviousValue } from "../hooks/usePreviousValue";
9
+ import { noop } from "../utils/function";
10
+ import { isNotNullish, isNullish } from "../utils/nullish";
11
+ import { Box } from "./Box";
2
12
  import { FocusTrap } from "./FocusTrap";
3
13
  import { Icon } from "./Icon";
4
14
  import { LakeText } from "./LakeText";
5
15
  import { Link } from "./Link";
6
16
  import { Space } from "./Space";
7
17
  import { TransitionView } from "./TransitionView";
8
- import { animations, backgroundColor, colors, gray75, radii, shadows, spacings, texts, } from "../constants/design";
9
- import { useHover } from "../hooks/useHover";
10
- import { usePreviousValue } from "../hooks/usePreviousValue";
11
- import { isNotNullish, isNullish } from "../utils/nullish";
12
- import { createContext, useCallback, useContext, useEffect, useMemo, useReducer, useRef, useState, } from "react";
13
- import { Pressable, StyleSheet, Text, View, } from "react-native";
14
- import { match, P } from "ts-pattern";
15
- import { v4 as uuid } from "uuid";
16
- import { noop } from "../utils/function";
17
- import { Box } from "./Box";
18
18
  const styles = StyleSheet.create({
19
19
  container: {
20
20
  flexDirection: "row",
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { forwardRef, memo, useId, useRef } from "react";
3
- import { StyleSheet, Text, unstable_createElement as createElement, View, } from "react-native";
3
+ import { unstable_createElement as createElement, StyleSheet, Text, View, } from "react-native";
4
4
  import { colors } from "../constants/colors";
5
5
  import { typography } from "../constants/typography";
6
6
  import { useNativeProp } from "../hooks/useNativeProp";
@@ -4,7 +4,7 @@ import { forwardRef, useCallback, useEffect, useMemo, useRef, useState, } from "
4
4
  import { FlatList, Pressable, StyleSheet, Text, View } from "react-native";
5
5
  import { hasDefinedKeys, useForm } from "react-ux-form";
6
6
  import { Rifm } from "rifm";
7
- import { match, P } from "ts-pattern";
7
+ import { P, match } from "ts-pattern";
8
8
  import { colors, shadows, spacings } from "../constants/design";
9
9
  import { useDisclosure } from "../hooks/useDisclosure";
10
10
  import { useMergeRefs } from "../hooks/useMergeRefs";
@@ -1,11 +1,11 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { FocusTrap } from "./FocusTrap";
3
- import { TransitionView } from "./TransitionView";
4
- import { backgroundColor } from "../constants/design";
5
2
  import { Suspense, useEffect, useState } from "react";
6
3
  import { StyleSheet, View } from "react-native";
4
+ import { backgroundColor } from "../constants/design";
5
+ import { FocusTrap } from "./FocusTrap";
7
6
  import { LoadingView } from "./LoadingView";
8
7
  import { Portal } from "./Portal";
8
+ import { TransitionView } from "./TransitionView";
9
9
  const BACKGROUND_COLOR = "rgba(0, 0, 0, 0.6)";
10
10
  const styles = StyleSheet.create({
11
11
  root: {
@@ -51,6 +51,8 @@ declare const paths: {
51
51
  "arrow-swap-regular": string;
52
52
  "arrow-up-filled": string;
53
53
  "arrow-up-regular": string;
54
+ "arrow-upload-filled": string;
55
+ "arrow-upload-regular": string;
54
56
  "beaker-filled": string;
55
57
  "beaker-regular": string;
56
58
  "board-regular": string;
@@ -1,8 +1,8 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { StyleSheet, Text } from "react-native";
3
- import { Space } from "./Space";
4
3
  import { colors } from "../constants/colors";
5
4
  import { typography } from "../constants/typography";
5
+ import { Space } from "./Space";
6
6
  const styles = StyleSheet.create({
7
7
  base: {
8
8
  ...typography.bodySmall,
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { useCallback, useRef, useState } from "react";
3
- import { StyleSheet, unstable_createElement, View, } from "react-native";
3
+ import { StyleSheet, View, unstable_createElement, } from "react-native";
4
4
  import { match } from "ts-pattern";
5
5
  import { v4 as uuid } from "uuid";
6
6
  import { commonStyles } from "../constants/commonStyles";
@@ -153,7 +153,7 @@ export function LakeSelect({ title, items, valueStyle, size, color = "current",
153
153
  styles.itemText,
154
154
  styles.selectPlaceholder,
155
155
  isSmall && styles.selectSmallPlaceholder,
156
- ], children: placeholder ?? " " }))] }), _jsx(Fill, { minWidth: 8 }), !disabled && (_jsx(Icon, { color: colors.gray[900], name: visible ? "chevron-up-filled" : "chevron-down-filled", size: 16 }))] })] })) }), !hideErrors && (_jsx(LakeText, { color: colors.negative[400], style: styles.errorText, children: error ?? " " })), _jsxs(Popover, { role: "listbox", matchReferenceMinWidth: matchReferenceWidth, onDismiss: close, referenceRef: inputRef, returnFocus: true, visible: visible, children: [isNotNullish(title) && (_jsxs(_Fragment, { children: [_jsx(LakeText, { variant: "semibold", color: colors.gray[900], style: styles.selectListTitle, children: title }), _jsx(Separator, {})] })), _jsx(FlatList, { accessibilityRole: "list", data: items, ref: listRef, contentContainerStyle: styles.listContent, onKeyDown: e => {
156
+ ], children: placeholder ?? " " }))] }), _jsx(Fill, { minWidth: 8 }), !disabled && (_jsx(Icon, { color: colors.gray[900], name: visible ? "chevron-up-filled" : "chevron-down-filled", size: 16 }))] })] })) }), !hideErrors && (_jsx(LakeText, { variant: "smallRegular", color: colors.negative[500], style: styles.errorText, children: error ?? " " })), _jsxs(Popover, { role: "listbox", matchReferenceMinWidth: matchReferenceWidth, onDismiss: close, referenceRef: inputRef, returnFocus: true, visible: visible, children: [isNotNullish(title) && (_jsxs(_Fragment, { children: [_jsx(LakeText, { variant: "semibold", color: colors.gray[900], style: styles.selectListTitle, children: title }), _jsx(Separator, {})] })), _jsx(FlatList, { accessibilityRole: "list", data: items, ref: listRef, contentContainerStyle: styles.listContent, onKeyDown: e => {
157
157
  match(e.nativeEvent.key)
158
158
  .with("ArrowDown", () => {
159
159
  e.preventDefault();
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Option } from "@swan-io/boxed";
3
3
  import { Link } from "@swan-io/chicane";
4
4
  import { StyleSheet, View } from "react-native";
5
- import { match, P } from "ts-pattern";
5
+ import { P, match } from "ts-pattern";
6
6
  import { colors } from "../constants/design";
7
7
  import { Box } from "./Box";
8
8
  import { Grid } from "./Grid";
@@ -28,7 +28,7 @@ export declare const LakeTextInput: import("react").ForwardRefExoticComponent<Om
28
28
  disabled?: boolean | undefined;
29
29
  color?: "warning" | "current" | "gray" | "live" | "sandbox" | "positive" | "negative" | "partner" | "swan" | "shakespear" | "darkPink" | "sunglow" | "mediumSladeBlue" | undefined;
30
30
  multiline?: boolean | undefined;
31
- icon?: "lake-calendar-arrow-swap" | "lake-card" | "lake-card-one-off" | "lake-card-physical" | "lake-card-recurring" | "lake-card-single-use" | "lake-card-virtual" | "lake-chevron-double" | "lake-clipboard-bullet" | "lake-clock" | "lake-clock-arrow-swap" | "lake-close" | "lake-currencies" | "lake-delivery-grouped" | "lake-delivery-individual" | "lake-document-csv" | "lake-document-jpg" | "lake-document-pdf" | "lake-document-png" | "lake-document-xls" | "lake-email" | "lake-id-card" | "lake-inbox-empty" | "lake-menu" | "lake-people" | "lake-person-arrow-swap" | "lake-phone" | "lake-receipt" | "lake-settings" | "lake-signature" | "lake-transfer" | "lake-world-map" | "add-circle-filled" | "add-circle-regular" | "add-filled" | "approvals-app-filled" | "apps-list-filled" | "apps-list-regular" | "arrow-counterclockwise-filled" | "arrow-down-filled" | "arrow-down-regular" | "arrow-download-filled" | "arrow-left-filled" | "arrow-left-regular" | "arrow-right-filled" | "arrow-right-regular" | "arrow-swap-filled" | "arrow-swap-regular" | "arrow-up-filled" | "arrow-up-regular" | "beaker-filled" | "beaker-regular" | "board-regular" | "box-regular" | "building-bank-filled" | "building-bank-regular" | "building-filled" | "building-multiple-regular" | "building-regular" | "building-shop-regular" | "calendar-ltr-regular" | "cart-regular" | "chat-help-filled" | "chat-help-regular" | "checkmark-circle-regular" | "checkmark-filled" | "chevron-down-filled" | "chevron-left-filled" | "chevron-right-filled" | "chevron-up-down-regular" | "chevron-up-filled" | "clipboard-search-regular" | "clock-filled" | "clock-regular" | "cloud-sync-filled" | "cloud-sync-regular" | "code-filled" | "code-regular" | "color-regular" | "comment-note-regular" | "copy-filled" | "copy-regular" | "cursor-click-regular" | "database-filled" | "database-regular" | "delete-filled" | "delete-regular" | "desktop-regular" | "device-meeting-room-regular" | "dismiss-circle-regular" | "dismiss-filled" | "dismiss-regular" | "document-regular" | "earth-regular" | "edit-filled" | "edit-regular" | "error-circle-filled" | "error-circle-regular" | "eye-filled" | "eye-off-filled" | "eye-regular" | "filter-filled" | "flag-filled" | "flag-regular" | "flash-filled" | "flash-regular" | "form-new-filled" | "form-new-regular" | "hand-right-regular" | "image-add-filled" | "image-add-regular" | "image-filled" | "image-regular" | "info-filled" | "info-regular" | "key-regular" | "link-filled" | "live-filled" | "live-regular" | "lock-closed-filled" | "lock-closed-regular" | "lock-open-filled" | "lock-open-regular" | "mail-filled" | "mail-regular" | "money-regular" | "more-vertical-filled" | "open-filled" | "open-regular" | "options-regular" | "paint-brush-filled" | "paint-brush-regular" | "pause-regular" | "payment-filled" | "payment-regular" | "people-add-regular" | "people-community-filled" | "people-community-regular" | "people-filled" | "people-regular" | "people-team-regular" | "person-accounts-filled" | "person-accounts-regular" | "person-add-regular" | "person-call-filled" | "person-call-regular" | "person-filled" | "person-lock-regular" | "person-regular" | "phone-filled" | "phone-regular" | "pin-regular" | "play-filled" | "play-regular" | "preview-link-filled" | "question-circle-regular" | "receipt-money-filled" | "receipt-money-regular" | "rocket-regular" | "search-filled" | "send-filled" | "send-regular" | "settings-filled" | "settings-regular" | "shield-checkmark-filled" | "shield-checkmark-regular" | "shield-error-regular" | "shield-regular" | "sign-out-regular" | "signature-filled" | "signature-regular" | "subtract-circle-filled" | "subtract-circle-regular" | "target-arrow-regular" | "warning-filled" | "warning-regular" | "window-dev-tools-filled" | "window-dev-tools-regular" | undefined;
31
+ icon?: "lake-calendar-arrow-swap" | "lake-card" | "lake-card-one-off" | "lake-card-physical" | "lake-card-recurring" | "lake-card-single-use" | "lake-card-virtual" | "lake-chevron-double" | "lake-clipboard-bullet" | "lake-clock" | "lake-clock-arrow-swap" | "lake-close" | "lake-currencies" | "lake-delivery-grouped" | "lake-delivery-individual" | "lake-document-csv" | "lake-document-jpg" | "lake-document-pdf" | "lake-document-png" | "lake-document-xls" | "lake-email" | "lake-id-card" | "lake-inbox-empty" | "lake-menu" | "lake-people" | "lake-person-arrow-swap" | "lake-phone" | "lake-receipt" | "lake-settings" | "lake-signature" | "lake-transfer" | "lake-world-map" | "add-circle-filled" | "add-circle-regular" | "add-filled" | "approvals-app-filled" | "apps-list-filled" | "apps-list-regular" | "arrow-counterclockwise-filled" | "arrow-down-filled" | "arrow-down-regular" | "arrow-download-filled" | "arrow-left-filled" | "arrow-left-regular" | "arrow-right-filled" | "arrow-right-regular" | "arrow-swap-filled" | "arrow-swap-regular" | "arrow-up-filled" | "arrow-up-regular" | "arrow-upload-filled" | "arrow-upload-regular" | "beaker-filled" | "beaker-regular" | "board-regular" | "box-regular" | "building-bank-filled" | "building-bank-regular" | "building-filled" | "building-multiple-regular" | "building-regular" | "building-shop-regular" | "calendar-ltr-regular" | "cart-regular" | "chat-help-filled" | "chat-help-regular" | "checkmark-circle-regular" | "checkmark-filled" | "chevron-down-filled" | "chevron-left-filled" | "chevron-right-filled" | "chevron-up-down-regular" | "chevron-up-filled" | "clipboard-search-regular" | "clock-filled" | "clock-regular" | "cloud-sync-filled" | "cloud-sync-regular" | "code-filled" | "code-regular" | "color-regular" | "comment-note-regular" | "copy-filled" | "copy-regular" | "cursor-click-regular" | "database-filled" | "database-regular" | "delete-filled" | "delete-regular" | "desktop-regular" | "device-meeting-room-regular" | "dismiss-circle-regular" | "dismiss-filled" | "dismiss-regular" | "document-regular" | "earth-regular" | "edit-filled" | "edit-regular" | "error-circle-filled" | "error-circle-regular" | "eye-filled" | "eye-off-filled" | "eye-regular" | "filter-filled" | "flag-filled" | "flag-regular" | "flash-filled" | "flash-regular" | "form-new-filled" | "form-new-regular" | "hand-right-regular" | "image-add-filled" | "image-add-regular" | "image-filled" | "image-regular" | "info-filled" | "info-regular" | "key-regular" | "link-filled" | "live-filled" | "live-regular" | "lock-closed-filled" | "lock-closed-regular" | "lock-open-filled" | "lock-open-regular" | "mail-filled" | "mail-regular" | "money-regular" | "more-vertical-filled" | "open-filled" | "open-regular" | "options-regular" | "paint-brush-filled" | "paint-brush-regular" | "pause-regular" | "payment-filled" | "payment-regular" | "people-add-regular" | "people-community-filled" | "people-community-regular" | "people-filled" | "people-regular" | "people-team-regular" | "person-accounts-filled" | "person-accounts-regular" | "person-add-regular" | "person-call-filled" | "person-call-regular" | "person-filled" | "person-lock-regular" | "person-regular" | "phone-filled" | "phone-regular" | "pin-regular" | "play-filled" | "play-regular" | "preview-link-filled" | "question-circle-regular" | "receipt-money-filled" | "receipt-money-regular" | "rocket-regular" | "search-filled" | "send-filled" | "send-regular" | "settings-filled" | "settings-regular" | "shield-checkmark-filled" | "shield-checkmark-regular" | "shield-error-regular" | "shield-regular" | "sign-out-regular" | "signature-filled" | "signature-regular" | "subtract-circle-filled" | "subtract-circle-regular" | "target-arrow-regular" | "warning-filled" | "warning-regular" | "window-dev-tools-filled" | "window-dev-tools-regular" | undefined;
32
32
  unit?: string | undefined;
33
33
  keyboardType?: TextInputProps["keyboardType"];
34
34
  pattern?: string | undefined;
@@ -159,5 +159,5 @@ maxCharCount, ...props }, forwardRef) => {
159
159
  isFocused && styles.focused,
160
160
  isFocused && { borderColor: colors[color][500] },
161
161
  stylesFromProps,
162
- ] }), validating && (_jsx(ActivityIndicator, { size: "small", style: styles.endIcon, color: colors.current[500] })), !validating && hasError && (_jsx(Icon, { name: "warning-regular", size: 20, color: colors.negative[400], style: [styles.endIcon, readOnly && styles.readOnlyEndIcon] })), !validating && !hasError && valid && (_jsx(Icon, { name: "checkmark-filled", size: 20, color: colors.positive[400], style: [styles.endIcon, readOnly && styles.readOnlyEndIcon] })), isNotNullish(icon) && (_jsx(Icon, { name: icon, size: 20, color: colors.current.primary, style: styles.icon }))] }), isNotNullish(unit) && (_jsx(LakeText, { color: colors.gray[900], style: [styles.unit, (disabled || readOnly) && styles.unitDisabled], children: unit }))] }), children] }), !hideErrors && (_jsxs(Box, { direction: "row", justifyContent: "spaceBetween", style: styles.errorContainer, children: [_jsx(LakeText, { color: colors.negative[400], children: error ?? " " }), isNotNullish(maxCharCount) && (_jsxs(_Fragment, { children: [_jsx(Fill, { minWidth: 4 }), _jsxs(LakeText, { variant: "smallRegular", color: charCount > maxCharCount ? colors.negative[500] : colors.gray[400], style: styles.descriptionLimitation, children: [charCount, " / ", maxCharCount] })] }))] }))] }));
162
+ ] }), validating && (_jsx(ActivityIndicator, { size: "small", style: styles.endIcon, color: colors.current[500] })), !validating && hasError && (_jsx(Icon, { name: "warning-regular", size: 20, color: colors.negative[400], style: [styles.endIcon, readOnly && styles.readOnlyEndIcon] })), !validating && !hasError && valid && (_jsx(Icon, { name: "checkmark-filled", size: 20, color: colors.positive[400], style: [styles.endIcon, readOnly && styles.readOnlyEndIcon] })), isNotNullish(icon) && (_jsx(Icon, { name: icon, size: 20, color: colors.current.primary, style: styles.icon }))] }), isNotNullish(unit) && (_jsx(LakeText, { color: colors.gray[900], style: [styles.unit, (disabled || readOnly) && styles.unitDisabled], children: unit }))] }), children] }), !hideErrors && (_jsxs(Box, { direction: "row", justifyContent: "spaceBetween", style: styles.errorContainer, children: [_jsx(LakeText, { variant: "smallRegular", color: colors.negative[500], children: error ?? " " }), isNotNullish(maxCharCount) && (_jsxs(_Fragment, { children: [_jsx(Fill, { minWidth: 4 }), _jsxs(LakeText, { variant: "smallRegular", color: charCount > maxCharCount ? colors.negative[500] : colors.gray[400], style: styles.descriptionLimitation, children: [charCount, " / ", maxCharCount] })] }))] }))] }));
163
163
  });
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
- import { PressableTextProps } from "./Pressable";
3
2
  import { HrefAttrs, PressableStateCallbackType, Text, TextProps } from "react-native";
4
3
  import { Except } from "type-fest";
4
+ import { PressableTextProps } from "./Pressable";
5
5
  export type LinkProps = Except<PressableTextProps, "hrefAttrs" | "style" | "onPress" | "children"> & {
6
6
  to: string;
7
7
  replace?: boolean;
@@ -1,8 +1,8 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { useLinkProps } from "@swan-io/chicane";
3
- import { PressableText } from "./Pressable";
4
- import { isNotNullish } from "../utils/nullish";
5
3
  import { forwardRef, memo } from "react";
4
+ import { isNotNullish } from "../utils/nullish";
5
+ import { PressableText } from "./Pressable";
6
6
  export const Link = memo(forwardRef(({ accessibilityRole = "link", children, disabled = false, onPress, replace = false, download = false, style, target, to, ariaCurrentValue = "page", focusable, ...props }, forwardedRef) => {
7
7
  const { active, onClick } = useLinkProps({ href: to, replace, target });
8
8
  return (_jsx(PressableText, { ...props, accessibilityRole: accessibilityRole, accessibilityDisabled: disabled, focusable: isNotNullish(focusable) ? focusable : !disabled, accessibilityCurrent: active ? ariaCurrentValue : undefined, href: to, onPress: (event) => {
@@ -1,13 +1,13 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { cloneElement, Fragment, useCallback, useEffect, useId, useMemo, useRef, useState, } from "react";
3
3
  import { ScrollView, StyleSheet, View } from "react-native";
4
+ import { commonStyles } from "../constants/commonStyles";
4
5
  import { backgroundColor, breakpoints, colors, spacings } from "../constants/design";
5
6
  import { useHover } from "../hooks/useHover";
6
7
  import { isNotNullish, isNullish } from "../utils/nullish";
7
8
  import { PlainListViewPlaceholder, } from "./FixedListView";
8
9
  import { LakeHeading } from "./LakeHeading";
9
10
  import { ResponsiveContainer } from "./ResponsiveContainer";
10
- import { commonStyles } from "../constants/commonStyles";
11
11
  const INHERIT = "inherit";
12
12
  const styles = StyleSheet.create({
13
13
  root: {
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- import { Tag } from "./Tag";
3
2
  import { match } from "ts-pattern";
4
3
  import { Icon } from "./Icon";
4
+ import { Tag } from "./Tag";
5
5
  export const ProjectEnvTag = (props) => {
6
6
  const isLive = props.projectEnv === "Live";
7
7
  return (_jsx(Tag, { color: isLive ? "live" : "sandbox", children: match(props)
@@ -1,8 +1,8 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
- import { Separator } from "./Separator";
3
- import { isNotNullish } from "../utils/nullish";
4
2
  import { Children } from "react";
5
3
  import { View } from "react-native";
4
+ import { isNotNullish } from "../utils/nullish";
5
+ import { Separator } from "./Separator";
6
6
  export const ReadOnlyFieldList = ({ children }) => (_jsx(_Fragment, { children: Children.toArray(children)
7
7
  .filter(isNotNullish)
8
8
  .map((node, index) => (_jsxs(View, { children: [index !== 0 && _jsx(Separator, { horizontal: false, space: 8 }), node] }, index))) }));
@@ -1,5 +1,5 @@
1
- import { FocusTrapRef } from "./FocusTrap";
2
1
  import { ReactNode } from "react";
2
+ import { FocusTrapRef } from "./FocusTrap";
3
3
  import { Context } from "./ResponsiveContainer";
4
4
  type Props = {
5
5
  visible: boolean;
@@ -1,14 +1,14 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { FocusTrap } from "./FocusTrap";
3
- import { TransitionView } from "./TransitionView";
4
- import { backgroundColor, breakpoints } from "../constants/design";
5
- import { forwardRef, Suspense, useEffect, useState } from "react";
2
+ import { Suspense, forwardRef, useEffect, useState } from "react";
6
3
  import { StyleSheet, View } from "react-native";
4
+ import { backgroundColor, breakpoints } from "../constants/design";
7
5
  import { useBodyClassName } from "../hooks/useBodyClassName";
6
+ import { FocusTrap } from "./FocusTrap";
8
7
  import { LoadingView } from "./LoadingView";
9
8
  import { Portal } from "./Portal";
10
9
  import { Pressable } from "./Pressable";
11
10
  import { ResponsiveContainer } from "./ResponsiveContainer";
11
+ import { TransitionView } from "./TransitionView";
12
12
  const BACKGROUND_COLOR = "rgba(0, 0, 0, 0.6)";
13
13
  const styles = StyleSheet.create({
14
14
  root: {
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  export declare const spacingValues: readonly [4, 8, 12, 16, 20, 24, 32, 40, 48, 72, 96];
3
- export type SpacingValue = typeof spacingValues[number];
3
+ export type SpacingValue = (typeof spacingValues)[number];
4
4
  type Props = {
5
5
  height?: SpacingValue;
6
6
  width?: SpacingValue;
@@ -1,9 +1,9 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { forwardRef, memo, useEffect } from "react";
3
3
  import { Animated, Pressable, StyleSheet, View } from "react-native";
4
- import { Icon } from "./Icon";
5
4
  import { backgroundColor, colors, shadows } from "../constants/design";
6
5
  import { useAnimatedValue } from "../hooks/useAnimatedValue";
6
+ import { Icon } from "./Icon";
7
7
  const WIDTH = 36;
8
8
  const BUTTON_SIZE = 16;
9
9
  const PADDING = 2;
@@ -1,5 +1,13 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { useLocation } from "@swan-io/chicane";
3
+ import { Fragment, forwardRef, useCallback, useEffect, useLayoutEffect, useMemo, useReducer, useRef, useState, } from "react";
4
+ import { StyleSheet, Text, View } from "react-native";
5
+ import { P, match } from "ts-pattern";
6
+ import { animations, backgroundColor, colors, negativeSpacings, radii, shadows, spacings, texts, } from "../constants/design";
7
+ import { useHover } from "../hooks/useHover";
8
+ import { useMergeRefs } from "../hooks/useMergeRefs";
9
+ import { noop } from "../utils/function";
10
+ import { isNotNullish, isNullish } from "../utils/nullish";
3
11
  import { Box } from "./Box";
4
12
  import { FocusTrap } from "./FocusTrap";
5
13
  import { Icon } from "./Icon";
@@ -8,14 +16,6 @@ import { Link } from "./Link";
8
16
  import { PressableText } from "./Pressable";
9
17
  import { Space } from "./Space";
10
18
  import { TransitionView } from "./TransitionView";
11
- import { animations, backgroundColor, colors, negativeSpacings, radii, shadows, spacings, texts, } from "../constants/design";
12
- import { useHover } from "../hooks/useHover";
13
- import { useMergeRefs } from "../hooks/useMergeRefs";
14
- import { isNotNullish, isNullish } from "../utils/nullish";
15
- import { forwardRef, Fragment, useCallback, useEffect, useLayoutEffect, useMemo, useReducer, useRef, useState, } from "react";
16
- import { StyleSheet, Text, View } from "react-native";
17
- import { match, P } from "ts-pattern";
18
- import { noop } from "../utils/function";
19
19
  const TABS_HEIGHT = 40;
20
20
  export const tabsViewHeight = TABS_HEIGHT + 1;
21
21
  const styles = StyleSheet.create({
@@ -1,13 +1,13 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
- import { Box } from "./Box";
3
- import { Portal } from "./Portal";
4
- import { animations, colors, shadows } from "../constants/design";
5
2
  import { memo, useEffect, useState } from "react";
6
3
  import { Animated, StyleSheet, View } from "react-native";
7
4
  import { match } from "ts-pattern";
5
+ import { animations, colors, shadows } from "../constants/design";
8
6
  import { hideToast, useToasts } from "../state/toasts";
7
+ import { Box } from "./Box";
9
8
  import { Icon } from "./Icon";
10
9
  import { LakeText } from "./LakeText";
10
+ import { Portal } from "./Portal";
11
11
  import { Pressable } from "./Pressable";
12
12
  import { Space } from "./Space";
13
13
  import { TransitionGroupView } from "./TransitionGroupView";
@@ -2,7 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { Array, Option } from "@swan-io/boxed";
3
3
  import { Children, useMemo, useReducer, useRef } from "react";
4
4
  import { View } from "react-native";
5
- import { match, P } from "ts-pattern";
5
+ import { P, match } from "ts-pattern";
6
6
  import { usePreviousValue } from "../hooks/usePreviousValue";
7
7
  import { TransitionView } from "./TransitionView";
8
8
  export const TransitionGroupView = ({ children, enter, leave, style, childStyle, pointerEvents, }) => {
@@ -1,3 +1,3 @@
1
1
  import { AsyncData, Future, Result } from "@swan-io/boxed";
2
- import { AnyVariables, CombinedError, MutationProps } from "urql";
3
- export declare const useUrqlMutation: <Data, Variables extends AnyVariables>(query: any) => readonly [AsyncData<Result<Data, Error>>, (input: Variables) => Future<Result<Data, Error | CombinedError>>];
2
+ import { AnyVariables, CombinedError, TypedDocumentNode } from "urql";
3
+ export declare const useUrqlMutation: <Data, Variables extends AnyVariables>(query: TypedDocumentNode<Data, Variables>) => readonly [AsyncData<Result<Data, Error>>, (input: Variables) => Future<Result<Data, Error | CombinedError>>];
@@ -17,15 +17,17 @@
17
17
  "arrow-swap-regular": "m14.78 2.22 4.5 4.5c.26.26.29.68.07.97l-.07.08-4.5 4.5a.75.75 0 0 1-1.13-.97l.07-.08L16.94 8H5.24a.75.75 0 0 1-.74-.65v-.1c0-.38.27-.7.64-.75H16.94l-3.22-3.22a.75.75 0 0 1-.07-.98l.07-.08a.75.75 0 0 1 .98-.07l.08.07 4.5 4.5-4.5-4.5Zm4.72 14.43v.1c0 .38-.28.7-.64.74l-.1.01H7.06l3.22 3.22c.27.27.3.68.08.98l-.08.08a.75.75 0 0 1-.97.07l-.09-.07-4.5-4.5a.75.75 0 0 1-.07-.97l.07-.09 4.5-4.5a.75.75 0 0 1 1.14.98l-.08.08L7.07 16h11.69c.38 0 .7.28.74.65v.1-.1Z",
18
18
  "arrow-up-filled": "M4.28 10.3a1 1 0 0 0 1.43 1.4L11 6.33V20a1 1 0 1 0 2 0V6.33l5.28 5.37a1 1 0 0 0 1.43-1.4l-6.82-6.93c-.5-.5-1.3-.5-1.78 0L4.28 10.3Z",
19
19
  "arrow-up-regular": "M4.2 10.73a.75.75 0 0 0 1.1 1.04l5.95-6.25v14.73a.75.75 0 0 0 1.5 0V5.52l5.95 6.25a.75.75 0 0 0 1.1-1.04l-7.08-7.42a1 1 0 0 0-1.44 0L4.2 10.73Z",
20
+ "arrow-upload-filled": "M5.25 3.5h13.5a.75.75 0 0 0 .1-1.5H5.25a.75.75 0 0 0-.1 1.49h.1ZM11.88 22H12a1 1 0 0 0 1-.88V8.4l3.3 3.3a1 1 0 0 0 1.31.08l.1-.09a1 1 0 0 0 .08-1.32l-.08-.1-5-4.99a1 1 0 0 0-1.32-.08l-.1.08-5 5a1 1 0 0 0 1.32 1.5l.1-.09L11 8.42V21a1 1 0 0 0 .88 1Z",
21
+ "arrow-upload-regular": "M18.25 3.51a.75.75 0 1 0 0-1.5h-13a.75.75 0 1 0 0 1.5h13ZM11.65 22h.1c.38 0 .7-.28.74-.64l.01-.1V7.56l3.72 3.72c.27.27.68.29.98.07l.08-.07a.75.75 0 0 0 .07-.98l-.07-.08-5-5a.75.75 0 0 0-.97-.07l-.09.07-5 5a.75.75 0 0 0 .98 1.13l.08-.07L11 7.58v13.67c0 .38.28.7.65.75Z",
20
22
  "beaker-filled": "M9 4.5v6.24c0 .37-.1.74-.27 1.07L7.53 14h8.93l-1.19-2.19c-.18-.33-.27-.7-.27-1.07V4.5h1A.75.75 0 0 0 16 3H8a.75.75 0 0 0 0 1.5h1Zm8.27 11H6.73l-1.59 2.91A1.75 1.75 0 0 0 6.68 21h10.64a1.75 1.75 0 0 0 1.54-2.59l-1.59-2.91Z",
21
23
  "beaker-regular": "M8 4.5h1v6.24c0 .37-.1.74-.27 1.07l-3.59 6.6A1.75 1.75 0 0 0 6.68 21h10.64a1.75 1.75 0 0 0 1.54-2.59l-3.59-6.6c-.18-.33-.27-.7-.27-1.07V4.5h1A.75.75 0 0 0 16 3H8a.75.75 0 0 0 0 1.5Zm2.5 6.24V4.5h3v6.24c0 .62.16 1.24.45 1.79l.8 1.47h-5.5l.8-1.47c.3-.55.45-1.17.45-1.8ZM8.43 15.5h7.14l1.97 3.63a.25.25 0 0 1-.22.37H6.68a.25.25 0 0 1-.22-.37l1.97-3.63Z",
22
24
  "board-regular": "M18.25 2.5a3.25 3.25 0 0 1 3.25 3.06v12.19c0 1.8-1.45 3.25-3.25 3.25h-12a3.25 3.25 0 0 1-3.24-3.06L3 17.75v-12C3 3.95 4.46 2.5 6.25 2.5h12Zm-6.75 7h-7v8.41c.09.9.84 1.6 1.75 1.6h5.25V9.5Zm8.5 6h-7v4h5.25c.97 0 1.75-.78 1.75-1.75V15.5ZM18.25 4H13v10h7V5.59a1.75 1.75 0 0 0-1.75-1.6ZM11.5 4H6.11c-.9.08-1.6.83-1.6 1.75L4.5 8h7V4Z",
23
25
  "box-regular": "M10.6 2.51c.9-.36 1.9-.36 2.8 0l7.5 3.04c.67.27 1.1.91 1.1 1.62v9.66c0 .71-.43 1.35-1.1 1.62l-7.5 3.04c-.9.37-1.9.37-2.8 0l-7.5-3.04c-.67-.27-1.1-.91-1.1-1.62V7.17c0-.7.43-1.35 1.1-1.62l7.5-3.04Zm2.25 1.4a2.25 2.25 0 0 0-1.7 0l-1.9.77 7.52 2.93 2.67-1.03-6.6-2.68Zm1.84 4.5L7.21 5.5 4.6 6.56 12 9.45l2.7-1.04ZM3.5 16.83c0 .1.06.2.16.23l7.5 3.04.09.04v-9.38L3.5 7.75v9.08Zm9.35 3.27 7.5-3.04c.09-.04.15-.13.15-.23V7.77l-7.75 3v9.37l.1-.04Z",
24
26
  "building-bank-filled": "M10.97 2.32a1.75 1.75 0 0 1 2.06 0l7.42 5.42c.98.71.48 2.26-.73 2.26H4.28a1.25 1.25 0 0 1-.73-2.26l7.42-5.42ZM13 6.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM11.25 16h-2v-5h2v5Zm3.5 0h-2v-5h2v5Zm3.75 0h-2.25v-5h2.25v5Zm.25 1H5.25C4.01 17 3 18 3 19.25v.5c0 .41.34.75.75.75h16.5c.41 0 .75-.34.75-.75v-.5c0-1.24-1-2.25-2.25-2.25Zm-11-1H5.5v-5h2.25v5Z",
25
27
  "building-bank-regular": "M13 6.25a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm.03-3.93a1.75 1.75 0 0 0-2.06 0L3.55 7.74c-.98.71-.48 2.26.73 2.26h.22v5.8A2.75 2.75 0 0 0 3 18.25v1.5c0 .41.34.75.75.75h16.5c.41 0 .75-.34.75-.75v-1.5c0-1.07-.61-2-1.5-2.45V10h.22c1.2 0 1.71-1.55.73-2.26l-7.42-5.42Zm-1.18 1.22c.09-.07.21-.07.3 0l6.8 4.96H5.05l6.8-4.96ZM18 10v5.5h-2V10h2Zm-3.5 0v5.5h-1.75V10h1.75Zm-3.25 0v5.5H9.5V10h1.75Zm-5.5 7h12.5c.69 0 1.25.56 1.25 1.25V19h-15v-.75c0-.69.56-1.25 1.25-1.25ZM6 15.5V10h2v5.5H6Z",
26
- "building-filled": "M8.5 12.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-1-2.5a1 1 0 1 0 2 0 1 1 0 0 0-2 0ZM12 5.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm3.5 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM4 4.25C4 3.01 5 2 6.25 2h8c1.24 0 2.25 1 2.25 2.25V9.5h1.25c1.25 0 2.25 1 2.25 2.25v9c0 .41-.33.75-.75.75H16.5v-4.25a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0-.75.75v4.25H4.75a.75.75 0 0 1-.75-.75V4.25ZM9 21.5h2.25V18H9v3.5Zm3.75 0H15V18h-2.25v3.5ZM8.5 5.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM11 10a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm1 2.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
28
+ "building-filled": "M4 4.25C4 3.01 5 2 6.25 2h8c1.24 0 2.25 1 2.25 2.25V9.5h1.25c1.24 0 2.25 1 2.25 2.25v9.5c0 .41-.34.75-.75.75H16.5v-3.75c0-.69-.56-1.25-1.25-1.25h-6.5c-.69 0-1.25.56-1.25 1.25V22H4.75a.75.75 0 0 1-.75-.75v-17ZM15 18.5V22h-2.25v-3.5H15Zm-3.75 0V22H9v-3.5h2.25ZM7.5 6.5a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm1 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0-3.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM12 5.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm3.5 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM12 9a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
27
29
  "building-multiple-regular": "M8 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm0 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7-3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1-4v-.75C14 3.01 13 2 11.75 2h-6.5C4.01 2 3 3 3 4.25v16.5c0 .41.34.75.75.75h16.5c.41 0 .75-.34.75-.75V7.25C21 6.01 20 5 18.75 5H14Zm-9.5-.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75V5h-.25C11.01 5 10 6 10 7.25V20H4.5V4.25ZM14.5 20v-1.5h2V20h-2Zm3.5-2.25a.75.75 0 0 0-.75-.75h-3.5a.75.75 0 0 0-.75.75V20h-1.5V7.25c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75V20H18v-2.25Z",
28
- "building-regular": "M8.5 5.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-1 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1-4.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM11 6.5a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm2.5 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0ZM12 9a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM6.25 2C5.01 2 4 3 4 4.25v16.5c0 .41.34.75.75.75h14.5c.42 0 .75-.34.75-.75v-9c0-1.24-1-2.25-2.25-2.25H16.5V4.25c0-1.24-1-2.25-2.25-2.25h-8ZM5.5 4.25c0-.41.34-.75.75-.75h8c.41 0 .75.34.75.75v6c0 .41.34.75.75.75h2c.42 0 .75.34.75.75V20h-2v-2.75a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0-.75.75V20h-2V4.25ZM15 18v2h-2.25v-2H15Zm-3.75 0v2H9v-2h2.25Z",
30
+ "building-regular": "M6.25 3.5a.75.75 0 0 0-.75.75V20.5h2v-2.75c0-.69.56-1.25 1.25-1.25h6.5c.69 0 1.25.56 1.25 1.25v2.75h2v-8.75a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 1-.75-.75v-6a.75.75 0 0 0-.75-.75h-8ZM9 18v2.5h2.25V18H9Zm3.75 0v2.5H15V18h-2.25Zm6.5 4H4.75a.75.75 0 0 1-.75-.75v-17C4 3.01 5 2 6.25 2h8c1.24 0 2.25 1 2.25 2.25V9.5h1.25c1.24 0 2.25 1 2.25 2.25v9.5c0 .41-.34.75-.75.75ZM7.5 6.5a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0-3.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM12 5.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm3.5 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM12 9a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
29
31
  "building-shop-regular": "M18 2c.17 0 .34.06.47.17l.08.07 3.27 3.53.03.04c.1.13.15.29.15.44v1.92c0 1-.38 1.9-1 2.58v10.5c0 .38-.28.7-.65.74l-.1.01H3.75a.75.75 0 0 1-.74-.65v-10.6a3.82 3.82 0 0 1-1-2.36V6.3c-.02-.14.01-.28.09-.4l.06-.1.04-.05 3.25-3.5c.12-.13.28-.2.45-.23L6 2h12Zm-2.92 8.44-.01.02a3.83 3.83 0 0 1-6.15-.02 3.82 3.82 0 0 1-4.42 1.32v8.74H6v-6.75c0-.38.28-.7.65-.74h4.6c.38 0 .69.27.74.64v6.85h7.5v-8.74a3.82 3.82 0 0 1-4.4-1.32ZM10.5 14.5h-3v6h3v-6Zm6.76-1.5c.37 0 .69.28.74.65v3.6c0 .38-.28.7-.64.75h-3.6a.75.75 0 0 1-.75-.65v-3.6c0-.38.28-.7.64-.74h3.6Zm-.76 1.5h-2v2h2v-2ZM8.17 7H3.5V8.34l.04.23.03.16.05.17.05.15.04.09.1.2.1.16.06.07.13.16.14.14.1.09.04.03c.32.25.7.42 1.11.48l.18.02h.16c1.24 0 2.25-.95 2.33-2.16V7Zm6.16 0H9.67v1.17c0 1.18.87 2.15 2.01 2.3l.16.02H12c1.23 0 2.24-.95 2.33-2.16V7Zm6.17 0h-4.67v1.17c0 1.18.88 2.15 2.02 2.3l.16.02h.16c.56 0 1.08-.2 1.48-.52l.1-.08.1-.12.15-.17c.06-.06.1-.14.15-.21l.1-.19.07-.14.06-.15.03-.1.04-.15.03-.16.01-.16V7ZM9.06 3.5H6.33l-1.86 2h3.98l.61-2Zm4.3 0h-2.73l-.62 2h3.97l-.61-2Zm4.31 0h-2.73l.61 2h3.98l-1.86-2Z",
30
32
  "calendar-ltr-regular": "M17.75 3C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h11.5Zm1.75 5.5h-15v9.25c0 .97.78 1.75 1.75 1.75h11.5c.97 0 1.75-.78 1.75-1.75V8.5Zm-11.75 6a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm4.25 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm-4.25-4a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm4.25 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm4.25 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm1.5-6H6.25c-.97 0-1.75.78-1.75 1.75V7h15v-.75c0-.97-.78-1.75-1.75-1.75Z",
31
33
  "cart-regular": "M2.5 4.25c0-.41.34-.75.75-.75h.56c.95 0 1.52.64 1.84 1.23.22.4.38.86.5 1.27h12.6c.83 0 1.43.8 1.2 1.6L18.12 14a2.75 2.75 0 0 1-2.64 2H9.53a2.75 2.75 0 0 1-2.65-2.02l-.76-2.78-1.26-4.24v-.01c-.16-.57-.3-1.1-.52-1.5C4.13 5.07 3.96 5 3.8 5h-.56a.75.75 0 0 1-.75-.75Zm5.07 6.59.75 2.74c.15.54.65.92 1.21.92h5.95c.56 0 1.05-.37 1.2-.9l1.74-6.1H6.59l.97 3.29.01.05ZM11 19a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-1.5 0a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm8.5 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-1.5 0a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Z",
@@ -59,7 +61,7 @@
59
61
  "dismiss-circle-regular": "M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Zm3.45 4.9.08.07c.27.27.3.68.07.98l-.07.08L13.06 12l2.47 2.47c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07L12 13.06l-2.47 2.47a.75.75 0 0 1-.98.07l-.08-.07a.75.75 0 0 1-.07-.98l.07-.08L10.94 12 8.47 9.53a.75.75 0 0 1-.07-.98l.07-.08a.75.75 0 0 1 .98-.07l.08.07L12 10.94l2.47-2.47a.75.75 0 0 1 .98-.07Z",
60
62
  "dismiss-filled": "m4.21 4.39.08-.1a1 1 0 0 1 1.32-.08l.1.08L12 10.6l6.3-6.3a1 1 0 1 1 1.4 1.42L13.42 12l6.3 6.3a1 1 0 0 1 .08 1.31l-.08.1a1 1 0 0 1-1.32.08l-.1-.08L12 13.4l-6.3 6.3a1 1 0 0 1-1.4-1.42L10.58 12l-6.3-6.3a1 1 0 0 1-.08-1.31l.08-.1-.08.1Z",
61
63
  "dismiss-regular": "m4.4 4.55.07-.08a.75.75 0 0 1 .98-.07l.08.07L12 10.94l6.47-6.47a.75.75 0 1 1 1.06 1.06L13.06 12l6.47 6.47c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07L12 13.06l-6.47 6.47a.75.75 0 0 1-1.06-1.06L10.94 12 4.47 5.53a.75.75 0 0 1-.07-.98l.07-.08-.07.08Z",
62
- "document-regular": "M18.5 20a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62Zm5.91 3.8L13.6 2.58l-.09-.07a2.07 2.07 0 0 0-.22-.18l-.13-.07-.21-.12c-.2-.08-.41-.12-.63-.14L12.17 2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42Z",
64
+ "document-regular": "M6 2a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6A2 2 0 0 0 12.17 2H6Zm-.5 2c0-.28.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V4Zm11.88 4.5H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88Z",
63
65
  "earth-regular": "M10.95 2.05A10 10 0 1 1 4.1 18.13a10 10 0 0 1 6.83-16.08h.02ZM12 3.5h-.16c.12.25.26.53.37.85.35.92.67 2.28.1 3.49-.52 1.11-1.42 1.4-2.09 1.57l-.08.02c-.66.17-.9.24-1.1.52-.16.25-.14.58.07 1.25l.04.14c.09.26.18.57.23.87.07.36.09.82-.15 1.27-.23.45-.54.75-.9.95-.34.18-.7.25-.96.3l-.09.02c-.51.09-.76.13-1 .39-.19.2-.3.55-.38 1.07l-.06.65v.12c-.03.24-.05.52-.1.76a8.48 8.48 0 0 0 10.58 1.58l-.31-.35c-.34-.43-.79-1.16-.63-2.03.07-.42.3-.77.51-1.04.22-.27.49-.52.72-.74l.16-.14c.18-.17.33-.3.46-.44.17-.18.21-.26.21-.27.07-.22-.01-.38-.1-.45a.3.3 0 0 0-.2-.06.75.75 0 0 0-.4.14.91.91 0 0 1-.83.08c-.27-.1-.41-.31-.49-.43a2.75 2.75 0 0 1-.27-.77l-.12-.55-.04-.21a4.1 4.1 0 0 0-.13-.54l-.02-.04a6.23 6.23 0 0 0-.3-.42l-.1-.14c-.16-.21-.36-.47-.52-.71-.2-.3-.42-.7-.49-1.1a1.39 1.39 0 0 1 .54-1.38 13 13 0 0 0 1.83-1.97c.29-.36.54-.7.73-.95A8.46 8.46 0 0 0 12 3.5Zm5.73 2.22-.76.98c-.6.75-1.4 1.68-2.05 2.19.03.1.1.26.26.5a10.73 10.73 0 0 0 .56.77c.18.23.42.54.52.84.1.23.15.52.2.76l.05.25.08.37c.6-.17 1.2-.07 1.67.3.6.46.86 1.28.62 2.07-.11.36-.36.66-.56.87l-.56.53-.13.12c-.23.2-.42.4-.57.57a.9.9 0 0 0-.2.36c-.04.22.06.51.32.84a3.14 3.14 0 0 0 .38.4 8.48 8.48 0 0 0 .17-12.72ZM3.5 12c0 1.4.34 2.72.94 3.88.08-.56.26-1.25.74-1.77a2.91 2.91 0 0 1 1.93-.86c.25-.04.4-.08.5-.14a.7.7 0 0 0 .3-.32c0-.03.03-.1 0-.33-.04-.18-.1-.38-.18-.63l-.06-.2c-.18-.6-.48-1.6.12-2.5.53-.8 1.36-1 1.9-1.13l.16-.04c.56-.15.88-.28 1.1-.76.3-.63.18-1.48-.14-2.32a7.61 7.61 0 0 0-.58-1.2A8.5 8.5 0 0 0 3.5 12Z",
64
66
  "edit-filled": "M15.9 3.05a3.58 3.58 0 1 1 5.05 5.06l-.89.9L15 3.93l.9-.9ZM13.93 5l-10 10c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07l10-10L13.94 5Z",
65
67
  "edit-regular": "M20.95 3.05a3.58 3.58 0 0 0-5.06 0L3.94 15c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07L20.95 8.11a3.58 3.58 0 0 0 0-5.06Zm-4 1.06a2.08 2.08 0 1 1 2.94 2.94l-.89.89L16.06 5l.9-.9ZM15 6.06 17.94 9l-10 10a1.6 1.6 0 0 1-.76.43l-3.42.8.82-3.4c.06-.3.21-.56.42-.77l10-10Z",
@@ -103,16 +105,16 @@
103
105
  "payment-filled": "M5.25 5A3.25 3.25 0 0 0 2 8.25V9.5h20V8.25C22 6.45 20.54 5 18.75 5H5.25ZM22 11H2v4.75C2 17.55 3.46 19 5.25 19h13.5c1.8 0 3.25-1.46 3.25-3.25V11Zm-6.25 3.5h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1 0-1.5Z",
104
106
  "payment-regular": "M15.75 14.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5ZM2 8.25C2 6.45 3.46 5 5.25 5h13.5C20.55 5 22 6.46 22 8.25v7.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 15.75v-7.5ZM20.5 9.5V8.25c0-.97-.78-1.75-1.75-1.75H5.25c-.97 0-1.75.78-1.75 1.75V9.5h17ZM3.5 11v4.75c0 .97.78 1.75 1.75 1.75h13.5c.97 0 1.75-.78 1.75-1.75V11h-17Z",
105
107
  "people-add-regular": "M5.5 7a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0ZM8 3a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm7.5 5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM17 5a3 3 0 1 0 0 6 3 3 0 0 0 0-6ZM4.25 13C3.01 13 2 14 2 15.25v.28a2.07 2.07 0 0 0 .01.2c.02.14.04.32.1.53.09.42.29.98.68 1.55C3.61 18.97 5.17 20 8 20c1.37 0 2.44-.24 3.28-.62a6.48 6.48 0 0 1-.27-1.55c-.65.38-1.6.67-3.01.67-2.42 0-3.49-.85-3.98-1.56a2.99 2.99 0 0 1-.52-1.43v-.26c0-.41.34-.75.75-.75h7.48c.25-.48.56-.92.91-1.32a2.24 2.24 0 0 0-.89-.18h-7.5ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z",
106
- "people-community-filled": "M14.75 15c.97 0 1.75.78 1.75 1.75v.96c.12 2.2-1.51 3.3-4.43 3.3-2.91 0-4.57-1.1-4.57-3.26v-1c0-.97.78-1.75 1.75-1.75h5.5Zm-11-5h4.38a4 4 0 0 0 1.06 3.85l.17.15h-.11a2.75 2.75 0 0 0-2.65 2h-.03C3.66 16 2 14.93 2 12.76v-1c0-.97.78-1.75 1.75-1.75Zm16.5 0c.97 0 1.75.78 1.75 1.75v.96c.12 2.2-1.51 3.3-4.43 3.3h-.17a2.76 2.76 0 0 0-2.45-2l-.2-.01h-.1a3.99 3.99 0 0 0 1.22-4h4.38ZM12 8a3 3 0 1 1 0 6 3 3 0 0 1 0-6ZM6.5 3a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm11 0a3 3 0 1 1 0 6 3 3 0 0 1 0-6Z",
107
- "people-community-regular": "M14.75 15c.97 0 1.75.78 1.75 1.75v.96c.12 2.2-1.51 3.3-4.43 3.3-2.91 0-4.57-1.1-4.57-3.26v-1c0-.97.78-1.75 1.75-1.75h5.5Zm0 1.5h-5.5a.25.25 0 0 0-.25.25v1c0 1.18.89 1.76 3.07 1.76 2.16 0 3-.56 2.93-1.76v-1a.25.25 0 0 0-.25-.25Zm-11-6.5h4.38a4 4 0 0 0-.1 1.5H3.75a.25.25 0 0 0-.25.25v1c0 1.18.89 1.76 3.07 1.76.46 0 .86-.03 1.2-.08-.56.36-.98.92-1.17 1.58h-.03C3.66 16 2 14.9 2 12.75v-1c0-.97.78-1.75 1.75-1.75Zm16.5 0c.97 0 1.75.78 1.75 1.75v.96c.12 2.2-1.51 3.3-4.43 3.3h-.17a2.76 2.76 0 0 0-1.22-1.6c.39.06.85.1 1.39.1 2.16 0 3-.56 2.93-1.76v-1a.25.25 0 0 0-.25-.25h-4.28a4.05 4.05 0 0 0-.1-1.5h4.38ZM12 8a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM6.5 3a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm11 0a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm-11 1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm11 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",
108
+ "people-community-filled": "M7.5 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM2 10.77C2 9.79 2.8 9 3.77 9h4.77a3.98 3.98 0 0 0 .81 5H8.27c-1.19 0-2.2.75-2.6 1.8a4.6 4.6 0 0 1-2.97-2.1 5.15 5.15 0 0 1-.7-2.57v-.36ZM16 11c0-.73-.2-1.41-.54-2h4.77c.98 0 1.77.8 1.77 1.77v.36c0 .2 0 1.4-.7 2.57a4.6 4.6 0 0 1-2.98 2.1 2.77 2.77 0 0 0-2.59-1.8h-1.08A3.99 3.99 0 0 0 16 11Zm3.5-6a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-13 11.77c0-.98.8-1.77 1.77-1.77h7.46c.98 0 1.77.8 1.77 1.77v.36c0 .2 0 1.4-.7 2.57-.74 1.24-2.19 2.3-4.8 2.3s-4.06-1.06-4.8-2.3a5.15 5.15 0 0 1-.7-2.57v-.36ZM12 14a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z",
109
+ "people-community-regular": "M7.5 3.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM4.5 5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm-.73 4C2.79 9 2 9.8 2 10.77v.36c0 .2 0 1.4.7 2.57a4.6 4.6 0 0 0 2.98 2.1c.2-.55.58-1.02 1.06-1.34-1.6-.17-2.36-.88-2.75-1.53a3.65 3.65 0 0 1-.49-1.8v-.36c0-.15.12-.27.27-.27h4.26c.07-.54.24-1.05.5-1.5H3.78Zm11.7 0c.26.45.43.96.5 1.5h4.26c.15 0 .27.12.27.27v.36c0 .14 0 1-.49 1.8-.39.65-1.14 1.36-2.75 1.53.48.32.86.79 1.06 1.34a4.6 4.6 0 0 0 2.98-2.1c.7-1.16.7-2.36.7-2.57v-.36C22 9.79 21.2 9 20.23 9h-4.77ZM15 5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm1.5-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6ZM12 9.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM9 11a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm-2.5 5.77c0-.98.8-1.77 1.77-1.77h7.46c.98 0 1.77.8 1.77 1.77v.36c0 .2 0 1.4-.7 2.57-.74 1.24-2.19 2.3-4.8 2.3s-4.06-1.06-4.8-2.3a5.15 5.15 0 0 1-.7-2.57v-.36Zm1.77-.27a.27.27 0 0 0-.27.27v.36c0 .14 0 1 .49 1.8.44.74 1.37 1.57 3.51 1.57 2.14 0 3.07-.83 3.51-1.57.49-.8.49-1.66.49-1.8v-.36a.27.27 0 0 0-.27-.27H8.27Z",
108
110
  "people-filled": "M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm9 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM4.25 14C3.01 14 2 15 2 16.25v.25S2 21 8 21s6-4.5 6-4.5v-.25c0-1.24-1-2.25-2.25-2.25h-7.5ZM17 19.5a7.33 7.33 0 0 1-2.75-.46 5.5 5.5 0 0 0 .75-2.49v-.3c0-.87-.34-1.66-.9-2.25H19.8c1.22 0 2.2.98 2.2 2.2 0 0 0 3.3-5 3.3Z",
109
111
  "people-regular": "M5.5 8a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0ZM8 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm7.5 5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM17 6a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-2.75 13.04c.7.28 1.6.46 2.75.46 2.28 0 3.59-.7 4.3-1.56a3.14 3.14 0 0 0 .7-1.73v-.03c0-1.2-.97-2.18-2.18-2.18H14.1c.4.41.68.93.81 1.5h4.91a.68.68 0 0 1 .68.7l-.04.18c-.04.16-.13.38-.32.6C19.8 17.42 18.97 18 17 18c-.98 0-1.67-.15-2.17-.34-.1.4-.28.88-.58 1.38ZM4.25 14C3.01 14 2 15 2 16.25v.28a2.07 2.07 0 0 0 .01.2c.02.14.04.32.1.53.09.42.29.98.68 1.55C3.61 19.97 5.17 21 8 21s4.39-1.03 5.2-2.2a4.48 4.48 0 0 0 .8-2.27v-.28c0-1.24-1-2.25-2.25-2.25h-7.5Zm-.75 2.5v-.25c0-.41.34-.75.75-.75h7.5c.41 0 .75.34.75.75v.34l-.06.33c-.07.28-.2.65-.46 1.02-.5.71-1.56 1.56-3.98 1.56s-3.49-.85-3.98-1.56a2.99 2.99 0 0 1-.52-1.43Z",
110
112
  "people-team-regular": "M14.75 10c.97 0 1.75.78 1.75 1.75v4.75a4.5 4.5 0 0 1-9 0v-4.75c0-.97.79-1.75 1.75-1.75h5.5Zm0 1.5h-5.5a.25.25 0 0 0-.25.25v4.75a3 3 0 0 0 6 0v-4.75a.25.25 0 0 0-.25-.25Zm-11-1.5h3.38c-.34.41-.57.93-.62 1.5H3.75a.25.25 0 0 0-.25.25V15a2.5 2.5 0 0 0 3.08 2.43c.09.5.24.99.45 1.43A4 4 0 0 1 2 15v-3.24c0-.97.78-1.75 1.75-1.75Zm13.12 0h3.38c.97 0 1.75.78 1.75 1.75V15a4 4 0 0 1-5.03 3.87c.21-.45.37-.93.46-1.44A2.5 2.5 0 0 0 20.5 15v-3.25a.25.25 0 0 0-.25-.25h-2.76a2.74 2.74 0 0 0-.62-1.5ZM12 3a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm6.5 1a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Zm-13 0a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Zm6.5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm6.5 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-13 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
111
113
  "person-accounts-filled": "M13 14.05V14H4.25C3.01 14 2 15 2 16.25v.92c0 .57.18 1.13.51 1.6C4.06 20.92 6.58 22 10 22c.36 0 .7-.01 1.04-.03-.03-.15-.04-.31-.04-.47v-5c0-1.2.86-2.22 2-2.45ZM10 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm4 13h-.5c-.83 0-1.5.67-1.5 1.5v5c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5H21v-1.25c0-.97-.78-1.75-1.75-1.75h-3.5c-.97 0-1.75.78-1.75 1.75V15Zm1.5-1.25c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25V15h-4v-1.25Z",
112
114
  "person-accounts-regular": "M13 14.05V14H4.25C3.01 14 2 15 2 16.25v.58c0 .89.32 1.75.9 2.43C4.47 21.1 6.85 22 10 22c.36 0 .7-.01 1.04-.03a2.5 2.5 0 0 1-.04-.47v-1.03c-.32.02-.65.03-1 .03-2.74 0-4.7-.74-5.96-2.21-.34-.4-.54-.93-.54-1.46v-.58c0-.41.34-.75.75-.75h6.96A2.5 2.5 0 0 1 13 14.05ZM10 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7ZM14 15h-.5c-.83 0-1.5.67-1.5 1.5v5c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5H21v-1.25c0-.97-.78-1.75-1.75-1.75h-3.5c-.97 0-1.75.78-1.75 1.75V15Zm1.5-1.25c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25V15h-4v-1.25Z",
113
115
  "person-add-regular": "M17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-5.48 2c-.3.46-.53.97-.7 1.5H4.24a.75.75 0 0 0-.75.75v.58c0 .53.2 1.05.54 1.46C5.3 19.76 7.26 20.5 10 20.5c.6 0 1.16-.03 1.68-.1.25.49.55.95.91 1.36-.8.16-1.66.24-2.59.24-3.15 0-5.53-.9-7.1-2.74a3.75 3.75 0 0 1-.9-2.43v-.58C2 15 3.01 14 4.25 14h7.77Zm5.48 0h-.09a.5.5 0 0 0-.4.41l-.01.09V17H14.4a.5.5 0 0 0-.4.41v.18c.04.2.2.37.4.4l.1.01H17v2.59c.05.2.2.37.41.4l.09.01h.09a.5.5 0 0 0 .4-.41l.01-.09V18h2.6a.5.5 0 0 0 .4-.41v-.18a.5.5 0 0 0-.4-.4l-.1-.01H18v-2.59a.5.5 0 0 0-.41-.4L17.5 14ZM10 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Z",
114
- "person-call-filled": "M5.25 14h11c.1.17.22.33.37.47l.72.69a4.23 4.23 0 0 1-1.1 1.9l-.8-.27a2.19 2.19 0 0 0-2.5.86l-.73 1.06c-.63.93-.52 2.19.27 2.98l.23.23c-.54.05-1.11.08-1.71.08-2.89 0-5.13-.66-6.7-2A3.75 3.75 0 0 1 3 17.16v-.91C3 15.01 4.01 14 5.25 14Zm11.76-1.75.5-1.2c.24-.55.8-.85 1.36-.74l.12.04.63.2c.62.2 1.1.73 1.26 1.4.36 1.6-.08 3.55-1.32 5.84-1.25 2.29-2.62 3.67-4.1 4.13-.58.18-1.2.05-1.67-.34l-.12-.12-.48-.48a1.36 1.36 0 0 1-.22-1.59l.07-.11.72-1.06A1.2 1.2 0 0 1 15 17.7l.12.04 1.34.44a5.08 5.08 0 0 0 1.92-3.1l.04-.28-1.1-1.05c-.37-.35-.5-.89-.36-1.37l.05-.13.5-1.2-.5 1.2ZM11 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z",
115
- "person-call-regular": "M5.25 14h11c.1.17.22.33.37.47l.72.69c-.04.16-.1.31-.16.47a.75.75 0 0 0-.43-.13H5.25a.75.75 0 0 0-.75.75v.9c0 .66.29 1.29.79 1.71C6.55 19.95 8.44 20.5 11 20.5c.3 0 .58 0 .85-.02.08.45.3.87.63 1.2l.23.24c-.54.05-1.11.08-1.71.08-2.89 0-5.13-.66-6.7-2A3.75 3.75 0 0 1 3 17.16v-.91C3 15.01 4.01 14 5.25 14Zm11.76-1.75.5-1.2c.24-.55.8-.85 1.36-.74l.12.04.63.2c.62.2 1.1.73 1.26 1.4.36 1.6-.08 3.55-1.32 5.84-1.25 2.29-2.62 3.67-4.1 4.13-.58.18-1.2.05-1.67-.34l-.12-.12-.48-.48a1.36 1.36 0 0 1-.22-1.59l.07-.11.72-1.06A1.2 1.2 0 0 1 15 17.7l.12.04 1.34.44a5.08 5.08 0 0 0 1.92-3.1l.04-.28-1.1-1.05c-.37-.35-.5-.89-.36-1.37l.05-.13.5-1.2-.5 1.2ZM11 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Z",
116
+ "person-call-filled": "M17.72 15.95a2.2 2.2 0 0 1-.57-1.95H6.25C5.01 14 4 15 4 16.25v.92c0 .57.18 1.13.51 1.6C6.06 20.92 8.58 22 12 22a15 15 0 0 0 1.13-.04 2.25 2.25 0 0 1 .36-2.16l.8-1.01a2.2 2.2 0 0 1 2.23-.77l.84.2c.52-.43.83-.97.95-1.64l-.6-.63ZM12 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm6.2 12 .47-1.21c.24-.61.92-.93 1.55-.73l.43.14c.72.24 1.32.8 1.35 1.57.1 3.11-2.48 7.58-5.22 9.06-.67.36-1.46.12-2.03-.4l-.34-.3a1.25 1.25 0 0 1-.14-1.7l.8-1.02a1.2 1.2 0 0 1 1.22-.42l1.3.32a3.78 3.78 0 0 0 1.77-3.08l-.92-.96a1.2 1.2 0 0 1-.25-1.28Z",
117
+ "person-call-regular": "M17.38 15.5a2.2 2.2 0 0 1-.23-1.5H6.25C5.01 14 4 15 4 16.25v.58c0 .89.32 1.75.9 2.43C6.47 21.1 8.85 22 12 22a15 15 0 0 0 1.13-.04 2.26 2.26 0 0 1 0-1.5c-.36.03-.74.04-1.13.04-2.74 0-4.7-.74-5.96-2.21-.34-.41-.54-.93-.54-1.46v-.58c0-.41.34-.75.75-.75h11.13ZM12 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7ZM18.2 14l.47-1.21c.24-.61.92-.93 1.55-.73l.43.14c.72.24 1.32.8 1.35 1.57.1 3.11-2.48 7.58-5.22 9.06-.67.36-1.46.12-2.03-.4l-.34-.3a1.25 1.25 0 0 1-.14-1.7l.8-1.02a1.2 1.2 0 0 1 1.22-.42l1.3.32a3.78 3.78 0 0 0 1.77-3.08l-.92-.96a1.2 1.2 0 0 1-.25-1.28Z",
116
118
  "person-filled": "M17.75 14C19 14 20 15 20 16.25v.92c0 .57-.18 1.13-.5 1.6C17.93 20.93 15.41 22 12 22s-5.94-1.07-7.49-3.24a2.75 2.75 0 0 1-.5-1.6v-.91C4 15 5 14 6.24 14h11.5ZM12 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z",
117
119
  "person-lock-regular": "M14 14H4.25C3.01 14 2 15 2 16.25v.58c0 .89.32 1.75.9 2.43C4.47 21.1 6.85 22 10 22c.71 0 1.39-.05 2.03-.14a2.53 2.53 0 0 1-.03-.36v-1.15c-.61.1-1.28.15-2 .15-2.74 0-4.7-.74-5.96-2.21-.34-.4-.54-.93-.54-1.46v-.58c0-.41.34-.75.75-.75h7.96A2.5 2.5 0 0 1 14 14.05V14ZM10 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7ZM15 15h-.5c-.83 0-1.5.67-1.5 1.5v5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5H20v-1a2.5 2.5 0 0 0-5 0v1Zm1.5-1a1 1 0 0 1 2 0v1h-2v-1Zm2 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z",
118
120
  "person-regular": "M17.75 14C19 14 20 15 20 16.25v.57c0 .9-.32 1.76-.9 2.44C17.53 21.1 15.15 22 12 22c-3.15 0-5.53-.9-7.1-2.74a3.75 3.75 0 0 1-.9-2.43v-.58C4 15 5.01 14 6.25 14h11.5Zm0 1.5H6.25a.75.75 0 0 0-.75.75v.58c0 .53.2 1.05.54 1.46C7.3 19.76 9.26 20.5 12 20.5c2.74 0 4.7-.74 5.96-2.21.35-.41.54-.93.54-1.47v-.57a.75.75 0 0 0-.75-.75ZM12 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Z",