@liner-fe/prism 2.12.12 → 3.0.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/lib/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { SystemKeys, TypographyCaptionPrefix, TypographyParagraphPrefix, TypographyHeadingPrefix, TypographyTitlePrefix, TypographyDisplayPrefix, BasicColorType } from '@liner-fe/design-token-primitive';
2
2
  import * as react from 'react';
3
- import react__default, { ButtonHTMLAttributes, RefAttributes, HTMLAttributes, ReactNode, ComponentPropsWithoutRef, InputHTMLAttributes, ComponentProps, LiHTMLAttributes, MouseEventHandler } from 'react';
3
+ import react__default, { ButtonHTMLAttributes, RefAttributes, HTMLAttributes, JSX, ReactNode, ComponentPropsWithoutRef, InputHTMLAttributes, ComponentProps, LiHTMLAttributes, MouseEventHandler } from 'react';
4
4
  import * as cva from 'cva';
5
5
  import { VariantProps } from 'cva';
6
6
  import { IconProps, IconComponentType } from '@liner-fe/icon';
@@ -398,7 +398,7 @@ interface SelectItemProps {
398
398
  } & Pick<IconProps, 'fill' | 'thick' | 'type' | 'fillType' | 'size'>;
399
399
  onClick?: () => void;
400
400
  }
401
- declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<never>> & {
401
+ declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLButtonElement>> & {
402
402
  Item: ({ value, text, disabled, icon, onClick }: SelectItemProps) => react_jsx_runtime.JSX.Element;
403
403
  };
404
404
 
package/lib/index.js CHANGED
@@ -286,21 +286,18 @@ var DefaultButton = forwardRef(
286
286
  if (asChild) {
287
287
  const parent = Children.only(children);
288
288
  const newChildren = parent.props.children;
289
- const ParentClone = cloneElement(
290
- parent,
291
- {
292
- ...rest,
293
- className: clsx(
294
- defaultButtonVariants({ level, size, width }),
295
- style_module_default["align-center"],
296
- isLoadingWithDisabled && style_module_default["loading-with-disabled"],
297
- isLoading && style_module_default["loading"],
298
- className
299
- ),
300
- ref
301
- },
302
- renderContent(newChildren)
303
- );
289
+ const ParentClone = cloneElement(parent, {
290
+ ...rest,
291
+ className: clsx(
292
+ defaultButtonVariants({ level, size, width }),
293
+ style_module_default["align-center"],
294
+ isLoadingWithDisabled && style_module_default["loading-with-disabled"],
295
+ isLoading && style_module_default["loading"],
296
+ className
297
+ ),
298
+ ref,
299
+ children: renderContent(newChildren)
300
+ });
304
301
  return ParentClone;
305
302
  }
306
303
  return /* @__PURE__ */ jsx2(
@@ -906,7 +903,7 @@ var Toaster = /* @__PURE__ */ __name(() => {
906
903
  }, "Toaster");
907
904
  var SingleToast = /* @__PURE__ */ __name((props) => {
908
905
  const setToast = useSetAtom2(toastAtom);
909
- const timerRef = useRef();
906
+ const timerRef = useRef(void 0);
910
907
  const { message, icon, button, timer, toastId, isLoading } = props;
911
908
  const [isOpen, setIsOpen] = useState(true);
912
909
  const lottieRef = useRef(null);
@@ -2020,66 +2017,64 @@ var SelectContent = forwardRef14(
2020
2017
  ) });
2021
2018
  }
2022
2019
  );
2023
- var SelectRoot = forwardRef14(
2024
- (props, ref) => {
2025
- const {
2026
- id,
2027
- placeholder,
2028
- label,
2029
- chip,
2030
- listLabel,
2031
- popSide = "top",
2032
- sideOffset = 6,
2033
- children,
2034
- open = false,
2035
- onOpenChange,
2036
- isResponsive = false,
2037
- openDirection = "slide-right",
2038
- badge,
2039
- container,
2040
- ...rest
2041
- } = props;
2042
- const contentProps = { id, isResponsive, popSide, sideOffset, listLabel, children, container };
2043
- const [isOpen, setIsOpen] = useState3(false);
2044
- useEffect2(() => {
2045
- setIsOpen(open);
2046
- }, [open]);
2047
- return /* @__PURE__ */ jsxs8("div", { children: [
2048
- /* @__PURE__ */ jsxs8("div", { className: style_module_default12["label-container"], children: [
2049
- /* @__PURE__ */ jsx17(
2050
- Label,
2051
- {
2052
- className: style_module_default12["select-label"],
2053
- level: "secondary",
2054
- size: "m",
2055
- offset: "low",
2056
- htmlFor: id,
2057
- children: label
2058
- }
2059
- ),
2060
- badge && /* @__PURE__ */ jsx17(Badge, { children: badge })
2061
- ] }),
2062
- /* @__PURE__ */ jsxs8(
2063
- SelectPrimitive.Root,
2020
+ var SelectRoot = forwardRef14((props, ref) => {
2021
+ const {
2022
+ id,
2023
+ placeholder,
2024
+ label,
2025
+ chip,
2026
+ listLabel,
2027
+ popSide = "top",
2028
+ sideOffset = 6,
2029
+ children,
2030
+ open = false,
2031
+ onOpenChange,
2032
+ isResponsive = false,
2033
+ openDirection = "slide-right",
2034
+ badge,
2035
+ container,
2036
+ ...rest
2037
+ } = props;
2038
+ const contentProps = { id, isResponsive, popSide, sideOffset, listLabel, children, container };
2039
+ const [isOpen, setIsOpen] = useState3(false);
2040
+ useEffect2(() => {
2041
+ setIsOpen(open);
2042
+ }, [open]);
2043
+ return /* @__PURE__ */ jsxs8("div", { children: [
2044
+ /* @__PURE__ */ jsxs8("div", { className: style_module_default12["label-container"], children: [
2045
+ /* @__PURE__ */ jsx17(
2046
+ Label,
2064
2047
  {
2065
- ...rest,
2066
- open: isOpen,
2067
- onOpenChange: (open2) => {
2068
- onOpenChange?.(open2);
2069
- setIsOpen(open2);
2070
- },
2071
- children: [
2072
- /* @__PURE__ */ jsxs8(SelectPrimitive.Trigger, { className: style_module_default12.trigger, ref, id, children: [
2073
- /* @__PURE__ */ jsx17(SelectPrimitive.Value, { className: style_module_default12.placeholder, placeholder }),
2074
- /* @__PURE__ */ jsx17(SelectPrimitive.Icon, { className: style_module_default12.openIcon, children: /* @__PURE__ */ jsx17(IconDropDown, { fill: true, thick: true, size: "xs" }) })
2075
- ] }),
2076
- /* @__PURE__ */ jsx17(SelectContent, { ...contentProps })
2077
- ]
2048
+ className: style_module_default12["select-label"],
2049
+ level: "secondary",
2050
+ size: "m",
2051
+ offset: "low",
2052
+ htmlFor: id,
2053
+ children: label
2078
2054
  }
2079
- )
2080
- ] });
2081
- }
2082
- );
2055
+ ),
2056
+ badge && /* @__PURE__ */ jsx17(Badge, { children: badge })
2057
+ ] }),
2058
+ /* @__PURE__ */ jsxs8(
2059
+ SelectPrimitive.Root,
2060
+ {
2061
+ ...rest,
2062
+ open: isOpen,
2063
+ onOpenChange: (open2) => {
2064
+ onOpenChange?.(open2);
2065
+ setIsOpen(open2);
2066
+ },
2067
+ children: [
2068
+ /* @__PURE__ */ jsxs8(SelectPrimitive.Trigger, { className: style_module_default12.trigger, ref, id, children: [
2069
+ /* @__PURE__ */ jsx17(SelectPrimitive.Value, { className: style_module_default12.placeholder, placeholder }),
2070
+ /* @__PURE__ */ jsx17(SelectPrimitive.Icon, { className: style_module_default12.openIcon, children: /* @__PURE__ */ jsx17(IconDropDown, { fill: true, thick: true, size: "xs" }) })
2071
+ ] }),
2072
+ /* @__PURE__ */ jsx17(SelectContent, { ...contentProps })
2073
+ ]
2074
+ }
2075
+ )
2076
+ ] });
2077
+ });
2083
2078
  var SelectItem = /* @__PURE__ */ __name(({ value, text, disabled, icon, onClick }) => /* @__PURE__ */ jsxs8(
2084
2079
  SelectPrimitive.Item,
2085
2080
  {
@@ -2210,7 +2205,7 @@ var useSnackbar = /* @__PURE__ */ __name(() => {
2210
2205
  return {
2211
2206
  open: /* @__PURE__ */ __name((info) => {
2212
2207
  const snackbarId = generateRandomId();
2213
- const timer = info.timer ?? (info.button ? millisecondsInSecond3 * 10 : millisecondsInSecond3 + 800);
2208
+ const timer = info.timer ?? (info.button ? millisecondsInSecond3 * 5 : millisecondsInSecond3 + 800);
2214
2209
  setSnackbar((prev) => [...prev, { ...info, snackbarId, timer }]);
2215
2210
  }, "open")
2216
2211
  };
@@ -2248,28 +2243,6 @@ var SnackbarDescription = /* @__PURE__ */ __name(({ description }) => {
2248
2243
  // src/components/Snackbar/index.tsx
2249
2244
  import clsx18 from "clsx";
2250
2245
 
2251
- // src/components/Snackbar/SnackbarClose/index.tsx
2252
- import { IconCloseFill as IconCloseFill3 } from "@liner-fe/icon";
2253
- import { jsx as jsx23 } from "react/jsx-runtime";
2254
- var SnackbarClose = /* @__PURE__ */ __name(({ onCloseSnackbar, className }) => {
2255
- return /* @__PURE__ */ jsx23("div", { className, children: /* @__PURE__ */ jsx23(
2256
- IconButton,
2257
- {
2258
- icon: {
2259
- icon: IconCloseFill3,
2260
- fill: true,
2261
- thick: true,
2262
- type: "neutral-label-static-secondary",
2263
- fillType: "inverse-label-static-primary"
2264
- },
2265
- level: "static",
2266
- size: "xs",
2267
- fill: false,
2268
- onClick: onCloseSnackbar
2269
- }
2270
- ) });
2271
- }, "SnackbarClose");
2272
-
2273
2246
  // src/components/TextButton/index.tsx
2274
2247
  import { cva as cva8 } from "cva";
2275
2248
 
@@ -2291,7 +2264,7 @@ var style_module_default16 = {
2291
2264
  import { Children as Children2, cloneElement as cloneElement2, forwardRef as forwardRef15 } from "react";
2292
2265
  import clsx16 from "clsx";
2293
2266
  import { classNames } from "@liner-fe/design-token";
2294
- import { jsx as jsx24, jsxs as jsxs10 } from "react/jsx-runtime";
2267
+ import { jsx as jsx23, jsxs as jsxs10 } from "react/jsx-runtime";
2295
2268
  var TEXT_LEVEL_OPTIONS = ["primary", "secondary", "tertiary"];
2296
2269
  var TEXT_SIZE_OPTIONS = ["m", "s", "xs"];
2297
2270
  var textButtonSizeIconSizeMap = {
@@ -2348,23 +2321,20 @@ var TextButton = forwardRef15(
2348
2321
  ...icon
2349
2322
  }), "getIconProps");
2350
2323
  const renderContent = /* @__PURE__ */ __name((children2) => /* @__PURE__ */ jsxs10("span", { className: style_module_default16["text-children"], children: [
2351
- leftIcon && /* @__PURE__ */ jsx24(leftIcon.icon, { ...getIconProps(leftIcon) }),
2352
- /* @__PURE__ */ jsx24("p", { children: children2 }),
2353
- rightIcon && /* @__PURE__ */ jsx24(rightIcon.icon, { ...getIconProps(rightIcon) })
2324
+ leftIcon && /* @__PURE__ */ jsx23(leftIcon.icon, { ...getIconProps(leftIcon) }),
2325
+ /* @__PURE__ */ jsx23("p", { children: children2 }),
2326
+ rightIcon && /* @__PURE__ */ jsx23(rightIcon.icon, { ...getIconProps(rightIcon) })
2354
2327
  ] }), "renderContent");
2355
2328
  if (asChild) {
2356
2329
  const parent = Children2.only(children);
2357
- return cloneElement2(
2358
- parent,
2359
- {
2360
- ...rest,
2361
- className: clsx16(textButtonVariants({ level, underline, size }), className),
2362
- ref
2363
- },
2364
- renderContent(parent.props.children)
2365
- );
2330
+ return cloneElement2(parent, {
2331
+ ...rest,
2332
+ className: clsx16(textButtonVariants({ level, underline, size }), className),
2333
+ ref,
2334
+ children: renderContent(parent.props.children)
2335
+ });
2366
2336
  }
2367
- return /* @__PURE__ */ jsx24(
2337
+ return /* @__PURE__ */ jsx23(
2368
2338
  "button",
2369
2339
  {
2370
2340
  className: clsx16(textButtonVariants({ level, underline, size }), className),
@@ -2385,7 +2355,7 @@ var style_module_default17 = {
2385
2355
 
2386
2356
  // src/components/Snackbar/SnackbarButton/index.tsx
2387
2357
  import clsx17 from "clsx";
2388
- import { jsx as jsx25, jsxs as jsxs11 } from "react/jsx-runtime";
2358
+ import { jsx as jsx24, jsxs as jsxs11 } from "react/jsx-runtime";
2389
2359
  var SnackbarButton = /* @__PURE__ */ __name(({
2390
2360
  button,
2391
2361
  containerStyle,
@@ -2393,7 +2363,7 @@ var SnackbarButton = /* @__PURE__ */ __name(({
2393
2363
  }) => {
2394
2364
  if (button?.text || button?.basic) {
2395
2365
  return /* @__PURE__ */ jsxs11("div", { className: clsx17(style_module_default17.Container, containerStyle), children: [
2396
- button?.text && /* @__PURE__ */ jsx25(
2366
+ button?.text && /* @__PURE__ */ jsx24(
2397
2367
  TextButton,
2398
2368
  {
2399
2369
  size: "s",
@@ -2407,7 +2377,7 @@ var SnackbarButton = /* @__PURE__ */ __name(({
2407
2377
  children: button.text.text
2408
2378
  }
2409
2379
  ),
2410
- button?.basic && /* @__PURE__ */ jsx25(
2380
+ button?.basic && /* @__PURE__ */ jsx24(
2411
2381
  Button,
2412
2382
  {
2413
2383
  size: "s",
@@ -2428,7 +2398,7 @@ var SnackbarButton = /* @__PURE__ */ __name(({
2428
2398
  // src/components/Snackbar/index.tsx
2429
2399
  import { useCallback, useEffect as useEffect3, useRef as useRef3, useState as useState5 } from "react";
2430
2400
  import { millisecondsInSecond as millisecondsInSecond4 } from "date-fns/constants";
2431
- import { Fragment as Fragment7, jsx as jsx26, jsxs as jsxs12 } from "react/jsx-runtime";
2401
+ import { Fragment as Fragment7, jsx as jsx25, jsxs as jsxs12 } from "react/jsx-runtime";
2432
2402
  import { createElement as createElement3 } from "react";
2433
2403
  var { Provider: Provider2, Root: Root2, Viewport: Viewport2 } = Toast;
2434
2404
  var Snackbar = /* @__PURE__ */ __name(() => {
@@ -2441,20 +2411,20 @@ var Snackbar = /* @__PURE__ */ __name(() => {
2441
2411
  // eslint-disable-next-line react/prop-types
2442
2412
  /* @__PURE__ */ createElement3(SingleSnackbar, { ...props, key: props.snackbarId, position: "right" })
2443
2413
  )),
2444
- /* @__PURE__ */ jsx26(Viewport2, { className: clsx18(style_module_default14.Viewport, style_module_default14.ViewportRight) })
2414
+ /* @__PURE__ */ jsx25(Viewport2, { className: clsx18(style_module_default14.Viewport, style_module_default14.ViewportRight) })
2445
2415
  ] }),
2446
2416
  /* @__PURE__ */ jsxs12(Provider2, { children: [
2447
2417
  leftSnackbars.map((props) => (
2448
2418
  // eslint-disable-next-line react/prop-types
2449
2419
  /* @__PURE__ */ createElement3(SingleSnackbar, { ...props, key: props.snackbarId, position: "left" })
2450
2420
  )),
2451
- /* @__PURE__ */ jsx26(Viewport2, { className: clsx18(style_module_default14.Viewport, style_module_default14.ViewportLeft) })
2421
+ /* @__PURE__ */ jsx25(Viewport2, { className: clsx18(style_module_default14.Viewport, style_module_default14.ViewportLeft) })
2452
2422
  ] })
2453
2423
  ] });
2454
2424
  }, "Snackbar");
2455
2425
  var SingleSnackbar = /* @__PURE__ */ __name((props) => {
2456
2426
  const setSnackbar = useSetAtom4(snackbarAtom);
2457
- const timerRef = useRef3();
2427
+ const timerRef = useRef3(void 0);
2458
2428
  const { snackbarId, description, title, timer } = props;
2459
2429
  const [isOpen, setIsOpen] = useState5(true);
2460
2430
  const onCloseSnackbar = useCallback(() => {
@@ -2496,10 +2466,10 @@ var SingleSnackbar = /* @__PURE__ */ __name((props) => {
2496
2466
  open: isOpen,
2497
2467
  children: [
2498
2468
  /* @__PURE__ */ jsxs12("div", { className: clsx18(style_module_default14.Content, style_module_default14.MarginRight12), children: [
2499
- /* @__PURE__ */ jsx26(SnackbarTitle, { title }),
2500
- /* @__PURE__ */ jsx26(SnackbarDescription, { description })
2469
+ /* @__PURE__ */ jsx25(SnackbarTitle, { title }),
2470
+ /* @__PURE__ */ jsx25(SnackbarDescription, { description })
2501
2471
  ] }),
2502
- /* @__PURE__ */ jsx26(
2472
+ /* @__PURE__ */ jsx25(
2503
2473
  IconArrowForward,
2504
2474
  {
2505
2475
  fill: true,
@@ -2508,8 +2478,7 @@ var SingleSnackbar = /* @__PURE__ */ __name((props) => {
2508
2478
  className: description ? style_module_default14.minWidth32 : style_module_default14.minWidth24,
2509
2479
  size: description ? "l" : "m"
2510
2480
  }
2511
- ),
2512
- /* @__PURE__ */ jsx26(SnackbarClose, { onCloseSnackbar, className: style_module_default14.CloseButton })
2481
+ )
2513
2482
  ]
2514
2483
  }
2515
2484
  );
@@ -2523,38 +2492,36 @@ var SingleSnackbar = /* @__PURE__ */ __name((props) => {
2523
2492
  open: isOpen,
2524
2493
  children: [
2525
2494
  /* @__PURE__ */ jsxs12("div", { className: style_module_default14.Content, children: [
2526
- /* @__PURE__ */ jsx26(SnackbarTitle, { title }),
2527
- /* @__PURE__ */ jsx26(SnackbarDescription, { description })
2495
+ /* @__PURE__ */ jsx25(SnackbarTitle, { title }),
2496
+ /* @__PURE__ */ jsx25(SnackbarDescription, { description })
2528
2497
  ] }),
2529
- /* @__PURE__ */ jsx26(
2498
+ /* @__PURE__ */ jsx25(
2530
2499
  SnackbarButton,
2531
2500
  {
2532
2501
  button: props.button,
2533
2502
  containerStyle: style_module_default14.JustifyEnd,
2534
2503
  onCloseSnackbar
2535
2504
  }
2536
- ),
2537
- /* @__PURE__ */ jsx26(SnackbarClose, { onCloseSnackbar, className: style_module_default14.CloseButton })
2505
+ )
2538
2506
  ]
2539
2507
  }
2540
2508
  );
2541
2509
  }
2542
2510
  return /* @__PURE__ */ jsxs12(Root2, { onSwipeEnd: onCloseSnackbar, className: clsx18(style_module_default14.Root, style_module_default14.Wrapper), open: isOpen, children: [
2543
2511
  /* @__PURE__ */ jsxs12("div", { className: style_module_default14.ContentWrapper, children: [
2544
- /* @__PURE__ */ jsx26(SnackbarIcon, { icon: props.icon }),
2512
+ /* @__PURE__ */ jsx25(SnackbarIcon, { icon: props.icon }),
2545
2513
  /* @__PURE__ */ jsxs12("div", { className: clsx18(style_module_default14.Content, style_module_default14.MarginRight12), children: [
2546
- /* @__PURE__ */ jsx26(SnackbarTitle, { title }),
2547
- /* @__PURE__ */ jsx26(SnackbarDescription, { description })
2514
+ /* @__PURE__ */ jsx25(SnackbarTitle, { title }),
2515
+ /* @__PURE__ */ jsx25(SnackbarDescription, { description })
2548
2516
  ] })
2549
2517
  ] }),
2550
- /* @__PURE__ */ jsx26(SnackbarButton, { button: props.button, onCloseSnackbar }),
2551
- /* @__PURE__ */ jsx26(SnackbarClose, { onCloseSnackbar, className: style_module_default14.CloseButton })
2518
+ /* @__PURE__ */ jsx25(SnackbarButton, { button: props.button, onCloseSnackbar })
2552
2519
  ] });
2553
2520
  }, "SingleSnackbar");
2554
2521
 
2555
2522
  // src/components/Logo/index.tsx
2556
2523
  import { vars } from "@liner-fe/design-token";
2557
- import { jsx as jsx27, jsxs as jsxs13 } from "react/jsx-runtime";
2524
+ import { jsx as jsx26, jsxs as jsxs13 } from "react/jsx-runtime";
2558
2525
  var Logo = /* @__PURE__ */ __name((props) => {
2559
2526
  if (props.type === "combination") {
2560
2527
  const { width, height, fill = "brand-label-secondary", className } = props;
@@ -2570,49 +2537,49 @@ var Logo = /* @__PURE__ */ __name((props) => {
2570
2537
  className,
2571
2538
  children: [
2572
2539
  /* @__PURE__ */ jsxs13("g", { clipPath: "url(#clip0_808_3091)", children: [
2573
- /* @__PURE__ */ jsx27(
2540
+ /* @__PURE__ */ jsx26(
2574
2541
  "path",
2575
2542
  {
2576
2543
  d: "M56.7088 28.6542H52.9156C52.6532 28.6542 52.4455 28.4483 52.4455 28.1883V8.38183C52.4455 5.67308 53.0796 3.77695 53.3091 3.19186C53.3419 3.09434 53.2763 2.99683 53.167 2.99683H46.2365C46.1381 2.99683 46.0616 3.09434 46.0944 3.19186C46.313 3.78778 46.9252 5.69475 46.9252 8.42517V25.7937C46.9252 28.8167 46.313 30.8103 46.0944 31.4171C46.0616 31.5146 46.1272 31.6121 46.2365 31.6121H66.2081C66.2846 31.6121 66.3502 31.5471 66.3502 31.4713V25.9562C66.3502 25.8479 66.23 25.7721 66.1316 25.8262C65.115 26.3788 60.6878 28.665 56.7088 28.665V28.6542Z",
2577
2544
  fill: darkModeAwareFillColor
2578
2545
  }
2579
2546
  ),
2580
- /* @__PURE__ */ jsx27(
2547
+ /* @__PURE__ */ jsx26(
2581
2548
  "path",
2582
2549
  {
2583
2550
  d: "M94.4108 26.6714C94.4108 29.3259 93.8533 30.9078 93.5472 31.4496C93.4925 31.5471 93.5691 31.6663 93.6784 31.6663H100.347C100.456 31.6663 100.521 31.5579 100.478 31.4604C100.183 30.8753 99.5922 29.1309 99.5922 26.7147V18.816C99.5922 16.1614 98.991 14.1027 97.7886 12.6617C96.5752 11.2206 94.859 10.4947 92.6399 10.4947C88.8467 10.4947 86.1029 13.431 84.9661 15.5221C84.8458 15.7496 84.496 15.663 84.496 15.4029V11.3073C84.496 11.2314 84.4304 11.1664 84.3539 11.1664H79.0959C78.9866 11.1664 78.921 11.2748 78.9648 11.3723C79.238 11.9466 79.8065 13.7018 79.8065 16.118V26.6822C79.8065 29.3368 79.249 30.9187 78.9429 31.4604C78.8882 31.5579 78.9648 31.6771 79.0741 31.6771H85.7422C85.8515 31.6771 85.9171 31.5688 85.8734 31.4713C85.5892 30.8862 85.0098 29.1417 85.0098 26.7255V20.7013C85.0098 19.8886 85.1628 19.076 85.4798 18.3175C85.9499 17.2124 86.5402 16.3131 87.2617 15.6196C88.2564 14.6445 89.4042 14.1461 90.716 14.1461C91.9512 14.1461 92.8804 14.5578 93.4925 15.3813C94.1047 16.2047 94.4217 17.4182 94.4217 19.0218V26.693L94.4108 26.6714Z",
2584
2551
  fill: darkModeAwareFillColor
2585
2552
  }
2586
2553
  ),
2587
- /* @__PURE__ */ jsx27(
2554
+ /* @__PURE__ */ jsx26(
2588
2555
  "path",
2589
2556
  {
2590
2557
  d: "M69.3127 31.6663H76.0026C76.112 31.6663 76.1776 31.558 76.1338 31.4604C75.8496 30.8754 75.2702 29.1309 75.2702 26.7147V11.3073C75.2702 11.2315 75.2047 11.1664 75.1281 11.1664H69.3345C69.2252 11.1664 69.1596 11.2748 69.2033 11.3723C69.4876 11.9466 70.056 13.7018 70.056 16.118V26.6822C70.056 29.3368 69.4876 30.9187 69.1924 31.4604C69.1378 31.558 69.2143 31.6771 69.3236 31.6771L69.3127 31.6663Z",
2591
2558
  fill: darkModeAwareFillColor
2592
2559
  }
2593
2560
  ),
2594
- /* @__PURE__ */ jsx27(
2561
+ /* @__PURE__ */ jsx26(
2595
2562
  "path",
2596
2563
  {
2597
2564
  d: "M72.2642 8.71772C74.1335 8.71772 75.6529 7.21165 75.6529 5.35886C75.6529 3.50607 74.1335 2 72.2642 2C70.395 2 68.8755 3.50607 68.8755 5.35886C68.8755 7.21165 70.395 8.71772 72.2642 8.71772Z",
2598
2565
  fill: darkModeAwareFillColor
2599
2566
  }
2600
2567
  ),
2601
- /* @__PURE__ */ jsx27(
2568
+ /* @__PURE__ */ jsx26(
2602
2569
  "path",
2603
2570
  {
2604
2571
  d: "M130.299 15.5438C130.299 15.8038 130.616 15.8905 130.736 15.663C132.201 12.8675 134.179 11.1339 136.573 11.1339H138.858C138.935 11.1339 139 11.1989 139 11.2748V15.5329C139 15.6088 138.935 15.6738 138.858 15.6738H135.218C133.556 15.6738 132.004 16.5081 130.769 17.8408C130.474 18.1658 130.31 18.5776 130.299 19.0001V26.693C130.299 29.1092 130.878 30.8645 131.162 31.4388C131.206 31.5363 131.14 31.6446 131.031 31.6446H124.341C124.232 31.6446 124.155 31.5254 124.21 31.4279C124.516 30.8862 125.074 29.3151 125.074 26.6497V16.0855C125.074 13.6693 124.505 11.914 124.221 11.3398C124.177 11.2423 124.243 11.1339 124.352 11.1339H130.146C130.222 11.1339 130.288 11.1989 130.288 11.2748V15.5221L130.299 15.5438Z",
2605
2572
  fill: darkModeAwareFillColor
2606
2573
  }
2607
2574
  ),
2608
- /* @__PURE__ */ jsx27(
2575
+ /* @__PURE__ */ jsx26(
2609
2576
  "path",
2610
2577
  {
2611
2578
  d: "M113.967 29.4993C110.076 29.4993 108.152 26.5955 107.944 21.9581C107.944 21.8714 108.01 21.8064 108.086 21.8064H122.57C122.658 21.8064 122.723 21.7414 122.723 21.6547C122.669 14.4386 118.329 10.4405 112.47 10.4405C106.611 10.4405 101.998 14.7095 101.998 21.2213C101.998 28.1991 106.315 32.1647 113.279 32.1647C118.023 32.1647 121.488 29.4451 122.516 25.0244C122.538 24.9378 122.461 24.8511 122.374 24.8511H120.657C120.592 24.8511 120.537 24.8944 120.515 24.9486C119.63 27.7765 116.831 29.4885 113.956 29.4885L113.967 29.4993ZM112.514 13.1167C115.039 13.1167 116.657 15.1104 116.744 18.9026C116.744 18.9785 116.678 19.0543 116.591 19.0543H108.141C108.054 19.0543 107.988 18.9785 107.999 18.9026C108.207 15.2404 109.945 13.1276 112.524 13.1276L112.514 13.1167Z",
2612
2579
  fill: darkModeAwareFillColor
2613
2580
  }
2614
2581
  ),
2615
- /* @__PURE__ */ jsx27(
2582
+ /* @__PURE__ */ jsx26(
2616
2583
  "path",
2617
2584
  {
2618
2585
  d: "M32.4411 12.4883V3.18101C32.4411 3.08349 32.3646 3.00764 32.2662 3.00764H22.7996C22.7996 3.00764 22.7122 3.02931 22.6794 3.06182L17.2465 8.43599C17.2465 8.43599 17.17 8.49017 17.1262 8.49017H7.1459C7.1459 8.49017 7.05845 8.51184 7.02566 8.54434L0.0514475 15.4246C-0.0578662 15.5329 0.0186534 15.728 0.171692 15.728H9.1682C9.43056 15.728 9.63825 15.9338 9.63825 16.1939V25.4361C9.63825 25.5337 9.71477 25.6095 9.81315 25.6095H19.1595C19.4218 25.6095 19.6295 25.8262 19.6295 26.0754V34.971C19.6295 35.1227 19.8154 35.2093 19.9356 35.101L26.8114 28.2966C26.8114 28.2966 26.8661 28.2207 26.8661 28.1666V18.1333C26.8661 18.1333 26.8879 18.0358 26.9207 18.0033L32.3864 12.5858C32.3864 12.5858 32.4411 12.51 32.4411 12.4558V12.4883ZM17.9133 16.8873V9.67119C17.9133 9.41114 18.121 9.20528 18.3833 9.20528H25.6855C25.9478 9.20528 26.1555 9.41114 26.1555 9.67119V16.8873C26.1555 17.1474 25.9478 17.3532 25.6855 17.3532H18.3833C18.121 17.3532 17.9133 17.1474 17.9133 16.8873Z",
@@ -2620,14 +2587,14 @@ var Logo = /* @__PURE__ */ __name((props) => {
2620
2587
  }
2621
2588
  )
2622
2589
  ] }),
2623
- /* @__PURE__ */ jsx27("defs", { children: /* @__PURE__ */ jsx27("clipPath", { id: "clip0_808_3091", children: /* @__PURE__ */ jsx27("rect", { width: "139", height: "33", fill: "white", transform: "translate(0 2)" }) }) })
2590
+ /* @__PURE__ */ jsx26("defs", { children: /* @__PURE__ */ jsx26("clipPath", { id: "clip0_808_3091", children: /* @__PURE__ */ jsx26("rect", { width: "139", height: "33", fill: "white", transform: "translate(0 2)" }) }) })
2624
2591
  ]
2625
2592
  }
2626
2593
  );
2627
2594
  }
2628
2595
  if (props.type === "circle") {
2629
2596
  const { size, className } = props;
2630
- return /* @__PURE__ */ jsx27(
2597
+ return /* @__PURE__ */ jsx26(
2631
2598
  "svg",
2632
2599
  {
2633
2600
  width: size,
@@ -2636,7 +2603,7 @@ var Logo = /* @__PURE__ */ __name((props) => {
2636
2603
  fill: "none",
2637
2604
  xmlns: "http://www.w3.org/2000/svg",
2638
2605
  className,
2639
- children: /* @__PURE__ */ jsx27(
2606
+ children: /* @__PURE__ */ jsx26(
2640
2607
  "path",
2641
2608
  {
2642
2609
  d: "M38.2402 9.81371C38.2402 9.74309 38.204 9.68333 38.1895 9.65074C38.1569 9.63806 38.0972 9.60004 38.0266 9.60004H28.1578C28.1089 9.60004 28.0618 9.61996 28.0274 9.65436L22.3614 15.3094C22.327 15.3438 22.28 15.3638 22.2311 15.3638H11.8426C11.7937 15.3638 11.7466 15.3837 11.7122 15.4181L4.45458 22.663C4.33688 22.7789 4.42018 22.9799 4.58496 22.9799H13.9558C14.2292 22.9799 14.4501 23.2008 14.4501 23.4743V33.1946C14.4501 33.2471 14.4737 33.2942 14.5099 33.3286C14.5443 33.3648 14.5914 33.3883 14.6439 33.3883H24.3642C24.6376 33.3883 24.8585 33.6092 24.8585 33.8827V43.2535C24.8585 43.4183 25.0595 43.5016 25.1754 43.3839L32.4204 36.1262C32.4548 36.0918 32.4747 36.0448 32.4747 35.9959V25.6074C32.4747 25.5585 32.4946 25.5114 32.529 25.477L38.1841 19.8111C38.2185 19.7767 38.2384 19.7296 38.2384 19.6807V9.81371H38.2402ZM31.6979 24.2493C31.6979 24.5173 31.4806 24.7364 31.2108 24.7364H23.5892C23.3212 24.7364 23.1021 24.5191 23.1021 24.2493V16.6277C23.1021 16.3597 23.3193 16.1406 23.5892 16.1406H31.2108C31.4787 16.1406 31.6979 16.3579 31.6979 16.6277V24.2493Z",
@@ -2648,7 +2615,7 @@ var Logo = /* @__PURE__ */ __name((props) => {
2648
2615
  }
2649
2616
  if (props.type === "favicon") {
2650
2617
  const { size, className } = props;
2651
- return /* @__PURE__ */ jsx27(
2618
+ return /* @__PURE__ */ jsx26(
2652
2619
  "svg",
2653
2620
  {
2654
2621
  width: size,
@@ -2657,7 +2624,7 @@ var Logo = /* @__PURE__ */ __name((props) => {
2657
2624
  fill: "none",
2658
2625
  xmlns: "http://www.w3.org/2000/svg",
2659
2626
  className,
2660
- children: /* @__PURE__ */ jsx27(
2627
+ children: /* @__PURE__ */ jsx26(
2661
2628
  "path",
2662
2629
  {
2663
2630
  d: "M44.8002 16.2872V3.36077C44.8002 3.22533 44.6949 3.12 44.5595 3.12H31.5332C31.5332 3.12 31.4128 3.15009 31.3677 3.19524L23.8919 10.6591C23.8919 10.6591 23.7866 10.7344 23.7264 10.7344H9.99315C9.99315 10.7344 9.87282 10.7645 9.82769 10.8096L0.23095 20.3652C0.0805305 20.5157 0.185824 20.7866 0.396411 20.7866H12.7759C13.1369 20.7866 13.4227 21.0725 13.4227 21.4337V34.2698C13.4227 34.4052 13.528 34.5105 13.6634 34.5105H26.5242C26.8852 34.5105 27.171 34.8115 27.171 35.1576V47.5122C27.171 47.7229 27.4267 47.8432 27.5922 47.6928L37.0536 38.2425C37.0536 38.2425 37.1288 38.1371 37.1288 38.0619V24.1273C37.1288 24.1273 37.1589 23.9918 37.204 23.9467L44.7249 16.4226C44.7249 16.4226 44.8002 16.3173 44.8002 16.242V16.2872ZM24.8094 22.3967V12.3746C24.8094 12.0135 25.0952 11.7276 25.4562 11.7276H35.5042C35.8653 11.7276 36.1511 12.0135 36.1511 12.3746V22.3967C36.1511 22.7579 35.8653 23.0438 35.5042 23.0438H25.4562C25.0952 23.0438 24.8094 22.7579 24.8094 22.3967Z",
@@ -2681,77 +2648,77 @@ var Logo = /* @__PURE__ */ __name((props) => {
2681
2648
  className,
2682
2649
  children: [
2683
2650
  /* @__PURE__ */ jsxs13("g", { clipPath: "url(#clip0_10863_99)", children: [
2684
- /* @__PURE__ */ jsx27(
2651
+ /* @__PURE__ */ jsx26(
2685
2652
  "path",
2686
2653
  {
2687
2654
  d: "M184.872 36.3336H114.674C112.782 36.3336 111.242 34.7471 111.242 32.7988V3.95789C111.242 2.00778 112.782 0.423096 114.674 0.423096H184.872C186.765 0.423096 188.304 2.00959 188.304 3.95789V32.7988C188.304 34.749 186.765 36.3336 184.872 36.3336ZM184.214 3.47489L115.334 3.4785C114.63 3.4785 114.061 4.04834 114.061 4.75204V32.0083C114.061 32.712 114.63 33.2818 115.334 33.2818L184.214 33.2782C184.918 33.2782 185.487 32.7084 185.487 32.0047V4.74662C185.487 4.04291 184.918 3.47308 184.214 3.47308V3.47489Z",
2688
2655
  fill: fillColor
2689
2656
  }
2690
2657
  ),
2691
- /* @__PURE__ */ jsx27(
2658
+ /* @__PURE__ */ jsx26(
2692
2659
  "path",
2693
2660
  {
2694
2661
  d: "M29.083 7.86175C31.167 7.86175 32.8566 6.17214 32.8566 4.08817C32.8566 2.00419 31.1688 0.312775 29.083 0.312775C26.9972 0.312775 25.3076 2.00238 25.3076 4.08636C25.3076 6.17033 26.9972 7.85994 29.083 7.85994V7.86175Z",
2695
2662
  fill: fillColor
2696
2663
  }
2697
2664
  ),
2698
- /* @__PURE__ */ jsx27(
2665
+ /* @__PURE__ */ jsx26(
2699
2666
  "path",
2700
2667
  {
2701
2668
  d: "M11.8055 30.2283H7.58688C7.30106 30.2283 7.06589 29.9931 7.06589 29.7073V7.48004C7.06589 4.44634 7.77321 2.31714 8.02466 1.65505C8.06446 1.54832 7.98667 1.43616 7.8727 1.43616H0.166346C0.0541876 1.43616 -0.0254086 1.54651 0.0125805 1.65324C0.253178 2.31714 0.933364 4.46081 0.933364 7.52346V27.0119C0.933364 30.4001 0.245942 32.6433 0.00896248 33.3199C-0.0272176 33.4248 0.0505696 33.5351 0.162728 33.5351H22.3683C22.4587 33.5351 22.5311 33.4628 22.5311 33.3723V27.1873C22.5311 27.0643 22.399 26.9847 22.2905 27.0444C21.1598 27.6667 16.2375 30.2283 11.8055 30.2283Z",
2702
2669
  fill: fillColor
2703
2670
  }
2704
2671
  ),
2705
- /* @__PURE__ */ jsx27(
2672
+ /* @__PURE__ */ jsx26(
2706
2673
  "path",
2707
2674
  {
2708
2675
  d: "M53.8248 28.0104C53.8248 30.9917 53.2007 32.7591 52.8642 33.3669C52.8045 33.4754 52.8823 33.6075 53.0071 33.6075H60.4168C60.538 33.6075 60.6158 33.4809 60.5634 33.3723C60.2414 32.7193 59.5774 30.7547 59.5774 28.0484V19.1915C59.5774 16.2103 58.9063 13.9092 57.5658 12.2902C56.2217 10.6711 54.3132 9.85889 51.8385 9.85889C47.6199 9.85889 44.5699 13.1513 43.3073 15.4976C43.1716 15.749 42.7863 15.6513 42.7863 15.3619V10.7634C42.7863 10.6729 42.7139 10.6006 42.6235 10.6006H36.7804C36.661 10.6006 36.5814 10.7254 36.6338 10.8321C36.9432 11.4816 37.5745 13.4498 37.5745 16.1578V28.0086C37.5782 30.9899 36.954 32.7573 36.6194 33.3651C36.5597 33.4736 36.6393 33.6057 36.7623 33.6057H44.1774C44.2986 33.6057 44.3764 33.4809 44.3239 33.3723C44.0074 32.7211 43.3579 30.7547 43.3579 28.0466V21.2882C43.3579 20.3746 43.5298 19.4629 43.8861 18.6127C44.4035 17.3735 45.0656 16.3677 45.8688 15.5862C46.9705 14.4881 48.2549 13.9346 49.7166 13.9346C51.0878 13.9346 52.1207 14.3959 52.8063 15.3239C53.492 16.2501 53.8339 17.6123 53.8339 19.4068V28.0086H53.8266L53.8248 28.0104Z",
2709
2676
  fill: fillColor
2710
2677
  }
2711
2678
  ),
2712
- /* @__PURE__ */ jsx27(
2679
+ /* @__PURE__ */ jsx26(
2713
2680
  "path",
2714
2681
  {
2715
2682
  d: "M25.7979 33.6076H33.2366C33.3559 33.6076 33.4355 33.4827 33.3831 33.3742C33.0683 32.723 32.4207 30.7566 32.4207 28.0485V10.7635C32.4207 10.673 32.3483 10.6006 32.2579 10.6006H25.8178C25.6984 10.6006 25.6188 10.7255 25.6713 10.834C25.9824 11.4834 26.6174 13.4516 26.6174 16.1597V28.0105C26.6174 30.9917 25.9915 32.7591 25.655 33.367C25.5953 33.4755 25.6749 33.6076 25.7979 33.6076Z",
2716
2683
  fill: fillColor
2717
2684
  }
2718
2685
  ),
2719
- /* @__PURE__ */ jsx27(
2686
+ /* @__PURE__ */ jsx26(
2720
2687
  "path",
2721
2688
  {
2722
2689
  d: "M93.2845 15.5266C93.2845 15.8161 93.6427 15.9156 93.7747 15.6587C95.4082 12.5182 97.608 10.5826 100.265 10.5826L100.258 10.5862H102.802C102.892 10.5862 102.964 10.6586 102.964 10.749V15.5266C102.964 15.6171 102.892 15.6894 102.802 15.6894H98.7513C96.9007 15.6894 95.1731 16.6247 93.8091 18.1189C93.478 18.4825 93.2989 18.9456 93.2845 19.4214V28.0485C93.2845 30.7566 93.9303 32.723 94.2469 33.3743C94.2993 33.4828 94.2215 33.6076 94.1003 33.6076H86.6617C86.5387 33.6076 86.4591 33.4756 86.5188 33.367C86.8553 32.7592 87.4812 30.9918 87.4812 28.0106V16.1598C87.4812 13.4517 86.8444 11.4835 86.5351 10.8341C86.4826 10.7255 86.5622 10.6007 86.6816 10.6007H93.1217C93.2121 10.6007 93.2845 10.6731 93.2845 10.7635V15.5266Z",
2723
2690
  fill: fillColor
2724
2691
  }
2725
2692
  ),
2726
- /* @__PURE__ */ jsx27(
2693
+ /* @__PURE__ */ jsx26(
2727
2694
  "path",
2728
2695
  {
2729
2696
  d: "M74.6377 34.1828C66.8916 34.1828 62.0923 29.7272 62.0923 21.8996C62.0923 14.5858 67.1774 9.80283 73.7332 9.80283C80.2891 9.80283 85.1372 14.3507 85.1372 22.5545H69.075C68.8688 22.5545 68.7024 22.7282 68.7132 22.9344C68.99 28.0123 71.1301 31.1834 75.3975 31.1834C78.9359 31.1834 82.3748 28.8263 82.9356 25.0256C82.9429 24.9822 82.979 24.9478 83.0243 24.9478H85.0359C85.092 24.9478 85.1336 24.9967 85.1263 25.0527C84.3304 30.6661 80.3071 34.1828 74.6395 34.1828H74.6359H74.6377ZM73.7821 12.8003C70.9727 12.8003 69.0588 15.0869 68.7693 19.0667C68.7548 19.2784 68.9195 19.4593 69.1311 19.4593H78.1164C78.3227 19.4593 78.4855 19.2874 78.4782 19.0812C78.3317 14.9675 76.5498 12.8022 73.7839 12.8022L73.7821 12.8003Z",
2730
2697
  fill: fillColor
2731
2698
  }
2732
2699
  ),
2733
- /* @__PURE__ */ jsx27(
2700
+ /* @__PURE__ */ jsx26(
2734
2701
  "path",
2735
2702
  {
2736
2703
  d: "M124.721 24.5354V10.4903H122.598C120.02 10.4903 118.564 11.0058 117.835 12.0677H117.683V8.09332H135.369V12.0677H135.187C134.459 11.0058 133.032 10.4903 130.454 10.4903H128.33V24.5354C128.33 26.8111 128.573 27.9634 129.423 29.0253V29.1773H123.629V29.0253C124.479 28.0249 124.721 26.8418 124.721 24.5354Z",
2737
2704
  fill: fillColor
2738
2705
  }
2739
2706
  ),
2740
- /* @__PURE__ */ jsx27(
2707
+ /* @__PURE__ */ jsx26(
2741
2708
  "path",
2742
2709
  {
2743
2710
  d: "M139.403 29.5716C135.125 29.5716 131.879 26.5379 131.879 21.867C131.879 17.681 134.913 14.4049 138.736 14.4049C142.254 14.4049 144.591 16.6499 144.591 20.503V21.7169H135.248C135.459 25.1142 137.431 26.8436 140.313 26.8436C141.738 26.8436 143.074 26.4185 144.347 25.5701L144.772 27.238C143.316 28.7847 141.527 29.5734 139.403 29.5734V29.5716ZM141.284 19.7722C141.254 17.6792 140.192 16.4346 138.493 16.4346C136.794 16.4346 135.642 17.6177 135.307 19.7722H141.284Z",
2744
2711
  fill: fillColor
2745
2712
  }
2746
2713
  ),
2747
- /* @__PURE__ */ jsx27(
2714
+ /* @__PURE__ */ jsx26(
2748
2715
  "path",
2749
2716
  {
2750
2717
  d: "M180.877 25.628V19.7722C180.877 16.4654 178.996 14.4031 176.327 14.4031C174.417 14.4031 172.93 15.4035 171.928 17.2252H171.776C171.078 15.4053 169.652 14.4031 167.863 14.4031C166.074 14.4031 164.618 15.2823 163.677 16.8905H163.529L163.518 14.7776C163.518 14.7215 163.472 14.6745 163.415 14.6745H159.487C159.411 14.6745 159.362 14.7522 159.395 14.821C159.59 15.2298 160.106 16.469 160.106 18.1767V25.6425C160.106 27.5202 159.598 28.6345 159.386 29.0181C159.348 29.0868 159.399 29.17 159.476 29.17H164.145C164.221 29.17 164.27 29.0904 164.238 29.0235C164.039 28.6128 163.518 27.3737 163.518 25.6696V20.2335C163.518 20.2335 163.543 16.923 166.62 16.923C168.107 16.923 168.865 17.9849 168.865 19.926V25.6895C168.865 27.4189 168.713 28.1769 168.228 29.0271V29.1791H172.87V29.0271C172.355 28.2076 172.233 27.5112 172.233 25.6895V20.7147C172.233 18.4101 173.538 16.923 175.236 16.923C176.662 16.923 177.512 17.9234 177.512 19.9567V25.6298C177.512 27.4496 177.391 28.2076 176.875 29.0271V29.1791H181.517V29.0271C181.002 28.2076 180.881 27.4496 180.881 25.6298L180.877 25.628Z",
2751
2718
  fill: fillColor
2752
2719
  }
2753
2720
  ),
2754
- /* @__PURE__ */ jsx27(
2721
+ /* @__PURE__ */ jsx26(
2755
2722
  "path",
2756
2723
  {
2757
2724
  d: "M158.172 29.0235C157.973 28.6146 157.454 27.3755 157.452 25.6732V19.9857C157.452 18.0446 156.906 16.6191 155.844 15.7382C154.782 14.859 153.416 14.4031 151.81 14.4031C149.869 14.4031 147.866 15.2533 146.379 16.4654L146.774 18.2255C148.23 17.3464 149.596 16.9212 150.9 16.9212C152.751 16.9212 154.116 17.8619 154.116 19.8337V20.7437L151.325 21.4419C147.897 22.3211 145.987 23.5042 145.987 25.8414C145.987 28.0557 147.685 29.5734 149.869 29.5734C151.522 29.5734 152.971 28.7666 153.916 27.1873C153.751 28.1497 153.465 28.7576 153.321 29.0217C153.283 29.0904 153.333 29.1736 153.411 29.1736H158.08C158.156 29.1736 158.205 29.094 158.172 29.0271V29.0235ZM151.112 27.115C150.14 27.115 149.413 26.509 149.413 25.4163C149.413 24.3237 150.233 23.7484 152.174 23.1406L154.115 22.5038V23.4753C154.115 25.8414 152.506 27.115 151.112 27.115Z",
@@ -2759,7 +2726,7 @@ var Logo = /* @__PURE__ */ __name((props) => {
2759
2726
  }
2760
2727
  )
2761
2728
  ] }),
2762
- /* @__PURE__ */ jsx27("defs", { children: /* @__PURE__ */ jsx27("clipPath", { id: "clip0_10863_99", children: /* @__PURE__ */ jsx27("rect", { width: "188.322", height: "35.8247", fill: "white", transform: "translate(0 0.305359)" }) }) })
2729
+ /* @__PURE__ */ jsx26("defs", { children: /* @__PURE__ */ jsx26("clipPath", { id: "clip0_10863_99", children: /* @__PURE__ */ jsx26("rect", { width: "188.322", height: "35.8247", fill: "white", transform: "translate(0 0.305359)" }) }) })
2763
2730
  ]
2764
2731
  }
2765
2732
  );
@@ -2778,77 +2745,77 @@ var Logo = /* @__PURE__ */ __name((props) => {
2778
2745
  className,
2779
2746
  children: [
2780
2747
  /* @__PURE__ */ jsxs13("g", { clipPath: "url(#clip0_10863_278)", children: [
2781
- /* @__PURE__ */ jsx27(
2748
+ /* @__PURE__ */ jsx26(
2782
2749
  "path",
2783
2750
  {
2784
2751
  d: "M160.028 35.9619H113.316C111.425 35.9619 109.886 34.3763 109.886 32.4292V3.60506C109.886 1.65609 111.425 0.0723267 113.316 0.0723267H160.028C161.919 0.0723267 163.458 1.6579 163.458 3.60506V32.4292C163.458 34.3782 161.919 35.9619 160.028 35.9619ZM159.37 3.12234L113.976 3.12595C113.273 3.12595 112.703 3.69546 112.703 4.39875V31.6391C112.703 32.3424 113.273 32.9119 113.976 32.9119L159.37 32.9083C160.073 32.9083 160.643 32.3388 160.643 31.6355V4.39332C160.643 3.69003 160.073 3.12053 159.37 3.12053V3.12234Z",
2785
2752
  fill: fillColor
2786
2753
  }
2787
2754
  ),
2788
- /* @__PURE__ */ jsx27(
2755
+ /* @__PURE__ */ jsx26(
2789
2756
  "path",
2790
2757
  {
2791
2758
  d: "M116.76 28.7484C116.686 28.7484 116.635 28.6761 116.659 28.6074C116.814 28.1626 117.264 26.6909 117.264 24.469V11.6832C117.264 9.67271 116.818 8.26613 116.66 7.83222C116.635 7.76352 116.688 7.68939 116.762 7.68939H123.504C125.928 7.68939 127.868 8.26432 129.352 9.38525C130.837 10.5062 131.565 12.052 131.565 14.0226C131.565 18.0526 128.262 20.4481 123.504 20.4481H120.896V21.1839V24.4672C120.896 26.6891 121.347 28.1626 121.502 28.6055C121.526 28.6743 121.475 28.7466 121.401 28.7466H119.902L116.76 28.7502V28.7484ZM120.896 18.1122H123.079C126.078 18.1122 127.776 16.7183 127.776 14.0208C127.776 11.3234 126.109 10.0506 123.079 10.0506H120.896V18.1122Z",
2792
2759
  fill: fillColor
2793
2760
  }
2794
2761
  ),
2795
- /* @__PURE__ */ jsx27(
2762
+ /* @__PURE__ */ jsx26(
2796
2763
  "path",
2797
2764
  {
2798
2765
  d: "M150.109 13.99C154.352 13.99 157.503 17.1105 157.503 21.5364C157.503 25.9622 154.352 29.1424 150.109 29.1424C145.866 29.1424 142.714 25.9604 142.714 21.5364C142.714 17.1123 145.866 13.99 150.109 13.99ZM150.109 16.2933C147.806 16.2933 146.35 18.264 146.35 21.5364C146.35 24.8088 147.775 26.8391 150.109 26.8391C152.443 26.8391 153.897 24.8088 153.897 21.5364C153.897 18.264 152.441 16.2933 150.109 16.2933Z",
2799
2766
  fill: fillColor
2800
2767
  }
2801
2768
  ),
2802
- /* @__PURE__ */ jsx27(
2769
+ /* @__PURE__ */ jsx26(
2803
2770
  "path",
2804
2771
  {
2805
2772
  d: "M136.72 17.4575C136.72 17.6383 136.944 17.6997 137.027 17.5406C138.047 15.579 139.421 14.3695 141.08 14.3695H141.077L142.664 14.3713C142.72 14.3713 142.765 14.4165 142.765 14.4726V17.4557C142.765 17.5117 142.72 17.5569 142.664 17.5569H140.135C138.98 17.5569 137.9 18.1409 137.049 19.0738C136.843 19.3016 136.73 19.5909 136.721 19.8874V25.2751C136.721 26.9655 137.239 28.1931 137.436 28.5999C137.468 28.6668 137.419 28.7463 137.343 28.7463H132.715C132.637 28.7463 132.588 28.6632 132.626 28.5963C132.836 28.2166 133.341 27.1119 133.341 25.2516V17.8516C133.341 16.1594 132.831 14.9318 132.637 14.525C132.605 14.4581 132.654 14.3804 132.729 14.3804H136.622C136.678 14.3804 136.723 14.4256 136.723 14.4816V17.4557L136.72 17.4575Z",
2806
2773
  fill: fillColor
2807
2774
  }
2808
2775
  ),
2809
- /* @__PURE__ */ jsx27(
2776
+ /* @__PURE__ */ jsx26(
2810
2777
  "path",
2811
2778
  {
2812
2779
  d: "M136.72 17.4575C136.72 17.6383 136.944 17.6997 137.027 17.5406C138.047 15.579 139.421 14.3695 141.08 14.3695H141.077L142.664 14.3713C142.72 14.3713 142.765 14.4165 142.765 14.4726V17.4557C142.765 17.5117 142.72 17.5569 142.664 17.5569H140.135C138.98 17.5569 137.9 18.1409 137.049 19.0738C136.843 19.3016 136.73 19.5909 136.721 19.8874V25.2751C136.721 26.9655 137.239 28.1931 137.436 28.5999C137.468 28.6668 137.419 28.7463 137.343 28.7463H132.715C132.637 28.7463 132.588 28.6632 132.626 28.5963C132.836 28.2166 133.341 27.1119 133.341 25.2516V17.8516C133.341 16.1594 132.831 14.9318 132.637 14.525C132.605 14.4581 132.654 14.3804 132.729 14.3804H136.622C136.678 14.3804 136.723 14.4256 136.723 14.4816V17.4557L136.72 17.4575Z",
2813
2780
  fill: fillColor
2814
2781
  }
2815
2782
  ),
2816
- /* @__PURE__ */ jsx27(
2783
+ /* @__PURE__ */ jsx26(
2817
2784
  "path",
2818
2785
  {
2819
2786
  d: "M11.7895 29.8268H7.57656C7.29107 29.8268 7.05573 29.5934 7.05573 29.306V7.11851C7.05573 4.08997 7.76174 1.96613 8.01252 1.30255C8.05303 1.19645 7.97394 1.08264 7.86013 1.08264H0.167245C0.0553629 1.08264 -0.023728 1.1926 0.0148521 1.29869C0.255978 1.96034 0.933062 4.10154 0.933062 7.15902V26.6131C0.933062 29.9946 0.248262 32.2361 0.00906532 32.9113C-0.0275858 33.0174 0.051507 33.1254 0.163389 33.1254H22.3296C22.4183 33.1254 22.4917 33.0521 22.4917 32.9634V26.7886C22.4917 26.6652 22.3605 26.5861 22.2525 26.6459C21.124 27.267 16.2089 29.8249 11.7857 29.8249V29.8287L11.7895 29.8268Z",
2820
2787
  fill: fillColor
2821
2788
  }
2822
2789
  ),
2823
- /* @__PURE__ */ jsx27(
2790
+ /* @__PURE__ */ jsx26(
2824
2791
  "path",
2825
2792
  {
2826
2793
  d: "M53.6435 27.6123C53.6435 30.5887 53.0204 32.3518 52.6848 32.9614C52.625 33.0694 52.7041 33.2006 52.8275 33.2006H60.2253C60.3449 33.2006 60.4259 33.0733 60.3719 32.9672C60.0497 32.3171 59.3862 30.3534 59.3862 27.6528V18.8102C59.3862 15.8338 58.7168 13.5363 57.38 11.9198C56.0374 10.3033 54.1315 9.4931 51.6624 9.4931C47.4514 9.4931 44.4055 12.7782 43.1458 15.1219C43.0089 15.3746 42.625 15.2763 42.625 14.985V10.394C42.625 10.3052 42.5517 10.2319 42.463 10.2319H36.6297C36.5101 10.2319 36.431 10.3554 36.4831 10.4634C36.7917 11.1115 37.4205 13.0753 37.4205 15.7817V27.6123C37.4244 30.5887 36.8013 32.3538 36.4657 32.9614C36.4059 33.0694 36.485 33.2025 36.6084 33.2025H44.01C44.1296 33.2025 44.2087 33.0772 44.1566 32.9691C43.8403 32.3191 43.1921 30.3553 43.1921 27.6528V20.9051C43.1921 19.9927 43.3638 19.0822 43.7188 18.2334C44.2338 16.9969 44.8955 15.99 45.6979 15.2126C46.7975 14.115 48.0802 13.5633 49.5386 13.5633C50.9082 13.5633 51.9383 14.0243 52.6211 14.9483C53.3059 15.8743 53.6474 17.2323 53.6474 19.0224V27.6103H53.6396L53.6435 27.6123Z",
2827
2794
  fill: fillColor
2828
2795
  }
2829
2796
  ),
2830
- /* @__PURE__ */ jsx27(
2797
+ /* @__PURE__ */ jsx26(
2831
2798
  "path",
2832
2799
  {
2833
2800
  d: "M25.7793 33.2006H33.2041C33.3237 33.2006 33.4028 33.0752 33.3507 32.9672C33.0363 32.3171 32.39 30.3553 32.39 27.6509V10.394C32.39 10.3052 32.3167 10.2319 32.228 10.2319H25.7986C25.679 10.2319 25.5999 10.3573 25.652 10.4634C25.9626 11.1116 26.5972 13.0753 26.5972 15.7817V27.6123C26.5972 30.5888 25.9703 32.3538 25.6366 32.9614C25.5768 33.0695 25.6559 33.2006 25.7793 33.2006Z",
2834
2801
  fill: fillColor
2835
2802
  }
2836
2803
  ),
2837
- /* @__PURE__ */ jsx27(
2804
+ /* @__PURE__ */ jsx26(
2838
2805
  "path",
2839
2806
  {
2840
2807
  d: "M29.0603 7.49662C31.1398 7.49662 32.8277 5.80874 32.8277 3.72927C32.8277 1.6498 31.1417 -0.0380859 29.0603 -0.0380859C26.9789 -0.0380859 25.293 1.6498 25.293 3.72927C25.293 5.80874 26.9809 7.49662 29.0603 7.49662Z",
2841
2808
  fill: fillColor
2842
2809
  }
2843
2810
  ),
2844
- /* @__PURE__ */ jsx27(
2811
+ /* @__PURE__ */ jsx26(
2845
2812
  "path",
2846
2813
  {
2847
2814
  d: "M93.4794 15.149C93.4794 15.4384 93.8363 15.5367 93.9694 15.2821C95.5994 12.1455 97.7965 10.2146 100.451 10.2146L100.445 10.2185H102.984C103.072 10.2185 103.146 10.2918 103.146 10.3805V15.149C103.146 15.2377 103.072 15.311 102.984 15.311H98.9404C97.0944 15.311 95.3679 16.2466 94.006 17.7377C93.6762 18.1004 93.4987 18.5633 93.4814 19.0398V27.6528C93.4814 30.3554 94.1276 32.3191 94.442 32.9692C94.4941 33.0791 94.415 33.2026 94.2954 33.2026H86.8706C86.7472 33.2026 86.6681 33.0714 86.7279 32.9615C87.0635 32.3538 87.6885 30.5888 87.6885 27.6143V15.7836C87.6885 13.0811 87.0539 11.1154 86.7433 10.4654C86.6912 10.3573 86.7703 10.2339 86.8899 10.2339H93.3193C93.408 10.2339 93.4814 10.3072 93.4814 10.3959V15.1529L93.4794 15.149Z",
2848
2815
  fill: fillColor
2849
2816
  }
2850
2817
  ),
2851
- /* @__PURE__ */ jsx27(
2818
+ /* @__PURE__ */ jsx26(
2852
2819
  "path",
2853
2820
  {
2854
2821
  d: "M75.351 30.7797C71.0339 30.7797 68.8965 27.5274 68.667 22.3365C68.6612 22.2439 68.7364 22.1667 68.829 22.1667H84.9073C84.998 22.1667 85.0713 22.0915 85.0713 22.0008C85.0057 13.9144 80.189 9.43719 73.6863 9.43719C67.1836 9.43719 62.0659 14.2134 62.0659 21.5128C62.0659 29.3272 66.8557 33.7755 74.589 33.7755H74.5929C79.861 33.7755 83.7055 30.7277 84.8514 25.7836C84.8745 25.6814 84.7954 25.5849 84.6932 25.5849H82.7854C82.714 25.5849 82.6523 25.6312 82.6311 25.6987C81.6454 28.8604 78.5396 30.7797 75.351 30.7797ZM73.7364 12.4291C76.5431 12.4291 78.3371 14.6629 78.4297 18.9086C78.4297 18.9993 78.3583 19.0764 78.2657 19.0764H68.8811C68.7885 19.0764 68.7114 18.9974 68.7191 18.9048C68.9525 14.7979 70.8815 12.431 73.7383 12.431L73.7364 12.4291Z",
@@ -2856,7 +2823,7 @@ var Logo = /* @__PURE__ */ __name((props) => {
2856
2823
  }
2857
2824
  )
2858
2825
  ] }),
2859
- /* @__PURE__ */ jsx27("defs", { children: /* @__PURE__ */ jsx27("clipPath", { id: "clip0_10863_278", children: /* @__PURE__ */ jsx27("rect", { width: "163.522", height: "36", fill: "white", transform: "translate(0 -0.0380859)" }) }) })
2826
+ /* @__PURE__ */ jsx26("defs", { children: /* @__PURE__ */ jsx26("clipPath", { id: "clip0_10863_278", children: /* @__PURE__ */ jsx26("rect", { width: "163.522", height: "36", fill: "white", transform: "translate(0 -0.0380859)" }) }) })
2860
2827
  ]
2861
2828
  }
2862
2829
  );
@@ -2875,70 +2842,70 @@ var Logo = /* @__PURE__ */ __name((props) => {
2875
2842
  className,
2876
2843
  children: [
2877
2844
  /* @__PURE__ */ jsxs13("g", { clipPath: "url(#clip0_10975_91)", children: [
2878
- /* @__PURE__ */ jsx27(
2845
+ /* @__PURE__ */ jsx26(
2879
2846
  "path",
2880
2847
  {
2881
2848
  d: "M172.338 36H113.318C111.426 36 109.888 34.4145 109.888 32.4672V3.64313C109.888 1.69387 111.426 0.110352 113.318 0.110352H172.338C174.23 0.110352 175.768 1.69591 175.768 3.64313V32.4672C175.768 34.4165 174.23 36 172.338 36ZM171.68 3.16092L113.978 3.16501C113.275 3.16501 112.705 3.73507 112.705 4.43795V31.6785C112.705 32.3814 113.275 32.9515 113.978 32.9515L171.68 32.9474C172.382 32.9474 172.953 32.3773 172.953 31.6745V4.43182C172.953 3.72895 172.382 3.15888 171.68 3.15888V3.16092Z",
2882
2849
  fill: fillColor
2883
2850
  }
2884
2851
  ),
2885
- /* @__PURE__ */ jsx27(
2852
+ /* @__PURE__ */ jsx26(
2886
2853
  "path",
2887
2854
  {
2888
2855
  d: "M11.7895 29.8662H7.57629C7.29024 29.8662 7.05526 29.6333 7.05526 29.3452V7.15752C7.05526 4.12943 7.76223 2.00445 8.0115 1.34244C8.05237 1.23619 7.97268 1.12177 7.85826 1.12177H0.167469C0.0550904 1.12177 -0.0225531 1.2321 0.0142254 1.33835C0.255329 2.00036 0.931644 4.14169 0.931644 7.19839V26.6522C0.931644 30.0337 0.247156 32.2752 0.00809567 32.9494C-0.0286828 33.0557 0.0510039 33.164 0.163383 33.164H22.3306C22.4184 33.164 22.492 33.0904 22.492 33.0026V26.8279C22.492 26.7053 22.3612 26.6256 22.2529 26.6849C21.1251 27.306 16.209 29.8641 11.7854 29.8641V29.8682H11.7895V29.8662Z",
2889
2856
  fill: fillColor
2890
2857
  }
2891
2858
  ),
2892
- /* @__PURE__ */ jsx27(
2859
+ /* @__PURE__ */ jsx26(
2893
2860
  "path",
2894
2861
  {
2895
2862
  d: "M53.6435 27.6513C53.6435 30.6283 53.0203 32.3917 52.6852 33.0006C52.6259 33.1088 52.7036 33.2396 52.8282 33.2396H60.2268C60.3474 33.2396 60.4271 33.1129 60.3739 33.0067C60.0511 32.3569 59.3891 30.3934 59.3891 27.6922V18.849C59.3891 15.872 58.7189 13.5754 57.3826 11.9592C56.0402 10.343 54.1339 9.5318 51.6656 9.5318C47.4545 9.5318 44.408 12.8173 43.1493 15.1609C43.0124 15.4143 42.6283 15.3162 42.6283 15.0241V10.4329C42.6283 10.345 42.5548 10.2715 42.4669 10.2715H36.6334C36.5129 10.2715 36.4352 10.3941 36.4863 10.5023C36.7948 11.1501 37.4242 13.1136 37.4242 15.8209V27.6513C37.4283 30.6283 36.8051 32.3937 36.47 33.0006C36.4107 33.1088 36.4884 33.2417 36.613 33.2417H44.0157C44.1342 33.2417 44.2139 33.117 44.1628 33.0087C43.8461 32.359 43.1984 30.3954 43.1984 27.6922V20.9433C43.1984 20.03 43.37 19.1208 43.7255 18.2708C44.2404 17.0346 44.9025 16.0273 45.7055 15.2509C46.8047 14.1536 48.0879 13.602 49.5468 13.602C50.9157 13.602 51.9455 14.0637 52.63 14.9873C53.3145 15.9129 53.6557 17.2716 53.6557 19.0615V27.6493H53.6476H53.6516L53.6435 27.6513Z",
2896
2863
  fill: fillColor
2897
2864
  }
2898
2865
  ),
2899
- /* @__PURE__ */ jsx27(
2866
+ /* @__PURE__ */ jsx26(
2900
2867
  "path",
2901
2868
  {
2902
2869
  d: "M25.7796 33.2396H33.2048C33.3233 33.2396 33.403 33.1149 33.3519 33.0066C33.0373 32.3569 32.3916 30.3954 32.3916 27.6901V10.4328C32.3916 10.345 32.318 10.2714 32.2302 10.2714H25.8001C25.6816 10.2714 25.6019 10.3961 25.653 10.5023C25.9635 11.15 26.599 13.1136 26.599 15.8209V27.6513C26.599 30.6283 25.9717 32.3937 25.6387 33.0005C25.5794 33.1088 25.6591 33.2396 25.7817 33.2396H25.7796Z",
2903
2870
  fill: fillColor
2904
2871
  }
2905
2872
  ),
2906
- /* @__PURE__ */ jsx27(
2873
+ /* @__PURE__ */ jsx26(
2907
2874
  "path",
2908
2875
  {
2909
2876
  d: "M29.0612 7.5355C31.1412 7.5355 32.829 5.84778 32.829 3.76775C32.829 1.68772 31.1412 0 29.0612 0C26.9812 0 25.2935 1.68772 25.2935 3.76775C25.2935 5.84778 26.9812 7.5355 29.0612 7.5355Z",
2910
2877
  fill: fillColor
2911
2878
  }
2912
2879
  ),
2913
- /* @__PURE__ */ jsx27(
2880
+ /* @__PURE__ */ jsx26(
2914
2881
  "path",
2915
2882
  {
2916
2883
  d: "M93.4806 15.1875C93.4806 15.4776 93.8381 15.5757 93.9709 15.3203C95.6014 12.1839 97.7979 10.2531 100.452 10.2531L100.446 10.2571H102.984C103.072 10.2571 103.145 10.3307 103.145 10.4186V15.1875C103.145 15.2754 103.072 15.3489 102.984 15.3489H98.9401C97.093 15.3489 95.3665 16.2847 94.0057 17.7763C93.6767 18.14 93.4989 18.6018 93.4806 19.0778V27.6901C93.4806 30.3934 94.1262 32.3569 94.4409 33.0067C94.494 33.117 94.4143 33.2396 94.2938 33.2396H86.8686C86.746 33.2396 86.6663 33.1088 86.7256 32.9985C87.0607 32.3917 87.6859 30.6263 87.6859 27.6513V15.8209C87.6859 13.1177 87.0504 11.1521 86.7399 10.5023C86.6867 10.394 86.7664 10.2714 86.887 10.2714H93.3171C93.4049 10.2714 93.4785 10.345 93.4785 10.4329V15.1895V15.1855L93.4806 15.1875Z",
2917
2884
  fill: fillColor
2918
2885
  }
2919
2886
  ),
2920
- /* @__PURE__ */ jsx27(
2887
+ /* @__PURE__ */ jsx26(
2921
2888
  "path",
2922
2889
  {
2923
2890
  d: "M75.3506 30.8184C71.0332 30.8184 68.896 27.5655 68.6672 22.3757C68.661 22.2837 68.7366 22.2061 68.8286 22.2061H84.9069C84.9968 22.2061 85.0704 22.1305 85.0704 22.0406C85.005 13.9534 80.189 9.47662 73.6854 9.47662C67.1817 9.47662 62.0654 14.2537 62.0654 21.5522C62.0654 29.3677 66.8548 33.8158 74.5885 33.8158H74.5926C79.8601 33.8158 83.7055 30.7673 84.8517 25.8247C84.8742 25.7225 84.7966 25.6265 84.6944 25.6265H82.786C82.7145 25.6265 82.6532 25.6735 82.6307 25.7409C81.6459 28.9018 78.5401 30.8224 75.3506 30.8224V30.8184ZM73.7365 12.4679C76.5439 12.4679 78.3379 14.7012 78.4298 18.9471C78.4298 19.037 78.3583 19.1146 78.2663 19.1146H68.8817C68.7898 19.1146 68.7121 19.0349 68.7203 18.943C68.9532 14.8361 70.882 12.47 73.7406 12.47H73.7385L73.7365 12.4679Z",
2924
2891
  fill: fillColor
2925
2892
  }
2926
2893
  ),
2927
- /* @__PURE__ */ jsx27(
2894
+ /* @__PURE__ */ jsx26(
2928
2895
  "path",
2929
2896
  {
2930
2897
  d: "M154.224 28.1846C154.028 27.78 153.515 26.5561 153.513 24.8745V19.2556C153.513 17.339 152.974 15.9292 151.926 15.0608C150.877 14.1924 149.527 13.7429 147.941 13.7429C146.025 13.7429 144.045 14.5827 142.576 15.78L142.966 17.5188C144.404 16.6505 145.753 16.2296 147.042 16.2296C148.871 16.2296 150.219 17.1592 150.219 19.1064V20.0055L147.463 20.6961C144.077 21.5645 142.189 22.7332 142.189 25.0421C142.189 27.2284 143.867 28.7281 146.025 28.7281C147.657 28.7281 149.089 27.9312 150.021 26.3702C149.858 27.3203 149.576 27.921 149.433 28.1826C149.396 28.25 149.445 28.3317 149.523 28.3317H154.134C154.21 28.3317 154.257 28.2541 154.224 28.1866V28.1826V28.1846ZM147.251 26.3007C146.29 26.3007 145.573 25.7021 145.573 24.6232C145.573 23.5444 146.382 22.9764 148.301 22.3756L150.217 21.7463V22.7067C150.217 25.0441 148.628 26.3028 147.251 26.3028V26.3007Z",
2931
2898
  fill: fillColor
2932
2899
  }
2933
2900
  ),
2934
- /* @__PURE__ */ jsx27(
2901
+ /* @__PURE__ */ jsx26(
2935
2902
  "path",
2936
2903
  {
2937
2904
  d: "M120.468 11.1786H120.317V23.5893C120.317 25.9084 120.527 27.1732 121.22 28.1682V28.3194H116.702V28.1682C117.395 27.2038 117.605 25.9084 117.605 23.5893V11.9305C117.605 9.6707 117.425 8.49583 116.702 7.53346V7.38226H122.666L128.962 23.8897H129.113L135.318 7.38226H141.011V7.53346C140.287 8.52853 140.077 9.732 140.077 11.9305V23.6792C140.077 25.9983 140.287 27.1139 141.011 28.1682V28.3194H135.619V28.1682C136.373 27.1139 136.552 25.9983 136.552 23.6792V11.3278H136.401L130.016 28.3174H127.004L120.468 11.1766V11.1786Z",
2938
2905
  fill: fillColor
2939
2906
  }
2940
2907
  ),
2941
- /* @__PURE__ */ jsx27(
2908
+ /* @__PURE__ */ jsx26(
2942
2909
  "path",
2943
2910
  {
2944
2911
  d: "M157.569 17.2634C156.515 15.7882 155.943 15.0036 155.009 14.1904V14.0392H160.219V14.1597C160.219 15.1242 160.52 15.968 161.335 17.1715L162.389 18.8286H162.51L163.654 17.1715C164.467 15.966 164.618 15.304 164.618 14.1291V14.0392H168.987V14.1904C168.022 14.9443 167.42 15.6963 166.245 17.3533L163.926 20.6368L166.909 24.9154C168.024 26.5112 168.656 27.2958 169.53 28.1683V28.3195H164.349V28.1989C164.349 27.2345 164.048 26.3906 163.233 25.1565L161.907 23.0785H161.756L160.34 25.1279C159.526 26.3334 159.345 27.116 159.345 28.2009V28.3215H155.007V28.1703C155.971 27.2958 156.633 26.4826 157.749 24.8868L160.34 21.2416L157.569 17.2655V17.2634Z",
@@ -2946,7 +2913,7 @@ var Logo = /* @__PURE__ */ __name((props) => {
2946
2913
  }
2947
2914
  )
2948
2915
  ] }),
2949
- /* @__PURE__ */ jsx27("defs", { children: /* @__PURE__ */ jsx27("clipPath", { id: "clip0_10975_91", children: /* @__PURE__ */ jsx27("rect", { width: "175.766", height: "36", fill: "white" }) }) })
2916
+ /* @__PURE__ */ jsx26("defs", { children: /* @__PURE__ */ jsx26("clipPath", { id: "clip0_10975_91", children: /* @__PURE__ */ jsx26("rect", { width: "175.766", height: "36", fill: "white" }) }) })
2950
2917
  ]
2951
2918
  }
2952
2919
  );
@@ -2965,7 +2932,7 @@ var Logo = /* @__PURE__ */ __name((props) => {
2965
2932
  className,
2966
2933
  children: [
2967
2934
  /* @__PURE__ */ jsxs13("g", { clipPath: "url(#clip0_15937_50)", children: [
2968
- /* @__PURE__ */ jsx27(
2935
+ /* @__PURE__ */ jsx26(
2969
2936
  "path",
2970
2937
  {
2971
2938
  fillRule: "evenodd",
@@ -2974,7 +2941,7 @@ var Logo = /* @__PURE__ */ __name((props) => {
2974
2941
  fill: fillColor
2975
2942
  }
2976
2943
  ),
2977
- /* @__PURE__ */ jsx27(
2944
+ /* @__PURE__ */ jsx26(
2978
2945
  "path",
2979
2946
  {
2980
2947
  fillRule: "evenodd",
@@ -2983,14 +2950,14 @@ var Logo = /* @__PURE__ */ __name((props) => {
2983
2950
  fill: fillColor
2984
2951
  }
2985
2952
  ),
2986
- /* @__PURE__ */ jsx27(
2953
+ /* @__PURE__ */ jsx26(
2987
2954
  "path",
2988
2955
  {
2989
2956
  d: "M191.241 10.1641C194.571 10.1641 196.25 11.9276 196.819 12.6826C197.371 13.4207 197.647 14.1476 197.647 14.9026C197.647 15.6575 197.456 16.0349 197.135 16.4011C196.802 16.7842 196.397 16.9702 195.811 16.9702C195.225 16.9702 194.808 16.8124 194.532 16.4912C194.261 16.1701 193.985 15.6742 193.664 15.0264C192.639 12.9699 192.064 12.1304 190.526 12.1304C189.698 12.1304 188.272 12.5642 187.095 13.5107C185.951 14.4685 185.015 15.7363 184.311 17.28C183.601 18.8463 183.235 20.5761 183.235 22.4016C183.235 24.2271 183.5 25.1286 183.996 26.1653C184.475 27.202 185.128 27.9737 186.002 28.5259C186.841 29.0555 187.787 29.3259 188.807 29.3259C189.962 29.3259 191.219 28.8865 192.013 28.2104C193.179 27.2189 194.329 25.6132 194.656 25.1343C194.706 25.0554 194.813 25.0328 194.892 25.0835L194.881 25.0947L195.901 25.7258C195.985 25.7765 196.013 25.8779 195.963 25.9624C195.602 26.5765 194.132 28.971 192.058 30.6951C190.402 32.0754 188.807 32.729 186.931 32.7966H186.638C182.762 32.7966 180.621 29.8274 179.911 28.3625C179.212 26.9709 178.863 25.444 178.863 23.6692C178.863 21.8944 179.472 19.0436 180.638 17.0266C181.872 14.9307 183.398 13.3081 185.32 12.0742C187.247 10.7896 189.185 10.1641 191.241 10.1641Z",
2990
2957
  fill: fillColor
2991
2958
  }
2992
2959
  ),
2993
- /* @__PURE__ */ jsx27(
2960
+ /* @__PURE__ */ jsx26(
2994
2961
  "path",
2995
2962
  {
2996
2963
  fillRule: "evenodd",
@@ -2999,7 +2966,7 @@ var Logo = /* @__PURE__ */ __name((props) => {
2999
2966
  fill: fillColor
3000
2967
  }
3001
2968
  ),
3002
- /* @__PURE__ */ jsx27(
2969
+ /* @__PURE__ */ jsx26(
3003
2970
  "path",
3004
2971
  {
3005
2972
  fillRule: "evenodd",
@@ -3008,42 +2975,42 @@ var Logo = /* @__PURE__ */ __name((props) => {
3008
2975
  fill: fillColor
3009
2976
  }
3010
2977
  ),
3011
- /* @__PURE__ */ jsx27(
2978
+ /* @__PURE__ */ jsx26(
3012
2979
  "path",
3013
2980
  {
3014
2981
  d: "M171.618 1.46484C173.313 1.46485 174.277 1.67352 175.466 2.05664C177.861 2.82509 178.843 3.38688 178.852 3.39185V9.83179L178.857 9.82056C178.857 9.91066 178.795 9.98385 178.705 9.99512L177.798 10.1079C177.714 10.1192 177.629 10.0684 177.607 9.98389C177.432 9.37539 176.643 6.95256 174.851 5.23413C173.758 4.18621 172.434 3.6792 170.806 3.6792C169.268 3.67921 168.304 4.01723 167.256 4.92432C166.276 5.72437 165.797 6.74425 165.797 7.87671C165.797 9.00916 166.057 9.80354 166.772 10.8008C167.397 11.6966 168.327 12.6263 169.454 13.4827L172.784 16.052C174.029 16.9929 175.049 18.1084 175.821 19.3591C176.576 20.5874 176.959 21.9509 176.959 23.4102C176.959 25.0046 176.451 26.7737 175.595 28.1372C174.665 29.5739 173.415 30.7009 171.871 31.4954C170.164 32.3743 167.995 32.7686 166.564 32.7686C164.547 32.7686 162.017 32.0361 162.017 32.0361C160 31.3826 158.681 30.712 158.337 30.5317C158.281 30.5035 158.247 30.4472 158.247 30.3796V23.4158C158.247 23.3257 158.321 23.2469 158.411 23.2412L159.318 23.168C159.402 23.1623 159.481 23.2129 159.504 23.2974C159.696 24.0185 160.648 27.337 162.473 28.8076C163.887 29.9457 165.431 30.5037 167.2 30.5037C168.969 30.5037 169.42 30.2389 170.248 29.76L170.265 29.7485C171.139 29.2246 171.809 28.5653 172.265 27.7935C172.767 26.9765 173.02 26.1145 173.02 25.1792C173.02 24.244 172.71 23.2806 172.13 22.3848C171.556 21.4946 170.66 20.5536 169.538 19.6577L166.203 17.0886C164.901 16.0463 163.893 14.9758 163.127 13.8264C162.4 12.6996 162.034 11.4036 162.034 9.87109C162.034 8.33862 162.507 6.80621 163.358 5.5498C164.265 4.28211 165.454 3.27342 166.902 2.55225C168.389 1.83111 169.922 1.46484 171.618 1.46484Z",
3015
2982
  fill: fillColor
3016
2983
  }
3017
2984
  ),
3018
- /* @__PURE__ */ jsx27(
2985
+ /* @__PURE__ */ jsx26(
3019
2986
  "path",
3020
2987
  {
3021
2988
  d: "M81.4085 9.99512C81.4987 9.99512 81.589 10.0402 81.589 10.1304V26.9033C81.589 29.5288 82.22 31.4276 82.5355 32.0586C82.5805 32.1487 82.5354 32.2839 82.4002 32.2839H75.0758C74.9406 32.2839 74.8954 32.1487 74.9405 32.0586C75.256 31.4726 75.8871 29.7485 75.8871 26.8582V15.3757C75.8871 12.7503 75.3068 10.8516 74.9857 10.2205C74.9406 10.1303 74.9856 9.9952 75.1207 9.99512H81.4085Z",
3022
2989
  fill: fillColor
3023
2990
  }
3024
2991
  ),
3025
- /* @__PURE__ */ jsx27(
2992
+ /* @__PURE__ */ jsx26(
3026
2993
  "path",
3027
2994
  {
3028
2995
  d: "M100.356 9.26831C102.796 9.26831 104.649 10.0345 105.962 11.6177C107.275 13.2009 107.906 15.4207 107.906 18.311V26.9033C107.906 29.5288 108.531 31.4276 108.852 32.0586C108.897 32.1487 108.852 32.2839 108.717 32.2839H101.483C101.348 32.2839 101.303 32.1487 101.348 32.0586C101.707 31.4742 102.291 29.7574 102.294 26.8806L102.26 26.9482V18.5815C102.26 16.8181 101.945 15.5052 101.263 14.6038C100.582 13.6967 99.6349 13.2459 98.232 13.2458C96.8291 13.2458 95.567 13.7417 94.4796 14.8291C93.6683 15.601 93.0315 16.5476 92.5357 17.7703C92.2202 18.5815 92.0399 19.4436 92.0399 20.345V26.9033C92.0399 29.5288 92.6712 31.4276 92.9867 32.0586C93.0317 32.1487 92.9865 32.2839 92.8514 32.2839H85.617C85.4818 32.2839 85.4367 32.1487 85.4818 32.0586C85.8424 31.4726 86.4283 29.7485 86.4283 26.8582V15.3757C86.4283 12.7503 85.8425 10.8516 85.5269 10.2205C85.4819 10.1303 85.527 9.99512 85.6622 9.99512H91.3582C91.4484 9.99512 91.5386 10.04 91.5387 10.1301V14.6038C91.5387 14.8742 91.899 14.9643 92.0343 14.739C93.2569 12.4797 96.2431 9.26833 100.356 9.26831Z",
3029
2996
  fill: fillColor
3030
2997
  }
3031
2998
  ),
3032
- /* @__PURE__ */ jsx27(
2999
+ /* @__PURE__ */ jsx26(
3033
3000
  "path",
3034
3001
  {
3035
3002
  d: "M57.8011 1.0874C57.9363 1.08746 57.9364 1.22262 57.9364 1.31274C57.6716 1.94377 56.9896 4.02281 56.9896 6.96387V28.5315C56.9896 28.8019 57.215 29.0273 57.4854 29.0273H61.5985V29.033H61.6886C65.9874 29.033 70.8215 26.5428 71.909 25.9568C71.9992 25.9117 72.1344 25.9568 72.1344 26.092V32.1038C72.1342 32.1489 72.0443 32.2387 71.9542 32.2388H50.2962C50.1611 32.2387 50.161 32.1036 50.161 32.0134C50.3807 31.3823 51.0626 29.2132 51.0626 25.9116V7.00879C51.0626 4.02836 50.3863 1.94377 50.161 1.31274C50.1159 1.17755 50.2061 1.08743 50.2962 1.0874H57.8011Z",
3036
3003
  fill: fillColor
3037
3004
  }
3038
3005
  ),
3039
- /* @__PURE__ */ jsx27(
3006
+ /* @__PURE__ */ jsx26(
3040
3007
  "path",
3041
3008
  {
3042
3009
  d: "M140.725 9.89941C140.815 9.89948 140.905 9.98933 140.905 10.0344V14.7334L140.911 14.739C140.911 15.0095 141.176 15.0996 141.311 14.8743C142.894 11.8431 145.063 9.94434 147.644 9.94434H150.128C150.218 9.94434 150.309 10.0345 150.309 10.0796V14.6941C150.309 14.7842 150.218 14.8293 150.128 14.8293H146.196C144.387 14.8294 142.714 15.7307 141.361 17.1787C141.04 17.5393 140.866 17.99 140.866 18.4407V26.8076C140.866 29.4331 141.497 31.3262 141.812 31.9629C141.857 32.053 141.812 32.1882 141.677 32.1882H134.398C134.262 32.1882 134.217 32.053 134.262 31.9629C134.578 31.3769 135.209 29.6528 135.209 26.7625V15.28C135.209 12.6546 134.578 10.7615 134.307 10.1248C134.262 10.0346 134.307 9.89941 134.443 9.89941H140.725Z",
3043
3010
  fill: fillColor
3044
3011
  }
3045
3012
  ),
3046
- /* @__PURE__ */ jsx27(
3013
+ /* @__PURE__ */ jsx26(
3047
3014
  "path",
3048
3015
  {
3049
3016
  d: "M78.3709 0C80.4049 0 82.0782 1.62841 82.0782 3.66235C82.0781 5.69624 80.4048 7.32446 78.3709 7.32446C76.3371 7.32444 74.7089 5.69623 74.7088 3.66235C74.7088 1.62842 76.337 2.46852e-05 78.3709 0Z",
@@ -3051,12 +3018,12 @@ var Logo = /* @__PURE__ */ __name((props) => {
3051
3018
  }
3052
3019
  )
3053
3020
  ] }),
3054
- /* @__PURE__ */ jsx27("defs", { children: /* @__PURE__ */ jsx27("clipPath", { id: "clip0_15937_50", children: /* @__PURE__ */ jsx27("rect", { width: "288.077", height: "35.9999", fill: "white" }) }) })
3021
+ /* @__PURE__ */ jsx26("defs", { children: /* @__PURE__ */ jsx26("clipPath", { id: "clip0_15937_50", children: /* @__PURE__ */ jsx26("rect", { width: "288.077", height: "35.9999", fill: "white" }) }) })
3055
3022
  ]
3056
3023
  }
3057
3024
  );
3058
3025
  }
3059
- return /* @__PURE__ */ jsx27("svg", { width: 48, height: 48, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx27(
3026
+ return /* @__PURE__ */ jsx26("svg", { width: 48, height: 48, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx26(
3060
3027
  "path",
3061
3028
  {
3062
3029
  d: "M38.2402 9.81371C38.2402 9.74309 38.204 9.68333 38.1895 9.65074C38.1569 9.63806 38.0972 9.60004 38.0266 9.60004H28.1578C28.1089 9.60004 28.0618 9.61996 28.0274 9.65436L22.3614 15.3094C22.327 15.3438 22.28 15.3638 22.2311 15.3638H11.8426C11.7937 15.3638 11.7466 15.3837 11.7122 15.4181L4.45458 22.663C4.33688 22.7789 4.42018 22.9799 4.58496 22.9799H13.9558C14.2292 22.9799 14.4501 23.2008 14.4501 23.4743V33.1946C14.4501 33.2471 14.4737 33.2942 14.5099 33.3286C14.5443 33.3648 14.5914 33.3883 14.6439 33.3883H24.3642C24.6376 33.3883 24.8585 33.6092 24.8585 33.8827V43.2535C24.8585 43.4183 25.0595 43.5016 25.1754 43.3839L32.4204 36.1262C32.4548 36.0918 32.4747 36.0448 32.4747 35.9959V25.6074C32.4747 25.5585 32.4946 25.5114 32.529 25.477L38.1841 19.8111C38.2185 19.7767 38.2384 19.7296 38.2384 19.6807V9.81371H38.2402ZM31.6979 24.2493C31.6979 24.5173 31.4806 24.7364 31.2108 24.7364H23.5892C23.3212 24.7364 23.1021 24.5191 23.1021 24.2493V16.6277C23.1021 16.3597 23.3193 16.1406 23.5892 16.1406H31.2108C31.4787 16.1406 31.6979 16.3579 31.6979 16.6277V24.2493Z",
@@ -3080,20 +3047,20 @@ var style_module_default18 = {
3080
3047
  };
3081
3048
 
3082
3049
  // src/components/coach-mark/primitive/index.tsx
3083
- import { IconCloseFill as IconCloseFill4 } from "@liner-fe/icon";
3084
- import { jsx as jsx28, jsxs as jsxs14 } from "react/jsx-runtime";
3050
+ import { IconCloseFill as IconCloseFill3 } from "@liner-fe/icon";
3051
+ import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
3085
3052
  var primitiveCoachMarkVariants = cva9({
3086
3053
  base: style_module_default18.content
3087
3054
  });
3088
3055
  var primitiveCoachMarkAnchorVariants = cva9({
3089
3056
  base: style_module_default18.anchor
3090
3057
  });
3091
- var PrimitiveCoachMarkTrigger = /* @__PURE__ */ __name(({ by }) => /* @__PURE__ */ jsx28(PopoverPrimitive2.Trigger, { asChild: true, children: by }), "PrimitiveCoachMarkTrigger");
3058
+ var PrimitiveCoachMarkTrigger = /* @__PURE__ */ __name(({ by }) => /* @__PURE__ */ jsx27(PopoverPrimitive2.Trigger, { asChild: true, children: by }), "PrimitiveCoachMarkTrigger");
3092
3059
  var PrimitiveCoachMarkRoot = /* @__PURE__ */ __name(({ trigger, children, ...props }) => /* @__PURE__ */ jsxs14(PopoverPrimitive2.Root, { ...props, children: [
3093
- /* @__PURE__ */ jsx28(PrimitiveCoachMarkTrigger, { by: trigger }),
3060
+ /* @__PURE__ */ jsx27(PrimitiveCoachMarkTrigger, { by: trigger }),
3094
3061
  children
3095
3062
  ] }), "PrimitiveCoachMarkRoot");
3096
- var PrimitiveCoachMarkAnchor = /* @__PURE__ */ __name(({ className }) => /* @__PURE__ */ jsx28(
3063
+ var PrimitiveCoachMarkAnchor = /* @__PURE__ */ __name(({ className }) => /* @__PURE__ */ jsx27(
3097
3064
  "svg",
3098
3065
  {
3099
3066
  className,
@@ -3102,7 +3069,7 @@ var PrimitiveCoachMarkAnchor = /* @__PURE__ */ __name(({ className }) => /* @__P
3102
3069
  height: "24",
3103
3070
  viewBox: "0 0 10 24",
3104
3071
  fill: "none",
3105
- children: /* @__PURE__ */ jsx28(
3072
+ children: /* @__PURE__ */ jsx27(
3106
3073
  "path",
3107
3074
  {
3108
3075
  fillRule: "evenodd",
@@ -3113,8 +3080,8 @@ var PrimitiveCoachMarkAnchor = /* @__PURE__ */ __name(({ className }) => /* @__P
3113
3080
  )
3114
3081
  }
3115
3082
  ), "PrimitiveCoachMarkAnchor");
3116
- var PrimitiveCoachMarkClose = /* @__PURE__ */ __name(({ className, onClick }) => /* @__PURE__ */ jsx28(PopoverPrimitive2.Close, { asChild: true, className: clsx19(style_module_default18.close, className), onClick, children: /* @__PURE__ */ jsx28(IconCloseFill4, { fill: true, size: "xs", type: "neutral-label-primary" }) }), "PrimitiveCoachMarkClose");
3117
- var PrimitiveCoachMarkContent = forwardRef16(({ children, className, container, ...rest }, ref) => /* @__PURE__ */ jsx28(PopoverPrimitive2.Portal, { container, children: /* @__PURE__ */ jsxs14(
3083
+ var PrimitiveCoachMarkClose = /* @__PURE__ */ __name(({ className, onClick }) => /* @__PURE__ */ jsx27(PopoverPrimitive2.Close, { asChild: true, className: clsx19(style_module_default18.close, className), onClick, children: /* @__PURE__ */ jsx27(IconCloseFill3, { fill: true, size: "xs", type: "neutral-label-primary" }) }), "PrimitiveCoachMarkClose");
3084
+ var PrimitiveCoachMarkContent = forwardRef16(({ children, className, container, ...rest }, ref) => /* @__PURE__ */ jsx27(PopoverPrimitive2.Portal, { container, children: /* @__PURE__ */ jsxs14(
3118
3085
  PopoverPrimitive2.Content,
3119
3086
  {
3120
3087
  ref,
@@ -3122,7 +3089,7 @@ var PrimitiveCoachMarkContent = forwardRef16(({ children, className, container,
3122
3089
  ...rest,
3123
3090
  children: [
3124
3091
  children,
3125
- /* @__PURE__ */ jsx28(PopoverPrimitive2.Arrow, { asChild: true, children: /* @__PURE__ */ jsx28(PrimitiveCoachMarkAnchor, { className: clsx19(primitiveCoachMarkAnchorVariants()) }) })
3092
+ /* @__PURE__ */ jsx27(PopoverPrimitive2.Arrow, { asChild: true, children: /* @__PURE__ */ jsx27(PrimitiveCoachMarkAnchor, { className: clsx19(primitiveCoachMarkAnchorVariants()) }) })
3126
3093
  ]
3127
3094
  }
3128
3095
  ) }));
@@ -3300,7 +3267,7 @@ var colorOptions = [
3300
3267
  // src/components/Tag/index.tsx
3301
3268
  import { cva as cva10 } from "cva";
3302
3269
  import clsx20 from "clsx";
3303
- import { jsx as jsx29 } from "react/jsx-runtime";
3270
+ import { jsx as jsx28 } from "react/jsx-runtime";
3304
3271
  var tagVariants = cva10({
3305
3272
  base: style_module_default20.tag,
3306
3273
  variants: {
@@ -3331,7 +3298,7 @@ var Tag = forwardRef17(
3331
3298
  className,
3332
3299
  ...rest
3333
3300
  }, ref) => {
3334
- return /* @__PURE__ */ jsx29(
3301
+ return /* @__PURE__ */ jsx28(
3335
3302
  Caption,
3336
3303
  {
3337
3304
  ref,
@@ -3350,7 +3317,7 @@ var Tag = forwardRef17(
3350
3317
 
3351
3318
  // src/components/coach-mark/compact/index.tsx
3352
3319
  import * as PopoverPrimitive3 from "@radix-ui/react-popover";
3353
- import { jsx as jsx30, jsxs as jsxs15 } from "react/jsx-runtime";
3320
+ import { jsx as jsx29, jsxs as jsxs15 } from "react/jsx-runtime";
3354
3321
  var compactCoachMarkVariants = cva11({
3355
3322
  base: style_module_default19.content,
3356
3323
  variants: {
@@ -3362,7 +3329,7 @@ var compactCoachMarkVariants = cva11({
3362
3329
  }
3363
3330
  });
3364
3331
  var CompactCoachMarkRoot = /* @__PURE__ */ __name((props) => {
3365
- return /* @__PURE__ */ jsx30(PrimitiveCoachMark, { ...props });
3332
+ return /* @__PURE__ */ jsx29(PrimitiveCoachMark, { ...props });
3366
3333
  }, "CompactCoachMarkRoot");
3367
3334
  var CompactCoachMarkContent = forwardRef18(
3368
3335
  ({ tag, title, level = "brand", className, side = "top", sideOffset = -15, onClose, ...props }, ref) => {
@@ -3378,8 +3345,8 @@ var CompactCoachMarkContent = forwardRef18(
3378
3345
  onMouseLeave: () => setIsHover(false),
3379
3346
  ...props,
3380
3347
  children: [
3381
- tag && /* @__PURE__ */ jsx30(Tag, { color: "neutral-label-primary", backgroundColor: "neutral-container-lowest", children: tag }),
3382
- /* @__PURE__ */ jsx30(
3348
+ tag && /* @__PURE__ */ jsx29(Tag, { color: "neutral-label-primary", backgroundColor: "neutral-container-lowest", children: tag }),
3349
+ /* @__PURE__ */ jsx29(
3383
3350
  Caption,
3384
3351
  {
3385
3352
  size: 2,
@@ -3390,7 +3357,7 @@ var CompactCoachMarkContent = forwardRef18(
3390
3357
  children: title
3391
3358
  }
3392
3359
  ),
3393
- isHover && /* @__PURE__ */ jsx30(PrimitiveCoachMark.Close, { className: style_module_default19.close, onClick: onClose })
3360
+ isHover && /* @__PURE__ */ jsx29(PrimitiveCoachMark.Close, { className: style_module_default19.close, onClick: onClose })
3394
3361
  ]
3395
3362
  }
3396
3363
  );
@@ -3433,7 +3400,7 @@ import { IconClose } from "@liner-fe/icon";
3433
3400
  import { cva as cva12 } from "cva";
3434
3401
  import clsx22 from "clsx";
3435
3402
  import { Illust } from "@liner-fe/illust";
3436
- import { jsx as jsx31, jsxs as jsxs16 } from "react/jsx-runtime";
3403
+ import { jsx as jsx30, jsxs as jsxs16 } from "react/jsx-runtime";
3437
3404
  var coachMarkVariants = cva12({
3438
3405
  base: style_module_default21.content,
3439
3406
  variants: {
@@ -3460,7 +3427,7 @@ var CoachMarkRoot = /* @__PURE__ */ __name((props) => {
3460
3427
  }
3461
3428
  }
3462
3429
  }, []);
3463
- return /* @__PURE__ */ jsx31(PrimitiveCoachMark, { ...props });
3430
+ return /* @__PURE__ */ jsx30(PrimitiveCoachMark, { ...props });
3464
3431
  }, "CoachMarkRoot");
3465
3432
  var CoachMarkContent = forwardRef19(
3466
3433
  ({
@@ -3490,7 +3457,7 @@ var CoachMarkContent = forwardRef19(
3490
3457
  sideOffset,
3491
3458
  ...rest,
3492
3459
  children: [
3493
- /* @__PURE__ */ jsx31(PopoverPrimitive4.Close, { asChild: true, children: /* @__PURE__ */ jsx31(
3460
+ /* @__PURE__ */ jsx30(PopoverPrimitive4.Close, { asChild: true, children: /* @__PURE__ */ jsx30(
3494
3461
  IconButton,
3495
3462
  {
3496
3463
  icon: { icon: IconClose },
@@ -3501,10 +3468,10 @@ var CoachMarkContent = forwardRef19(
3501
3468
  }
3502
3469
  ) }),
3503
3470
  /* @__PURE__ */ jsxs16("header", { className: style_module_default21.top, children: [
3504
- illust && /* @__PURE__ */ jsx31(Illust, { width: 72, ...illust }),
3471
+ illust && /* @__PURE__ */ jsx30(Illust, { width: 72, ...illust }),
3505
3472
  /* @__PURE__ */ jsxs16("div", { className: style_module_default21.main, children: [
3506
3473
  /* @__PURE__ */ jsxs16("div", { className: style_module_default21.title, children: [
3507
- tag && /* @__PURE__ */ jsx31(
3474
+ tag && /* @__PURE__ */ jsx30(
3508
3475
  Tag,
3509
3476
  {
3510
3477
  color: "neutral-label-static-primary",
@@ -3512,7 +3479,7 @@ var CoachMarkContent = forwardRef19(
3512
3479
  children: tag
3513
3480
  }
3514
3481
  ),
3515
- icon && /* @__PURE__ */ jsx31(
3482
+ icon && /* @__PURE__ */ jsx30(
3516
3483
  icon.icon,
3517
3484
  {
3518
3485
  size: "xs",
@@ -3521,7 +3488,7 @@ var CoachMarkContent = forwardRef19(
3521
3488
  type: "inverse-label-static-primary"
3522
3489
  }
3523
3490
  ),
3524
- title && /* @__PURE__ */ jsx31(
3491
+ title && /* @__PURE__ */ jsx30(
3525
3492
  Paragraph,
3526
3493
  {
3527
3494
  size: 4,
@@ -3532,7 +3499,7 @@ var CoachMarkContent = forwardRef19(
3532
3499
  }
3533
3500
  )
3534
3501
  ] }),
3535
- image && /* @__PURE__ */ jsx31("div", { className: style_module_default21["image-container"], children: /* @__PURE__ */ jsx31(
3502
+ image && /* @__PURE__ */ jsx30("div", { className: style_module_default21["image-container"], children: /* @__PURE__ */ jsx30(
3536
3503
  "img",
3537
3504
  {
3538
3505
  className: style_module_default21.image,
@@ -3542,7 +3509,7 @@ var CoachMarkContent = forwardRef19(
3542
3509
  height: 160
3543
3510
  }
3544
3511
  ) }),
3545
- description && /* @__PURE__ */ jsx31(
3512
+ description && /* @__PURE__ */ jsx30(
3546
3513
  Caption,
3547
3514
  {
3548
3515
  size: 2,
@@ -3560,10 +3527,10 @@ var CoachMarkContent = forwardRef19(
3560
3527
  step.current,
3561
3528
  " / ",
3562
3529
  step.total
3563
- ] }) : /* @__PURE__ */ jsx31("div", { className: style_module_default21.empty }),
3530
+ ] }) : /* @__PURE__ */ jsx30("div", { className: style_module_default21.empty }),
3564
3531
  /* @__PURE__ */ jsxs16("div", { className: style_module_default21.buttonGroup, children: [
3565
- secondaryButton && /* @__PURE__ */ jsx31(Button, { size: "s", level: "inverse-static", ...secondaryButton }),
3566
- primaryButton && /* @__PURE__ */ jsx31(Button, { size: "s", level: coachMarkLevelButtonLevelMap[level], ...primaryButton })
3532
+ secondaryButton && /* @__PURE__ */ jsx30(Button, { size: "s", level: "inverse-static", ...secondaryButton }),
3533
+ primaryButton && /* @__PURE__ */ jsx30(Button, { size: "s", level: coachMarkLevelButtonLevelMap[level], ...primaryButton })
3567
3534
  ] })
3568
3535
  ] })
3569
3536
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liner-fe/prism",
3
- "version": "2.12.12",
3
+ "version": "3.0.0",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "dependencies": {
@@ -13,13 +13,13 @@
13
13
  "date-fns": "^4.1.0",
14
14
  "lottie-web": "^5.9.4",
15
15
  "radix-ui": "^1.4.3",
16
- "react": "18.2.0",
17
- "react-dom": "18.2.0",
16
+ "react": "^19.1.0",
17
+ "react-dom": "^19.1.0",
18
18
  "jotai": "^2.11.0",
19
- "@liner-fe/design-token": "^2.5.50",
19
+ "@liner-fe/design-token": "^3.0.0",
20
20
  "@liner-fe/design-token-primitive": "^0.2.46",
21
- "@liner-fe/icon": "^0.2.75",
22
- "@liner-fe/illust": "^0.2.12"
21
+ "@liner-fe/icon": "^1.0.0",
22
+ "@liner-fe/illust": "^1.0.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@chromatic-com/storybook": "^1.5.0",
@@ -36,8 +36,8 @@
36
36
  "@storybook/react-vite": "^8.6.0",
37
37
  "@storybook/test": "^8.6.15",
38
38
  "@types/node": "^20.3.1",
39
- "@types/react": "18.2.23",
40
- "@types/react-dom": "18.2.23",
39
+ "@types/react": "^19.1.0",
40
+ "@types/react-dom": "^19.1.0",
41
41
  "autoprefixer": "^10.4.14",
42
42
  "chromatic": "^11.5.3",
43
43
  "esbuild-node-externals": "1.18.0",