@regcheq/ui 1.4.1 → 1.5.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.
Files changed (35) hide show
  1. package/dist/components/ui/avatar/avatar.d.ts +21 -0
  2. package/dist/components/ui/avatar/avatar.d.ts.map +1 -0
  3. package/dist/components/ui/avatar/avatar.logic.d.ts +9 -0
  4. package/dist/components/ui/avatar/avatar.logic.d.ts.map +1 -0
  5. package/dist/components/ui/avatar/index.d.ts +3 -0
  6. package/dist/components/ui/avatar/index.d.ts.map +1 -0
  7. package/dist/components/ui/drawer/drawer.d.ts +2 -2
  8. package/dist/components/ui/drawer/drawer.d.ts.map +1 -1
  9. package/dist/components/ui/dropdown-menu/dropdown-menu.d.ts +28 -0
  10. package/dist/components/ui/dropdown-menu/dropdown-menu.d.ts.map +1 -0
  11. package/dist/components/ui/dropdown-menu/index.d.ts +2 -0
  12. package/dist/components/ui/dropdown-menu/index.d.ts.map +1 -0
  13. package/dist/components/ui/index.d.ts +6 -0
  14. package/dist/components/ui/index.d.ts.map +1 -1
  15. package/dist/components/ui/logo/isotype.d.ts.map +1 -1
  16. package/dist/components/ui/logo/logo-full-alt.d.ts.map +1 -1
  17. package/dist/components/ui/logo/logo-full.d.ts.map +1 -1
  18. package/dist/components/ui/logo/logo.d.ts.map +1 -1
  19. package/dist/components/ui/navigation-menu/index.d.ts +2 -0
  20. package/dist/components/ui/navigation-menu/index.d.ts.map +1 -0
  21. package/dist/components/ui/navigation-menu/navigation-menu.d.ts +13 -0
  22. package/dist/components/ui/navigation-menu/navigation-menu.d.ts.map +1 -0
  23. package/dist/components/ui/password-input/password-input.d.ts.map +1 -1
  24. package/dist/components/ui/sheet/index.d.ts +3 -0
  25. package/dist/components/ui/sheet/index.d.ts.map +1 -0
  26. package/dist/components/ui/sheet/sheet.d.ts +26 -0
  27. package/dist/components/ui/sheet/sheet.d.ts.map +1 -0
  28. package/dist/components/ui/sidebar/sidebar.d.ts.map +1 -1
  29. package/dist/index.css +1 -1
  30. package/dist/index.esm.css +1 -1
  31. package/dist/index.esm.js +154 -15
  32. package/dist/index.esm.js.map +1 -1
  33. package/dist/index.js +194 -14
  34. package/dist/index.js.map +1 -1
  35. package/package.json +4 -1
package/dist/index.js CHANGED
@@ -7,14 +7,18 @@ var React = require('react');
7
7
  var classVarianceAuthority = require('class-variance-authority');
8
8
  var reactFontawesome = require('@fortawesome/react-fontawesome');
9
9
  var freeSolidSvgIcons = require('@fortawesome/free-solid-svg-icons');
10
- var reactSlot = require('@radix-ui/react-slot');
10
+ var AvatarPrimitive = require('@radix-ui/react-avatar');
11
11
  var lucideReact = require('lucide-react');
12
+ var reactSlot = require('@radix-ui/react-slot');
12
13
  var reactDayPicker = require('react-day-picker');
13
14
  var PopoverPrimitive = require('@radix-ui/react-popover');
15
+ var DropdownMenuPrimitive = require('@radix-ui/react-dropdown-menu');
14
16
  var LabelPrimitive = require('@radix-ui/react-label');
15
17
  var SeparatorPrimitive = require('@radix-ui/react-separator');
16
18
  var reactHookForm = require('react-hook-form');
17
19
  var SelectPrimitive = require('@radix-ui/react-select');
20
+ var NavigationMenuPrimitive = require('@radix-ui/react-navigation-menu');
21
+ var DialogPrimitive = require('@radix-ui/react-dialog');
18
22
  var vaul = require('vaul');
19
23
 
20
24
  function _interopNamespaceDefault(e) {
@@ -35,10 +39,14 @@ function _interopNamespaceDefault(e) {
35
39
  }
36
40
 
37
41
  var React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
42
+ var AvatarPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(AvatarPrimitive);
38
43
  var PopoverPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(PopoverPrimitive);
44
+ var DropdownMenuPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(DropdownMenuPrimitive);
39
45
  var LabelPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(LabelPrimitive);
40
46
  var SeparatorPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(SeparatorPrimitive);
41
47
  var SelectPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(SelectPrimitive);
48
+ var NavigationMenuPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(NavigationMenuPrimitive);
49
+ var DialogPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(DialogPrimitive);
42
50
 
43
51
  function cn(...inputs) {
44
52
  return tailwindMerge.twMerge(clsx.clsx(inputs));
@@ -80,6 +88,60 @@ const Alert = React__namespace.forwardRef(({ className, variant, size, onClose,
80
88
  });
81
89
  Alert.displayName = "Alert";
82
90
 
91
+ /**
92
+ * Extrae las iniciales de un nombre completo.
93
+ * "Ana García" → "AG"
94
+ * "Ana" → "A"
95
+ * "" → ""
96
+ * Toma como maximo las dos primeras palabras con contenido.
97
+ */
98
+ function getInitials(name) {
99
+ if (!name?.trim())
100
+ return "";
101
+ return name
102
+ .trim()
103
+ .split(/\s+/)
104
+ .filter((word) => word.length > 0)
105
+ .slice(0, 2)
106
+ .map((word) => word[0].toUpperCase())
107
+ .join("");
108
+ }
109
+
110
+ // ---------------------------------------------------------------------------
111
+ // CVA — variantes del contenedor raiz
112
+ // ---------------------------------------------------------------------------
113
+ const avatarVariants = classVarianceAuthority.cva("relative inline-flex shrink-0 select-none items-center justify-center overflow-hidden bg-rq-surface-raised", {
114
+ variants: {
115
+ size: {
116
+ sm: "size-6 text-[10px]",
117
+ md: "size-8 text-xs",
118
+ lg: "size-12 text-sm",
119
+ xl: "size-16 text-base",
120
+ },
121
+ shape: {
122
+ circle: "rounded-full",
123
+ square: "rounded-rq-md",
124
+ },
125
+ },
126
+ defaultVariants: {
127
+ size: "md",
128
+ shape: "circle",
129
+ },
130
+ });
131
+ // ---------------------------------------------------------------------------
132
+ // Componente
133
+ // ---------------------------------------------------------------------------
134
+ const Avatar = React__namespace.forwardRef(({ className, size, shape, src, alt, name, ...props }, ref) => {
135
+ const initials = getInitials(name ?? "");
136
+ const iconSizeMap = { sm: 12, md: 16, lg: 22, xl: 28 };
137
+ const iconSize = iconSizeMap[size ?? "md"] ?? 16;
138
+ if (!src) {
139
+ return (jsxRuntime.jsx("span", { ref: ref, className: cn(avatarVariants({ size, shape }), "bg-rq-brand-subtle text-rq-brand font-medium", className), ...props, children: initials ? (jsxRuntime.jsx("span", { "aria-label": name, children: initials })) : (jsxRuntime.jsx(lucideReact.User, { className: "text-rq-text-subtle", style: { width: iconSize, height: iconSize }, "aria-hidden": "true" })) }));
140
+ }
141
+ return (jsxRuntime.jsxs(AvatarPrimitive__namespace.Root, { ref: ref, className: cn(avatarVariants({ size, shape }), className), ...props, children: [jsxRuntime.jsx(AvatarPrimitive__namespace.Image, { src: src, alt: alt ?? name ?? "Avatar", className: "h-full w-full object-cover" }), jsxRuntime.jsx(AvatarPrimitive__namespace.Fallback, { className: "flex h-full w-full items-center justify-center bg-rq-brand-subtle text-rq-brand font-medium", delayMs: 300, children: initials ? (jsxRuntime.jsx("span", { "aria-label": name, children: initials })) : (jsxRuntime.jsx(lucideReact.User, { className: "text-rq-text-subtle", style: { width: iconSize, height: iconSize }, "aria-hidden": "true" })) })] }));
142
+ });
143
+ Avatar.displayName = "Avatar";
144
+
83
145
  const buttonVariants = classVarianceAuthority.cva("inline-flex items-center justify-center gap-2 whitespace-nowrap text-sm font-medium ring-offset-rq-surface transition-all duration-200 ease-in-out disabled:cursor-not-allowed focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-rq-focus-brand focus-visible:ring-offset-2 disabled:pointer-events-none [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", {
84
146
  variants: {
85
147
  variant: {
@@ -331,6 +393,34 @@ function DatePickerInput({ value, onChange, placeholder = "Select a date", disab
331
393
  } }), jsxRuntime.jsx(InputGroupAddon, { align: "inline-end", children: jsxRuntime.jsxs(Popover, { open: open, onOpenChange: setOpen, children: [jsxRuntime.jsx(PopoverTrigger, { asChild: true, children: jsxRuntime.jsx("button", { type: "button", tabIndex: -1, "aria-label": "Select date", disabled: disabled, className: "text-muted-foreground hover:text-foreground cursor-pointer transition-colors", children: jsxRuntime.jsx(lucideReact.CalendarIcon, { className: "size-4" }) }) }), jsxRuntime.jsx(PopoverContent, { className: "w-auto overflow-hidden p-0", align: "end", sideOffset: 14, children: jsxRuntime.jsx(Calendar, { mode: "single", selected: value, month: month, onMonthChange: setMonth, onSelect: handleSelect, ...calendarProps }) })] }) })] }));
332
394
  }
333
395
 
396
+ const DropdownMenu = DropdownMenuPrimitive__namespace.Root;
397
+ const DropdownMenuTrigger = DropdownMenuPrimitive__namespace.Trigger;
398
+ const DropdownMenuGroup = DropdownMenuPrimitive__namespace.Group;
399
+ const DropdownMenuPortal = DropdownMenuPrimitive__namespace.Portal;
400
+ const DropdownMenuSub = DropdownMenuPrimitive__namespace.Sub;
401
+ const DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
402
+ const DropdownMenuSubTrigger = React__namespace.forwardRef(({ className, inset, children, ...props }, ref) => (jsxRuntime.jsxs(DropdownMenuPrimitive__namespace.SubTrigger, { ref: ref, className: cn("text-rq-text flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none select-none", "focus:bg-rq-surface-raised data-[state=open]:bg-rq-surface-raised", inset && "pl-8", className), ...props, children: [children, jsxRuntime.jsx(lucideReact.ChevronRight, { className: "ml-auto h-4 w-4" })] })));
403
+ DropdownMenuSubTrigger.displayName =
404
+ DropdownMenuPrimitive__namespace.SubTrigger.displayName;
405
+ const DropdownMenuSubContent = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(DropdownMenuPrimitive__namespace.SubContent, { ref: ref, className: cn("border-rq-border bg-rq-surface text-rq-text shadow-rq-card z-50 min-w-32 overflow-hidden rounded-md border p-1", "data-[state=open]:animate-in data-[state=closed]:animate-out", "data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0", "data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95", "data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2", "data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2", className), ...props })));
406
+ DropdownMenuSubContent.displayName =
407
+ DropdownMenuPrimitive__namespace.SubContent.displayName;
408
+ const DropdownMenuContent = React__namespace.forwardRef(({ className, sideOffset = 4, ...props }, ref) => (jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Content, { ref: ref, sideOffset: sideOffset, className: cn("border-rq-border bg-rq-surface text-rq-text shadow-rq-card z-50 min-w-32 overflow-hidden rounded-md border p-1", "data-[state=open]:animate-in data-[state=closed]:animate-out", "data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0", "data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95", "data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2", "data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2", className), ...props }) })));
409
+ DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
410
+ const DropdownMenuItem = React__namespace.forwardRef(({ className, inset, ...props }, ref) => (jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Item, { ref: ref, className: cn("text-rq-text relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm transition-colors outline-none select-none", "focus:bg-rq-surface-raised focus:text-rq-text", "data-disabled:pointer-events-none data-disabled:opacity-50", inset && "pl-8", className), ...props })));
411
+ DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
412
+ const DropdownMenuCheckboxItem = React__namespace.forwardRef(({ className, children, checked, ...props }, ref) => (jsxRuntime.jsxs(DropdownMenuPrimitive__namespace.CheckboxItem, { ref: ref, className: cn("text-rq-text relative flex cursor-default items-center rounded-sm py-1.5 pr-2 pl-8 text-sm transition-colors outline-none select-none", "focus:bg-rq-surface-raised focus:text-rq-text", "data-disabled:pointer-events-none data-disabled:opacity-50", className), checked: checked, ...props, children: [jsxRuntime.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: jsxRuntime.jsx(DropdownMenuPrimitive__namespace.ItemIndicator, { children: jsxRuntime.jsx(lucideReact.Check, { className: "h-4 w-4" }) }) }), children] })));
413
+ DropdownMenuCheckboxItem.displayName =
414
+ DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
415
+ const DropdownMenuRadioItem = React__namespace.forwardRef(({ className, children, ...props }, ref) => (jsxRuntime.jsxs(DropdownMenuPrimitive__namespace.RadioItem, { ref: ref, className: cn("text-rq-text relative flex cursor-default items-center rounded-sm py-1.5 pr-2 pl-8 text-sm transition-colors outline-none select-none", "focus:bg-rq-surface-raised focus:text-rq-text", "data-disabled:pointer-events-none data-disabled:opacity-50", className), ...props, children: [jsxRuntime.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: jsxRuntime.jsx(DropdownMenuPrimitive__namespace.ItemIndicator, { children: jsxRuntime.jsx(lucideReact.Circle, { className: "h-2 w-2 fill-current" }) }) }), children] })));
416
+ DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
417
+ const DropdownMenuLabel = React__namespace.forwardRef(({ className, inset, ...props }, ref) => (jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Label, { ref: ref, className: cn("text-rq-text-subtle px-2 py-1.5 text-xs font-semibold", inset && "pl-8", className), ...props })));
418
+ DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
419
+ const DropdownMenuSeparator = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Separator, { ref: ref, className: cn("bg-rq-border -mx-1 my-1 h-px", className), ...props })));
420
+ DropdownMenuSeparator.displayName = DropdownMenuPrimitive__namespace.Separator.displayName;
421
+ const DropdownMenuShortcut = ({ className, ...props }) => (jsxRuntime.jsx("span", { className: cn("text-rq-text-subtle ml-auto text-xs tracking-widest", className), ...props }));
422
+ DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
423
+
334
424
  const labelVariants = classVarianceAuthority.cva("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70");
335
425
  const Label = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(LabelPrimitive__namespace.Root, { ref: ref, className: cn(labelVariants(), className), ...props })));
336
426
  Label.displayName = LabelPrimitive__namespace.Root.displayName;
@@ -414,7 +504,7 @@ const PasswordInput = React__namespace.forwardRef(({ className, ...props }, ref)
414
504
  const { showPassword, togglePassword, inputType, ariaLabel } = usePasswordToggle();
415
505
  return (jsxRuntime.jsxs(InputGroup, { className: cn(className), children: [jsxRuntime.jsx(InputGroupInput, { type: inputType, ref: ref, ...props }), jsxRuntime.jsx(InputGroupAddon, { align: "inline-end", className: "pr-4 pl-2", children: jsxRuntime.jsx("button", { type: "button", tabIndex: -1, "aria-label": ariaLabel, onClick: togglePassword, className: "text-muted-foreground hover:text-foreground hover:bg-rq-surface-raised flex cursor-pointer items-center justify-center rounded-2xl bg-white p-1.5 transition-colors", suppressHydrationWarning: true, children: jsxRuntime.jsx(reactFontawesome.FontAwesomeIcon, { icon: showPassword ? freeSolidSvgIcons.faEyeSlash : freeSolidSvgIcons.faEye, suppressHydrationWarning: true }) }) })] }));
416
506
  });
417
- PasswordInput.displayName = "PasswordInput";
507
+ PasswordInput.displayName = PasswordInput.name;
418
508
 
419
509
  function FormField({ name, control, label, description, id, defaultValue, render, }) {
420
510
  const inputId = (id ?? String(name)).replaceAll(".", "-");
@@ -453,7 +543,7 @@ const TEXT_FILL$3 = {
453
543
  };
454
544
  const Logo = React__namespace.forwardRef(({ className, size, variant = "on-dark", ...props }, ref) => {
455
545
  const textFill = TEXT_FILL$3[variant];
456
- return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 193 108", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", "aria-label": "Regcheq", className: cn(logoVariants({ size }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M0 0.152031C0.380053 0.152031 0.760107 0.152031 1.14016 0.152031C33.0646 0.152031 65.0651 0.152031 96.9896 0.152031C97.7497 0.152031 98.1298 0.532084 98.1298 1.29219C98.1298 10.8695 98.1298 20.3709 98.1298 29.9482C98.1298 30.7083 97.9778 31.0123 97.1417 31.0123C95.0894 31.0123 93.0371 31.0123 91.0608 31.0123C90.3767 31.0123 90.2246 30.7843 90.2246 30.1002C90.2246 23.1072 90.2246 16.0383 90.2246 9.04529C90.2246 8.20917 89.9967 7.98112 89.1606 7.98112C62.4048 7.98112 35.649 7.98112 8.89321 7.98112C8.1331 7.98112 7.90513 8.13313 7.90513 8.96925C7.90513 35.801 7.90513 62.6328 7.90513 89.3885C7.90513 90.2247 8.1331 90.3007 8.89321 90.3007C37.0172 90.3007 65.1411 90.3007 93.1891 90.3007C94.0252 90.3007 94.3292 90.4527 94.2532 91.3648C94.1772 93.3411 94.2532 95.3174 94.2532 97.2937C94.2532 98.0538 94.1012 98.2058 93.3411 98.2058C84.6759 98.2058 76.0106 98.2058 67.4214 98.2058C44.9983 98.2058 22.4991 98.2058 0.0759921 98.2058V0L0 0.152031Z", fill: "#358DFF" }), jsxRuntime.jsx("path", { d: "M108.163 41.5018C105.579 41.5018 102.995 41.5018 100.41 41.5018C99.65 41.5018 98.6619 41.1977 98.2058 41.6538C97.7498 42.1099 98.0538 43.098 98.0538 43.8581C98.0538 44.6182 98.0538 45.3023 98.0538 46.1385C97.9018 46.0624 97.8258 46.0624 97.8258 45.9864C91.2128 38.3854 78.6711 38.6134 71.7542 45.6064C68.1817 49.2549 66.2814 53.6635 65.9774 58.6802C65.5213 65.3692 67.4216 71.222 72.4383 75.8586C78.8232 81.7874 89.6927 82.3955 96.5336 76.0106C97.0657 75.5546 97.5977 75.0225 98.1298 74.5664V75.4786C98.1298 82.9276 98.1298 90.3006 98.1298 97.7497C98.1298 98.4338 98.3578 98.5858 98.9659 98.5858C102.31 98.5858 105.731 98.5858 109.075 98.5858V41.4258C108.771 41.5778 108.467 41.5018 108.239 41.5018H108.163ZM87.8684 71.222C81.7115 71.222 77.379 66.6614 77.379 60.3525C77.379 54.2716 81.9395 49.6349 87.8684 49.6349C93.8732 49.6349 98.2819 54.2716 98.2819 60.5805C98.2819 66.6613 93.7972 71.222 87.7924 71.1459L87.8684 71.222Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M46.1385 55.0317C46.4425 54.9557 46.7466 54.8037 47.0507 54.7277C52.5994 52.8274 56.552 49.3309 58.5283 43.7061C59.9725 39.4495 60.0485 35.117 58.8323 30.7083C57.6161 26.2997 54.8798 23.0312 50.7752 20.9029C47.3547 19.0787 43.6302 18.3946 39.7537 18.3946C33.0647 18.3946 26.2997 18.3946 19.5347 18.3946C18.9267 18.3946 18.6986 18.4706 18.6986 19.1547C18.6986 38.9935 18.6986 58.8323 18.6986 78.671C18.6986 79.2791 18.8507 79.3552 19.3828 79.3552C22.7272 79.3552 26.0717 79.3552 29.4161 79.3552C30.1002 79.3552 30.2523 79.2031 30.2523 78.519C30.2523 71.45 30.2523 64.305 30.2523 57.236C30.2523 50.167 30.2523 55.8678 31.6205 55.8678C32.3806 55.8678 32.9886 55.8678 33.5967 56.628C39.2215 64.001 44.9223 71.374 50.5471 78.671C50.9272 79.1271 51.2312 79.3552 51.8393 79.3552C56.1719 79.3552 60.5046 79.3552 64.8372 79.3552H65.8253C59.1363 71.222 52.5234 63.1649 45.9865 55.1837C45.9865 55.1837 46.0625 55.0317 46.1385 55.0317ZM39.8296 46.0625C36.7892 46.7465 33.6728 46.4425 30.6324 46.5185C30.0243 46.5185 30.2523 46.0625 30.2523 45.8344C30.2523 42.87 30.2523 39.9816 30.2523 37.0172C30.2523 34.0528 30.2523 31.2404 30.2523 28.352C30.2523 28.0479 30.0243 27.5919 30.7084 27.5919C33.8248 27.5919 36.9412 27.3638 39.9816 28.1239C43.3261 28.8841 46.0625 30.5563 46.9747 34.0528C48.3429 38.9935 46.8986 44.4662 39.8296 46.0625Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M119.378 98.8188V74.3188H129.458C131.628 74.3188 133.483 74.6688 135.023 75.3688C136.586 76.0688 137.788 77.0722 138.628 78.3788C139.468 79.6855 139.888 81.2372 139.888 83.0338C139.888 84.8305 139.468 86.3822 138.628 87.6888C137.788 88.9955 136.586 89.9988 135.023 90.6988C133.483 91.3988 131.628 91.7488 129.458 91.7488H121.898L123.928 89.6138V98.8188H119.378ZM123.928 90.1038L121.898 87.8988H129.248C131.254 87.8988 132.759 87.4788 133.763 86.6388C134.789 85.7755 135.303 84.5738 135.303 83.0338C135.303 81.4705 134.789 80.2688 133.763 79.4288C132.759 78.5888 131.254 78.1688 129.248 78.1688H121.898L123.928 75.9288V90.1038ZM144.519 98.8188V74.3188H149.069V94.9688H161.879V98.8188H144.519ZM165.559 98.8188V74.3188H176.269C178.929 74.3188 181.262 74.8322 183.269 75.8588C185.275 76.8855 186.839 78.3088 187.959 80.1288C189.079 81.9488 189.639 84.0955 189.639 86.5688C189.639 89.0188 189.079 91.1655 187.959 93.0088C186.839 94.8288 185.275 96.2522 183.269 97.2788C181.262 98.3055 178.929 98.8188 176.269 98.8188H165.559ZM170.109 94.9688H176.059C177.902 94.9688 179.489 94.6188 180.819 93.9188C182.172 93.2188 183.21 92.2388 183.934 90.9788C184.68 89.7188 185.054 88.2488 185.054 86.5688C185.054 84.8655 184.68 83.3955 183.934 82.1588C183.21 80.8988 182.172 79.9188 180.819 79.2188C179.489 78.5188 177.902 78.1688 176.059 78.1688H170.109V94.9688Z", fill: textFill })] }));
546
+ return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 193 108", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-label": "Regcheq", className: cn(logoVariants({ size }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M0 0.152031C0.380053 0.152031 0.760107 0.152031 1.14016 0.152031C33.0646 0.152031 65.0651 0.152031 96.9896 0.152031C97.7497 0.152031 98.1298 0.532084 98.1298 1.29219C98.1298 10.8695 98.1298 20.3709 98.1298 29.9482C98.1298 30.7083 97.9778 31.0123 97.1417 31.0123C95.0894 31.0123 93.0371 31.0123 91.0608 31.0123C90.3767 31.0123 90.2246 30.7843 90.2246 30.1002C90.2246 23.1072 90.2246 16.0383 90.2246 9.04529C90.2246 8.20917 89.9967 7.98112 89.1606 7.98112C62.4048 7.98112 35.649 7.98112 8.89321 7.98112C8.1331 7.98112 7.90513 8.13313 7.90513 8.96925C7.90513 35.801 7.90513 62.6328 7.90513 89.3885C7.90513 90.2247 8.1331 90.3007 8.89321 90.3007C37.0172 90.3007 65.1411 90.3007 93.1891 90.3007C94.0252 90.3007 94.3292 90.4527 94.2532 91.3648C94.1772 93.3411 94.2532 95.3174 94.2532 97.2937C94.2532 98.0538 94.1012 98.2058 93.3411 98.2058C84.6759 98.2058 76.0106 98.2058 67.4214 98.2058C44.9983 98.2058 22.4991 98.2058 0.0759921 98.2058V0L0 0.152031Z", fill: "#358DFF" }), jsxRuntime.jsx("path", { d: "M108.163 41.5018C105.579 41.5018 102.995 41.5018 100.41 41.5018C99.65 41.5018 98.6619 41.1977 98.2058 41.6538C97.7498 42.1099 98.0538 43.098 98.0538 43.8581C98.0538 44.6182 98.0538 45.3023 98.0538 46.1385C97.9018 46.0624 97.8258 46.0624 97.8258 45.9864C91.2128 38.3854 78.6711 38.6134 71.7542 45.6064C68.1817 49.2549 66.2814 53.6635 65.9774 58.6802C65.5213 65.3692 67.4216 71.222 72.4383 75.8586C78.8232 81.7874 89.6927 82.3955 96.5336 76.0106C97.0657 75.5546 97.5977 75.0225 98.1298 74.5664V75.4786C98.1298 82.9276 98.1298 90.3006 98.1298 97.7497C98.1298 98.4338 98.3578 98.5858 98.9659 98.5858C102.31 98.5858 105.731 98.5858 109.075 98.5858V41.4258C108.771 41.5778 108.467 41.5018 108.239 41.5018H108.163ZM87.8684 71.222C81.7115 71.222 77.379 66.6614 77.379 60.3525C77.379 54.2716 81.9395 49.6349 87.8684 49.6349C93.8732 49.6349 98.2819 54.2716 98.2819 60.5805C98.2819 66.6613 93.7972 71.222 87.7924 71.1459L87.8684 71.222Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M46.1385 55.0317C46.4425 54.9557 46.7466 54.8037 47.0507 54.7277C52.5994 52.8274 56.552 49.3309 58.5283 43.7061C59.9725 39.4495 60.0485 35.117 58.8323 30.7083C57.6161 26.2997 54.8798 23.0312 50.7752 20.9029C47.3547 19.0787 43.6302 18.3946 39.7537 18.3946C33.0647 18.3946 26.2997 18.3946 19.5347 18.3946C18.9267 18.3946 18.6986 18.4706 18.6986 19.1547C18.6986 38.9935 18.6986 58.8323 18.6986 78.671C18.6986 79.2791 18.8507 79.3552 19.3828 79.3552C22.7272 79.3552 26.0717 79.3552 29.4161 79.3552C30.1002 79.3552 30.2523 79.2031 30.2523 78.519C30.2523 71.45 30.2523 64.305 30.2523 57.236C30.2523 50.167 30.2523 55.8678 31.6205 55.8678C32.3806 55.8678 32.9886 55.8678 33.5967 56.628C39.2215 64.001 44.9223 71.374 50.5471 78.671C50.9272 79.1271 51.2312 79.3552 51.8393 79.3552C56.1719 79.3552 60.5046 79.3552 64.8372 79.3552H65.8253C59.1363 71.222 52.5234 63.1649 45.9865 55.1837C45.9865 55.1837 46.0625 55.0317 46.1385 55.0317ZM39.8296 46.0625C36.7892 46.7465 33.6728 46.4425 30.6324 46.5185C30.0243 46.5185 30.2523 46.0625 30.2523 45.8344C30.2523 42.87 30.2523 39.9816 30.2523 37.0172C30.2523 34.0528 30.2523 31.2404 30.2523 28.352C30.2523 28.0479 30.0243 27.5919 30.7084 27.5919C33.8248 27.5919 36.9412 27.3638 39.9816 28.1239C43.3261 28.8841 46.0625 30.5563 46.9747 34.0528C48.3429 38.9935 46.8986 44.4662 39.8296 46.0625Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M119.378 98.8188V74.3188H129.458C131.628 74.3188 133.483 74.6688 135.023 75.3688C136.586 76.0688 137.788 77.0722 138.628 78.3788C139.468 79.6855 139.888 81.2372 139.888 83.0338C139.888 84.8305 139.468 86.3822 138.628 87.6888C137.788 88.9955 136.586 89.9988 135.023 90.6988C133.483 91.3988 131.628 91.7488 129.458 91.7488H121.898L123.928 89.6138V98.8188H119.378ZM123.928 90.1038L121.898 87.8988H129.248C131.254 87.8988 132.759 87.4788 133.763 86.6388C134.789 85.7755 135.303 84.5738 135.303 83.0338C135.303 81.4705 134.789 80.2688 133.763 79.4288C132.759 78.5888 131.254 78.1688 129.248 78.1688H121.898L123.928 75.9288V90.1038ZM144.519 98.8188V74.3188H149.069V94.9688H161.879V98.8188H144.519ZM165.559 98.8188V74.3188H176.269C178.929 74.3188 181.262 74.8322 183.269 75.8588C185.275 76.8855 186.839 78.3088 187.959 80.1288C189.079 81.9488 189.639 84.0955 189.639 86.5688C189.639 89.0188 189.079 91.1655 187.959 93.0088C186.839 94.8288 185.275 96.2522 183.269 97.2788C181.262 98.3055 178.929 98.8188 176.269 98.8188H165.559ZM170.109 94.9688H176.059C177.902 94.9688 179.489 94.6188 180.819 93.9188C182.172 93.2188 183.21 92.2388 183.934 90.9788C184.68 89.7188 185.054 88.2488 185.054 86.5688C185.054 84.8655 184.68 83.3955 183.934 82.1588C183.21 80.8988 182.172 79.9188 180.819 79.2188C179.489 78.5188 177.902 78.1688 176.059 78.1688H170.109V94.9688Z", fill: textFill })] }));
457
547
  });
458
548
  Logo.displayName = "Logo";
459
549
  const logoCollapsedVariants = classVarianceAuthority.cva("inline-block shrink-0", {
@@ -471,7 +561,7 @@ const logoCollapsedVariants = classVarianceAuthority.cva("inline-block shrink-0"
471
561
  });
472
562
  const LogoCollapsed = React__namespace.forwardRef(({ className, size, variant = "on-dark", ...props }, ref) => {
473
563
  const bracketFill = variant === "on-dark" ? "#358DFF" : "#ffffff";
474
- return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 43 38", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", "aria-label": "Regcheq", className: cn(logoCollapsedVariants({ size }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M0.0469021 0C0.187643 0 0.328389 0.0234582 0.492587 0.0234582C12.8309 0.0234582 25.1926 0.0234582 37.5309 0.0234582C37.828 0.0234582 37.9766 0.172016 37.9766 0.469136C37.9766 4.15185 37.9766 7.85802 37.9766 11.5407C37.9766 11.8457 37.9062 11.9395 37.6012 11.9395C36.8037 11.9161 36.0296 11.9395 35.2321 11.9395C34.9506 11.9395 34.9037 11.8457 34.9037 11.5877C34.9037 8.86667 34.9037 6.16914 34.9037 3.44815C34.9037 3.11975 34.8099 3.04938 34.4815 3.04938C24.137 3.04938 13.7926 3.04938 3.44814 3.04938C3.1432 3.04938 3.04938 3.0963 3.04938 3.42469C3.04938 13.7926 3.04938 24.1605 3.04938 34.5049C3.04938 34.8099 3.1432 34.8802 3.42469 34.8802C14.2852 34.8802 25.1457 34.8802 36.0062 34.8802C36.3346 34.8802 36.4518 34.9506 36.4284 35.3025C36.4049 36.0765 36.4284 36.8272 36.4284 37.6012C36.4284 37.8827 36.358 37.9531 36.0765 37.9531C32.7222 37.9531 29.3914 37.9531 26.037 37.9531C17.358 37.9531 8.67901 37.9531 0 37.9531V0H0.0469021Z", fill: bracketFill }), jsxRuntime.jsx("path", { d: "M41.8469 15.9507C40.8383 15.9507 39.8531 15.9507 38.8444 15.9507C38.5629 15.9507 38.1876 15.8334 38 15.9976C37.8123 16.1618 37.953 16.5605 37.953 16.842C37.953 17.1235 37.953 17.405 37.953 17.7099C37.8827 17.6865 37.8827 17.663 37.8592 17.663C35.3025 14.7309 30.4469 14.8013 27.7728 17.5223C26.3889 18.9297 25.6617 20.642 25.5444 22.5889C25.3802 25.1692 26.1074 27.4445 28.0308 29.2272C30.5173 31.5025 34.6926 31.7605 37.3432 29.2741C37.5308 29.0865 37.7419 28.8988 37.953 28.7112V29.063C37.953 31.9247 37.953 34.8099 37.953 37.6717C37.953 37.9531 38.0234 38.0001 38.2814 38.0001C39.595 38.0001 40.8852 38.0001 42.1987 38.0001V15.9272C42.1049 15.9976 41.9876 15.9507 41.8703 15.9507H41.8469ZM33.9889 27.4445C31.6197 27.4445 29.9308 25.6852 29.9543 23.2457C29.9543 20.8766 31.7136 19.1173 34.0123 19.1173C36.3345 19.1173 38.0469 20.9001 38.0469 23.3396C38.0469 25.6852 36.3111 27.4445 33.9889 27.4445Z", fill: "#ffffff" }), jsxRuntime.jsx("path", { d: "M17.8505 21.1816C17.9678 21.1347 18.0851 21.1112 18.2024 21.0643C20.337 20.3371 21.8851 18.9766 22.6123 16.8186C23.1752 15.1766 23.1987 13.4877 22.7296 11.7989C22.237 10.0865 21.1814 8.81984 19.6098 7.99885C18.2728 7.29515 16.8419 7.03713 15.3407 7.01367C12.737 7.01367 10.1333 7.01367 7.55301 7.01367C7.31844 7.01367 7.22461 7.06058 7.22461 7.31861C7.22461 14.989 7.22461 22.6359 7.22461 30.3063C7.22461 30.5174 7.27154 30.5877 7.50611 30.5877C8.79623 30.5877 10.0863 30.5877 11.3999 30.5877C11.658 30.5877 11.7049 30.5174 11.7049 30.2828C11.7049 27.5384 11.7049 24.7939 11.7049 22.0495C11.7049 19.305 11.7049 21.5334 12.2444 21.5334C12.5258 21.5334 12.7839 21.5334 12.995 21.8149C15.1765 24.6766 17.3579 27.4914 19.5394 30.3532C19.6802 30.5174 19.8209 30.6112 20.032 30.6112C21.6975 30.6112 23.3863 30.6112 25.0518 30.6112H25.4271C22.8469 27.468 20.29 24.3717 17.7567 21.2754C17.7802 21.2519 17.8036 21.2285 17.8271 21.2285L17.8505 21.1816ZM15.4345 17.7334C14.2616 17.9914 13.0654 17.8742 11.8691 17.8976C11.6345 17.8976 11.7283 17.7334 11.7283 17.6396C11.7283 16.5137 11.7283 15.3643 11.7283 14.2384C11.7283 13.1124 11.7283 12.01 11.7283 10.9075C11.7283 10.7902 11.6579 10.626 11.8925 10.626C13.0888 10.6495 14.3086 10.5322 15.4814 10.8137C16.7715 11.1186 17.8271 11.7519 18.2024 13.1124C18.7184 15.0359 18.1555 17.147 15.4345 17.7569V17.7334Z", fill: "#ffffff" })] }));
564
+ return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 43 38", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-label": "Regcheq", className: cn(logoCollapsedVariants({ size }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M0.0469021 0C0.187643 0 0.328389 0.0234582 0.492587 0.0234582C12.8309 0.0234582 25.1926 0.0234582 37.5309 0.0234582C37.828 0.0234582 37.9766 0.172016 37.9766 0.469136C37.9766 4.15185 37.9766 7.85802 37.9766 11.5407C37.9766 11.8457 37.9062 11.9395 37.6012 11.9395C36.8037 11.9161 36.0296 11.9395 35.2321 11.9395C34.9506 11.9395 34.9037 11.8457 34.9037 11.5877C34.9037 8.86667 34.9037 6.16914 34.9037 3.44815C34.9037 3.11975 34.8099 3.04938 34.4815 3.04938C24.137 3.04938 13.7926 3.04938 3.44814 3.04938C3.1432 3.04938 3.04938 3.0963 3.04938 3.42469C3.04938 13.7926 3.04938 24.1605 3.04938 34.5049C3.04938 34.8099 3.1432 34.8802 3.42469 34.8802C14.2852 34.8802 25.1457 34.8802 36.0062 34.8802C36.3346 34.8802 36.4518 34.9506 36.4284 35.3025C36.4049 36.0765 36.4284 36.8272 36.4284 37.6012C36.4284 37.8827 36.358 37.9531 36.0765 37.9531C32.7222 37.9531 29.3914 37.9531 26.037 37.9531C17.358 37.9531 8.67901 37.9531 0 37.9531V0H0.0469021Z", fill: bracketFill }), jsxRuntime.jsx("path", { d: "M41.8469 15.9507C40.8383 15.9507 39.8531 15.9507 38.8444 15.9507C38.5629 15.9507 38.1876 15.8334 38 15.9976C37.8123 16.1618 37.953 16.5605 37.953 16.842C37.953 17.1235 37.953 17.405 37.953 17.7099C37.8827 17.6865 37.8827 17.663 37.8592 17.663C35.3025 14.7309 30.4469 14.8013 27.7728 17.5223C26.3889 18.9297 25.6617 20.642 25.5444 22.5889C25.3802 25.1692 26.1074 27.4445 28.0308 29.2272C30.5173 31.5025 34.6926 31.7605 37.3432 29.2741C37.5308 29.0865 37.7419 28.8988 37.953 28.7112V29.063C37.953 31.9247 37.953 34.8099 37.953 37.6717C37.953 37.9531 38.0234 38.0001 38.2814 38.0001C39.595 38.0001 40.8852 38.0001 42.1987 38.0001V15.9272C42.1049 15.9976 41.9876 15.9507 41.8703 15.9507H41.8469ZM33.9889 27.4445C31.6197 27.4445 29.9308 25.6852 29.9543 23.2457C29.9543 20.8766 31.7136 19.1173 34.0123 19.1173C36.3345 19.1173 38.0469 20.9001 38.0469 23.3396C38.0469 25.6852 36.3111 27.4445 33.9889 27.4445Z", fill: "#ffffff" }), jsxRuntime.jsx("path", { d: "M17.8505 21.1816C17.9678 21.1347 18.0851 21.1112 18.2024 21.0643C20.337 20.3371 21.8851 18.9766 22.6123 16.8186C23.1752 15.1766 23.1987 13.4877 22.7296 11.7989C22.237 10.0865 21.1814 8.81984 19.6098 7.99885C18.2728 7.29515 16.8419 7.03713 15.3407 7.01367C12.737 7.01367 10.1333 7.01367 7.55301 7.01367C7.31844 7.01367 7.22461 7.06058 7.22461 7.31861C7.22461 14.989 7.22461 22.6359 7.22461 30.3063C7.22461 30.5174 7.27154 30.5877 7.50611 30.5877C8.79623 30.5877 10.0863 30.5877 11.3999 30.5877C11.658 30.5877 11.7049 30.5174 11.7049 30.2828C11.7049 27.5384 11.7049 24.7939 11.7049 22.0495C11.7049 19.305 11.7049 21.5334 12.2444 21.5334C12.5258 21.5334 12.7839 21.5334 12.995 21.8149C15.1765 24.6766 17.3579 27.4914 19.5394 30.3532C19.6802 30.5174 19.8209 30.6112 20.032 30.6112C21.6975 30.6112 23.3863 30.6112 25.0518 30.6112H25.4271C22.8469 27.468 20.29 24.3717 17.7567 21.2754C17.7802 21.2519 17.8036 21.2285 17.8271 21.2285L17.8505 21.1816ZM15.4345 17.7334C14.2616 17.9914 13.0654 17.8742 11.8691 17.8976C11.6345 17.8976 11.7283 17.7334 11.7283 17.6396C11.7283 16.5137 11.7283 15.3643 11.7283 14.2384C11.7283 13.1124 11.7283 12.01 11.7283 10.9075C11.7283 10.7902 11.6579 10.626 11.8925 10.626C13.0888 10.6495 14.3086 10.5322 15.4814 10.8137C16.7715 11.1186 17.8271 11.7519 18.2024 13.1124C18.7184 15.0359 18.1555 17.147 15.4345 17.7569V17.7334Z", fill: "#ffffff" })] }));
475
565
  });
476
566
  LogoCollapsed.displayName = "LogoCollapsed";
477
567
 
@@ -494,7 +584,7 @@ const TEXT_FILL$2 = {
494
584
  };
495
585
  const LogoFull = React__namespace.forwardRef(({ className, size, variant = "on-light", ...props }, ref) => {
496
586
  const textFill = TEXT_FILL$2[variant];
497
- return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 300 65", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", "aria-label": "Regcheq PLD", className: cn(logoFullVariants({ size }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M227.29 65V40.5H237.37C239.54 40.5 241.395 40.85 242.935 41.55C244.498 42.25 245.7 43.2533 246.54 44.56C247.38 45.8667 247.8 47.4183 247.8 49.215C247.8 51.0117 247.38 52.5633 246.54 53.87C245.7 55.1767 244.498 56.18 242.935 56.88C241.395 57.58 239.54 57.93 237.37 57.93H229.81L231.84 55.795V65H227.29ZM231.84 56.285L229.81 54.08H237.16C239.167 54.08 240.672 53.66 241.675 52.82C242.702 51.9567 243.215 50.755 243.215 49.215C243.215 47.6517 242.702 46.45 241.675 45.61C240.672 44.77 239.167 44.35 237.16 44.35H229.81L231.84 42.11V56.285ZM252.431 65V40.5H256.981V61.15H269.791V65H252.431ZM273.471 65V40.5H284.181C286.841 40.5 289.174 41.0133 291.181 42.04C293.188 43.0667 294.751 44.49 295.871 46.31C296.991 48.13 297.551 50.2767 297.551 52.75C297.551 55.2 296.991 57.3467 295.871 59.19C294.751 61.01 293.188 62.4333 291.181 63.46C289.174 64.4867 286.841 65 284.181 65H273.471ZM278.021 61.15H283.971C285.814 61.15 287.401 60.8 288.731 60.1C290.084 59.4 291.123 58.42 291.846 57.16C292.593 55.9 292.966 54.43 292.966 52.75C292.966 51.0467 292.593 49.5767 291.846 48.34C291.123 47.08 290.084 46.1 288.731 45.4C287.401 44.7 285.814 44.35 283.971 44.35H278.021V61.15Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M0.0316687 0C0.28508 0 0.506811 0.0316783 0.760222 0.0316783C21.635 0.0316783 42.5097 0.0316783 63.4162 0.0316783C63.923 0.0316783 64.1764 0.285088 64.1764 0.79191C64.1764 7.03216 64.1764 13.2724 64.1764 19.5127C64.1764 20.0195 64.0814 20.2096 63.5112 20.1779C62.1808 20.1462 60.8504 20.1462 59.52 20.1779C59.0448 20.1779 58.9498 20.0512 58.9498 19.6077C58.9498 15.0146 58.9498 10.4215 58.9498 5.86014C58.9498 5.28996 58.7914 5.19493 58.2529 5.19493C40.7675 5.19493 23.2505 5.19493 5.76511 5.19493C5.25829 5.19493 5.09989 5.28996 5.09989 5.82846C5.09989 23.3455 5.09989 40.8943 5.09989 58.4113C5.09989 58.9181 5.25828 59.0131 5.73342 59.0131C24.1057 59.0131 42.4781 59.0131 60.8504 59.0131C61.4206 59.0131 61.5789 59.1399 61.5789 59.71C61.5156 61.0088 61.5473 62.3075 61.5789 63.6062C61.5789 64.0814 61.4522 64.2081 60.9771 64.2081C55.3387 64.2081 49.6686 64.2081 44.0302 64.2081C29.364 64.2081 14.6662 64.2081 0 64.2081V0.0316783L0.0316687 0Z", fill: "#358DFF" }), jsxRuntime.jsx("path", { d: "M139.059 29.7441C140.643 28.0653 142.417 26.7982 144.571 26.4498C148.372 25.8162 151.857 26.6082 154.676 29.364C156.45 31.1062 157.02 33.3552 157.02 35.7626C157.02 40.9259 157.02 46.0891 157.02 51.2207C157.02 51.6642 156.862 51.6959 156.513 51.6959C154.454 51.6959 152.395 51.6959 150.336 51.6959C149.924 51.6959 149.798 51.6008 149.798 51.1574C149.798 46.5643 149.798 41.9395 149.798 37.3465C149.798 36.0477 149.481 34.8123 148.721 33.767C147.074 31.4863 143.716 31.1062 141.308 32.9434C139.82 34.0838 139.028 35.5726 139.028 37.5048C139.059 42.0662 139.028 46.596 139.028 51.1574C139.028 51.6008 138.933 51.7276 138.458 51.6959C136.399 51.6959 134.34 51.6959 132.281 51.6959C131.901 51.6959 131.806 51.6008 131.806 51.2207C131.806 37.6949 131.806 24.1691 131.806 10.6432C131.806 10.2314 131.932 10.1681 132.281 10.1681C134.34 10.1681 136.43 10.1681 138.521 10.1681C138.933 10.1681 138.996 10.3265 138.996 10.6749C138.996 16.7568 138.996 22.8387 138.996 28.9522V29.7124L139.059 29.7441ZM110.741 49.7953C113.845 52.1077 117.393 52.8362 121.194 52.3611C123.221 52.1077 125.153 51.5058 126.896 50.3971C127.244 50.1754 127.276 49.9853 127.086 49.6369C126.357 48.3065 125.692 46.9444 125.027 45.5823C124.837 45.2022 124.742 45.1705 124.393 45.3923C122.651 46.4693 120.782 46.8811 118.755 46.5326C115.809 46.0258 113.528 43.7451 113.021 40.8625C112.451 37.6949 113.75 34.6223 116.379 33.1018C119.103 31.5497 121.796 31.8664 124.425 33.3552C124.742 33.5453 124.837 33.5453 124.995 33.1968C125.565 31.9931 126.199 30.8211 126.801 29.6491C127.371 28.5404 127.371 28.5087 126.23 27.9069C122.904 26.1647 119.357 25.7212 115.714 26.5765C109.537 28.0336 105.229 33.4503 105.292 39.3421C105.387 43.6817 107.225 47.1661 110.709 49.7636L110.741 49.7953ZM100.826 27.4951C100.826 35.921 100.826 44.3153 100.826 52.7412C100.826 55.8772 99.9074 58.728 97.6583 61.0404C95.7261 63.036 93.287 64.0813 90.6262 64.6515C90.0243 64.7782 89.3908 64.7782 88.8206 65H83.7841C83.0872 64.6832 82.327 64.7149 81.5984 64.5565C78.019 63.7329 75.1364 61.9274 73.4259 58.5697C73.0458 57.8411 73.0458 57.8411 73.7743 57.461C75.3581 56.7007 76.942 55.9088 78.5258 55.1486C78.7475 55.0536 78.9059 54.9269 79.096 55.2436C80.3947 57.366 82.422 58.3479 84.7977 58.6964C86.635 58.9814 88.4088 58.8231 90.0877 57.9995C92.4634 56.7958 93.5721 54.7685 93.6354 52.1393C93.6354 50.9673 93.6354 49.7953 93.6354 48.6233C93.4454 48.5282 93.4137 48.6866 93.3503 48.75C89.0107 53.8182 81.0916 53.5965 76.6252 49.2568C73.5526 46.2792 72.3806 42.5414 72.634 38.3284C72.824 35.1608 73.901 32.3416 76.0867 30.0292C78.8742 27.0516 82.3903 25.9113 86.4132 26.3231C89.2324 26.6081 91.6398 27.8435 93.6354 30.1242C93.6354 29.1739 93.6354 28.382 93.6354 27.5901C93.6354 27.1466 93.7305 27.0199 94.2056 27.0199C96.2329 27.0199 98.2919 27.0199 100.319 27.0199C100.731 27.0199 100.826 27.115 100.826 27.5268V27.4951ZM93.8255 39.8806C93.9522 35.5409 91.228 32.4366 87.2051 32.3416C83.2456 32.2149 80.2046 35.1924 80.173 39.3104C80.173 43.3966 82.8021 46.3109 86.9517 46.4059C90.6262 46.5326 93.7305 43.5867 93.8572 39.8806H93.8255ZM219.359 26.9249V64.2714C217.142 64.2714 214.956 64.2714 212.739 64.2714C212.295 64.2714 212.169 64.1764 212.169 63.7329C212.169 58.8864 212.169 54.0399 212.169 49.1934V48.5916C211.82 48.9084 211.472 49.2251 211.155 49.5419C206.689 53.7232 199.625 53.3114 195.412 49.4468C192.149 46.4376 190.914 42.5731 191.199 38.2334C191.421 34.939 192.624 32.0565 194.968 29.6808C199.498 25.0877 207.702 24.961 212.01 29.9025C212.01 29.9025 212.01 29.9025 212.137 29.9658C212.137 29.4273 212.137 28.9522 212.137 28.4771C212.137 28.0019 211.915 27.3684 212.232 27.0516C212.549 26.7665 213.182 26.9566 213.657 26.9566C215.336 26.9566 217.047 26.9566 218.726 26.9566C218.916 26.9566 219.106 27.0199 219.296 26.8932L219.359 26.9249ZM212.39 39.4688C212.39 35.3508 209.539 32.3416 205.58 32.3099C201.684 32.3099 198.738 35.2875 198.706 39.2787C198.706 43.3966 201.525 46.3742 205.548 46.3742C209.444 46.3742 212.39 43.4283 212.39 39.4371V39.4688ZM43.0482 51.7275H42.4147C39.5638 51.7275 36.7446 51.7275 33.8937 51.7275C33.5136 51.7275 33.2602 51.6008 33.0385 51.3158C29.3323 46.5009 25.6262 41.7178 21.9517 36.903C21.5716 36.3962 21.1598 36.4278 20.6847 36.4278C19.7977 36.4278 19.7977 36.4278 19.7977 37.3148C19.7977 41.9712 19.7977 46.596 19.7977 51.2524C19.7977 51.6642 19.7027 51.7909 19.2592 51.7909C17.0735 51.7909 14.8879 51.7909 12.7022 51.7909C12.3221 51.7909 12.2271 51.6959 12.2271 51.3158C12.2271 38.3601 12.2271 25.4044 12.2271 12.4488C12.2271 12.0053 12.3854 11.942 12.7656 11.942C17.1686 11.942 21.5716 11.942 25.9429 11.942C28.4454 11.942 30.8845 12.4171 33.1335 13.5891C35.7943 14.9829 37.5682 17.1052 38.3918 20.0195C39.1837 22.8703 39.152 25.7212 38.2017 28.4771C36.9347 32.1199 34.3372 34.4322 30.7261 35.6676C30.536 35.7309 30.3143 35.7943 30.1242 35.8577C30.1242 35.8577 30.0609 35.8893 30.0292 35.9527C34.3372 41.1793 38.6452 46.4376 43.0165 51.7592L43.0482 51.7275ZM30.7261 22.1418C30.0926 19.8611 28.3187 18.7841 26.133 18.2773C24.1374 17.8021 22.0784 17.9922 20.0511 17.9605C19.6393 17.9605 19.766 18.2456 19.766 18.4356C19.766 20.3045 19.766 22.2051 19.766 24.074C19.766 25.9429 19.766 27.9069 19.766 29.8391C19.766 29.9975 19.6077 30.2826 19.9878 30.2826C21.9834 30.2193 24.0107 30.4727 26.0063 29.9975C30.5994 28.9522 31.5813 25.4044 30.6627 22.1418H30.7261ZM188.031 39.7222C188.031 40.134 187.936 40.2924 187.461 40.2924C184.452 40.2924 181.442 40.2924 178.433 40.2924C175.424 40.2924 172.415 40.2924 169.405 40.2924C168.93 40.2924 168.804 40.3874 168.835 40.8625C169.025 43.8718 171.306 46.3109 174.379 46.691C177.42 47.0711 180.017 46.2792 182.013 43.8401C182.234 43.555 182.393 43.4917 182.741 43.6817C184.198 44.442 185.655 45.1705 187.113 45.8991C187.461 46.0575 187.493 46.1842 187.271 46.5009C185.497 49.2251 183.058 50.999 179.954 51.8543C176.279 52.8362 172.668 52.8362 169.152 51.2524C164.084 48.9717 160.916 43.5867 161.455 38.1067C161.993 32.5633 166.174 27.8119 171.654 26.6081C175.202 25.8162 178.655 26.1964 181.854 27.9702C185.529 30.0292 187.398 33.2919 187.904 37.4098C187.999 38.17 187.999 38.962 187.999 39.7539L188.031 39.7222ZM180.967 35.826C180.809 35.2875 180.651 34.7807 180.365 34.3055C178.972 31.9298 175.867 30.8211 172.985 31.7397C171.021 32.3416 169.659 33.6086 169.12 35.6359C168.962 36.2695 168.994 36.3011 169.627 36.3011C171.433 36.3011 173.238 36.3011 175.044 36.3011C176.849 36.3011 178.75 36.3011 180.587 36.3011C180.999 36.3011 181.062 36.1744 180.967 35.826ZM69.4663 39.8489C69.4663 40.229 69.3396 40.324 68.9595 40.324C65.9186 40.324 62.8776 40.324 59.8367 40.324C56.7958 40.324 53.7865 40.324 50.7456 40.324C50.3338 40.324 50.2388 40.4191 50.2704 40.8309C50.4288 43.8718 52.7095 46.3426 55.7821 46.7227C58.8231 47.1345 61.4205 46.3109 63.4161 43.9035C63.6696 43.5867 63.8596 43.5867 64.2081 43.7451C65.6335 44.4736 67.0273 45.2022 68.4844 45.8991C68.9278 46.1208 68.8962 46.2792 68.6744 46.6276C66.4887 49.9537 63.3211 51.7276 59.4566 52.3294C56.5107 52.7729 53.6281 52.6145 50.8406 51.4108C45.6457 49.1301 42.4463 44.0618 42.8898 38.4234C43.2699 33.4503 45.8357 29.7758 50.3021 27.6535C55.402 25.2777 60.4069 25.7212 64.9683 29.1423C67.6608 31.1379 68.9278 34.0204 69.3396 37.3148C69.4346 38.17 69.4663 39.0253 69.4347 39.8806L69.4663 39.8489ZM62.4975 36.2695C62.4025 35.3825 62.0857 34.6223 61.5789 33.9254C60.1218 31.8347 57.2709 30.8845 54.5467 31.6764C52.5195 32.2465 51.1257 33.5136 50.5555 35.5726C50.3655 36.2695 50.3971 36.2695 51.094 36.2695C54.7051 36.2695 58.2845 36.2695 61.8957 36.2695H62.4975Z", fill: textFill })] }));
587
+ return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 300 65", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-label": "Regcheq PLD", className: cn(logoFullVariants({ size }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M227.29 65V40.5H237.37C239.54 40.5 241.395 40.85 242.935 41.55C244.498 42.25 245.7 43.2533 246.54 44.56C247.38 45.8667 247.8 47.4183 247.8 49.215C247.8 51.0117 247.38 52.5633 246.54 53.87C245.7 55.1767 244.498 56.18 242.935 56.88C241.395 57.58 239.54 57.93 237.37 57.93H229.81L231.84 55.795V65H227.29ZM231.84 56.285L229.81 54.08H237.16C239.167 54.08 240.672 53.66 241.675 52.82C242.702 51.9567 243.215 50.755 243.215 49.215C243.215 47.6517 242.702 46.45 241.675 45.61C240.672 44.77 239.167 44.35 237.16 44.35H229.81L231.84 42.11V56.285ZM252.431 65V40.5H256.981V61.15H269.791V65H252.431ZM273.471 65V40.5H284.181C286.841 40.5 289.174 41.0133 291.181 42.04C293.188 43.0667 294.751 44.49 295.871 46.31C296.991 48.13 297.551 50.2767 297.551 52.75C297.551 55.2 296.991 57.3467 295.871 59.19C294.751 61.01 293.188 62.4333 291.181 63.46C289.174 64.4867 286.841 65 284.181 65H273.471ZM278.021 61.15H283.971C285.814 61.15 287.401 60.8 288.731 60.1C290.084 59.4 291.123 58.42 291.846 57.16C292.593 55.9 292.966 54.43 292.966 52.75C292.966 51.0467 292.593 49.5767 291.846 48.34C291.123 47.08 290.084 46.1 288.731 45.4C287.401 44.7 285.814 44.35 283.971 44.35H278.021V61.15Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M0.0316687 0C0.28508 0 0.506811 0.0316783 0.760222 0.0316783C21.635 0.0316783 42.5097 0.0316783 63.4162 0.0316783C63.923 0.0316783 64.1764 0.285088 64.1764 0.79191C64.1764 7.03216 64.1764 13.2724 64.1764 19.5127C64.1764 20.0195 64.0814 20.2096 63.5112 20.1779C62.1808 20.1462 60.8504 20.1462 59.52 20.1779C59.0448 20.1779 58.9498 20.0512 58.9498 19.6077C58.9498 15.0146 58.9498 10.4215 58.9498 5.86014C58.9498 5.28996 58.7914 5.19493 58.2529 5.19493C40.7675 5.19493 23.2505 5.19493 5.76511 5.19493C5.25829 5.19493 5.09989 5.28996 5.09989 5.82846C5.09989 23.3455 5.09989 40.8943 5.09989 58.4113C5.09989 58.9181 5.25828 59.0131 5.73342 59.0131C24.1057 59.0131 42.4781 59.0131 60.8504 59.0131C61.4206 59.0131 61.5789 59.1399 61.5789 59.71C61.5156 61.0088 61.5473 62.3075 61.5789 63.6062C61.5789 64.0814 61.4522 64.2081 60.9771 64.2081C55.3387 64.2081 49.6686 64.2081 44.0302 64.2081C29.364 64.2081 14.6662 64.2081 0 64.2081V0.0316783L0.0316687 0Z", fill: "#358DFF" }), jsxRuntime.jsx("path", { d: "M139.059 29.7441C140.643 28.0653 142.417 26.7982 144.571 26.4498C148.372 25.8162 151.857 26.6082 154.676 29.364C156.45 31.1062 157.02 33.3552 157.02 35.7626C157.02 40.9259 157.02 46.0891 157.02 51.2207C157.02 51.6642 156.862 51.6959 156.513 51.6959C154.454 51.6959 152.395 51.6959 150.336 51.6959C149.924 51.6959 149.798 51.6008 149.798 51.1574C149.798 46.5643 149.798 41.9395 149.798 37.3465C149.798 36.0477 149.481 34.8123 148.721 33.767C147.074 31.4863 143.716 31.1062 141.308 32.9434C139.82 34.0838 139.028 35.5726 139.028 37.5048C139.059 42.0662 139.028 46.596 139.028 51.1574C139.028 51.6008 138.933 51.7276 138.458 51.6959C136.399 51.6959 134.34 51.6959 132.281 51.6959C131.901 51.6959 131.806 51.6008 131.806 51.2207C131.806 37.6949 131.806 24.1691 131.806 10.6432C131.806 10.2314 131.932 10.1681 132.281 10.1681C134.34 10.1681 136.43 10.1681 138.521 10.1681C138.933 10.1681 138.996 10.3265 138.996 10.6749C138.996 16.7568 138.996 22.8387 138.996 28.9522V29.7124L139.059 29.7441ZM110.741 49.7953C113.845 52.1077 117.393 52.8362 121.194 52.3611C123.221 52.1077 125.153 51.5058 126.896 50.3971C127.244 50.1754 127.276 49.9853 127.086 49.6369C126.357 48.3065 125.692 46.9444 125.027 45.5823C124.837 45.2022 124.742 45.1705 124.393 45.3923C122.651 46.4693 120.782 46.8811 118.755 46.5326C115.809 46.0258 113.528 43.7451 113.021 40.8625C112.451 37.6949 113.75 34.6223 116.379 33.1018C119.103 31.5497 121.796 31.8664 124.425 33.3552C124.742 33.5453 124.837 33.5453 124.995 33.1968C125.565 31.9931 126.199 30.8211 126.801 29.6491C127.371 28.5404 127.371 28.5087 126.23 27.9069C122.904 26.1647 119.357 25.7212 115.714 26.5765C109.537 28.0336 105.229 33.4503 105.292 39.3421C105.387 43.6817 107.225 47.1661 110.709 49.7636L110.741 49.7953ZM100.826 27.4951C100.826 35.921 100.826 44.3153 100.826 52.7412C100.826 55.8772 99.9074 58.728 97.6583 61.0404C95.7261 63.036 93.287 64.0813 90.6262 64.6515C90.0243 64.7782 89.3908 64.7782 88.8206 65H83.7841C83.0872 64.6832 82.327 64.7149 81.5984 64.5565C78.019 63.7329 75.1364 61.9274 73.4259 58.5697C73.0458 57.8411 73.0458 57.8411 73.7743 57.461C75.3581 56.7007 76.942 55.9088 78.5258 55.1486C78.7475 55.0536 78.9059 54.9269 79.096 55.2436C80.3947 57.366 82.422 58.3479 84.7977 58.6964C86.635 58.9814 88.4088 58.8231 90.0877 57.9995C92.4634 56.7958 93.5721 54.7685 93.6354 52.1393C93.6354 50.9673 93.6354 49.7953 93.6354 48.6233C93.4454 48.5282 93.4137 48.6866 93.3503 48.75C89.0107 53.8182 81.0916 53.5965 76.6252 49.2568C73.5526 46.2792 72.3806 42.5414 72.634 38.3284C72.824 35.1608 73.901 32.3416 76.0867 30.0292C78.8742 27.0516 82.3903 25.9113 86.4132 26.3231C89.2324 26.6081 91.6398 27.8435 93.6354 30.1242C93.6354 29.1739 93.6354 28.382 93.6354 27.5901C93.6354 27.1466 93.7305 27.0199 94.2056 27.0199C96.2329 27.0199 98.2919 27.0199 100.319 27.0199C100.731 27.0199 100.826 27.115 100.826 27.5268V27.4951ZM93.8255 39.8806C93.9522 35.5409 91.228 32.4366 87.2051 32.3416C83.2456 32.2149 80.2046 35.1924 80.173 39.3104C80.173 43.3966 82.8021 46.3109 86.9517 46.4059C90.6262 46.5326 93.7305 43.5867 93.8572 39.8806H93.8255ZM219.359 26.9249V64.2714C217.142 64.2714 214.956 64.2714 212.739 64.2714C212.295 64.2714 212.169 64.1764 212.169 63.7329C212.169 58.8864 212.169 54.0399 212.169 49.1934V48.5916C211.82 48.9084 211.472 49.2251 211.155 49.5419C206.689 53.7232 199.625 53.3114 195.412 49.4468C192.149 46.4376 190.914 42.5731 191.199 38.2334C191.421 34.939 192.624 32.0565 194.968 29.6808C199.498 25.0877 207.702 24.961 212.01 29.9025C212.01 29.9025 212.01 29.9025 212.137 29.9658C212.137 29.4273 212.137 28.9522 212.137 28.4771C212.137 28.0019 211.915 27.3684 212.232 27.0516C212.549 26.7665 213.182 26.9566 213.657 26.9566C215.336 26.9566 217.047 26.9566 218.726 26.9566C218.916 26.9566 219.106 27.0199 219.296 26.8932L219.359 26.9249ZM212.39 39.4688C212.39 35.3508 209.539 32.3416 205.58 32.3099C201.684 32.3099 198.738 35.2875 198.706 39.2787C198.706 43.3966 201.525 46.3742 205.548 46.3742C209.444 46.3742 212.39 43.4283 212.39 39.4371V39.4688ZM43.0482 51.7275H42.4147C39.5638 51.7275 36.7446 51.7275 33.8937 51.7275C33.5136 51.7275 33.2602 51.6008 33.0385 51.3158C29.3323 46.5009 25.6262 41.7178 21.9517 36.903C21.5716 36.3962 21.1598 36.4278 20.6847 36.4278C19.7977 36.4278 19.7977 36.4278 19.7977 37.3148C19.7977 41.9712 19.7977 46.596 19.7977 51.2524C19.7977 51.6642 19.7027 51.7909 19.2592 51.7909C17.0735 51.7909 14.8879 51.7909 12.7022 51.7909C12.3221 51.7909 12.2271 51.6959 12.2271 51.3158C12.2271 38.3601 12.2271 25.4044 12.2271 12.4488C12.2271 12.0053 12.3854 11.942 12.7656 11.942C17.1686 11.942 21.5716 11.942 25.9429 11.942C28.4454 11.942 30.8845 12.4171 33.1335 13.5891C35.7943 14.9829 37.5682 17.1052 38.3918 20.0195C39.1837 22.8703 39.152 25.7212 38.2017 28.4771C36.9347 32.1199 34.3372 34.4322 30.7261 35.6676C30.536 35.7309 30.3143 35.7943 30.1242 35.8577C30.1242 35.8577 30.0609 35.8893 30.0292 35.9527C34.3372 41.1793 38.6452 46.4376 43.0165 51.7592L43.0482 51.7275ZM30.7261 22.1418C30.0926 19.8611 28.3187 18.7841 26.133 18.2773C24.1374 17.8021 22.0784 17.9922 20.0511 17.9605C19.6393 17.9605 19.766 18.2456 19.766 18.4356C19.766 20.3045 19.766 22.2051 19.766 24.074C19.766 25.9429 19.766 27.9069 19.766 29.8391C19.766 29.9975 19.6077 30.2826 19.9878 30.2826C21.9834 30.2193 24.0107 30.4727 26.0063 29.9975C30.5994 28.9522 31.5813 25.4044 30.6627 22.1418H30.7261ZM188.031 39.7222C188.031 40.134 187.936 40.2924 187.461 40.2924C184.452 40.2924 181.442 40.2924 178.433 40.2924C175.424 40.2924 172.415 40.2924 169.405 40.2924C168.93 40.2924 168.804 40.3874 168.835 40.8625C169.025 43.8718 171.306 46.3109 174.379 46.691C177.42 47.0711 180.017 46.2792 182.013 43.8401C182.234 43.555 182.393 43.4917 182.741 43.6817C184.198 44.442 185.655 45.1705 187.113 45.8991C187.461 46.0575 187.493 46.1842 187.271 46.5009C185.497 49.2251 183.058 50.999 179.954 51.8543C176.279 52.8362 172.668 52.8362 169.152 51.2524C164.084 48.9717 160.916 43.5867 161.455 38.1067C161.993 32.5633 166.174 27.8119 171.654 26.6081C175.202 25.8162 178.655 26.1964 181.854 27.9702C185.529 30.0292 187.398 33.2919 187.904 37.4098C187.999 38.17 187.999 38.962 187.999 39.7539L188.031 39.7222ZM180.967 35.826C180.809 35.2875 180.651 34.7807 180.365 34.3055C178.972 31.9298 175.867 30.8211 172.985 31.7397C171.021 32.3416 169.659 33.6086 169.12 35.6359C168.962 36.2695 168.994 36.3011 169.627 36.3011C171.433 36.3011 173.238 36.3011 175.044 36.3011C176.849 36.3011 178.75 36.3011 180.587 36.3011C180.999 36.3011 181.062 36.1744 180.967 35.826ZM69.4663 39.8489C69.4663 40.229 69.3396 40.324 68.9595 40.324C65.9186 40.324 62.8776 40.324 59.8367 40.324C56.7958 40.324 53.7865 40.324 50.7456 40.324C50.3338 40.324 50.2388 40.4191 50.2704 40.8309C50.4288 43.8718 52.7095 46.3426 55.7821 46.7227C58.8231 47.1345 61.4205 46.3109 63.4161 43.9035C63.6696 43.5867 63.8596 43.5867 64.2081 43.7451C65.6335 44.4736 67.0273 45.2022 68.4844 45.8991C68.9278 46.1208 68.8962 46.2792 68.6744 46.6276C66.4887 49.9537 63.3211 51.7276 59.4566 52.3294C56.5107 52.7729 53.6281 52.6145 50.8406 51.4108C45.6457 49.1301 42.4463 44.0618 42.8898 38.4234C43.2699 33.4503 45.8357 29.7758 50.3021 27.6535C55.402 25.2777 60.4069 25.7212 64.9683 29.1423C67.6608 31.1379 68.9278 34.0204 69.3396 37.3148C69.4346 38.17 69.4663 39.0253 69.4347 39.8806L69.4663 39.8489ZM62.4975 36.2695C62.4025 35.3825 62.0857 34.6223 61.5789 33.9254C60.1218 31.8347 57.2709 30.8845 54.5467 31.6764C52.5195 32.2465 51.1257 33.5136 50.5555 35.5726C50.3655 36.2695 50.3971 36.2695 51.094 36.2695C54.7051 36.2695 58.2845 36.2695 61.8957 36.2695H62.4975Z", fill: textFill })] }));
498
588
  });
499
589
  LogoFull.displayName = "LogoFull";
500
590
 
@@ -518,7 +608,7 @@ const TEXT_FILL$1 = {
518
608
  const LogoFullAlt = React__namespace.forwardRef(({ className, size, variant = "on-dark", ...props }, ref) => {
519
609
  const maskId = React__namespace.useId();
520
610
  const textFill = TEXT_FILL$1[variant];
521
- return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 134 65", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", "aria-label": "Regcheq PLD", className: cn(logoFullAltVariants({ size }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M99.6017 60.8037V49.6037H104.21C105.202 49.6037 106.05 49.7637 106.754 50.0837C107.468 50.4037 108.018 50.8624 108.402 51.4597C108.786 52.057 108.978 52.7664 108.978 53.5877C108.978 54.409 108.786 55.1184 108.402 55.7157C108.018 56.313 107.468 56.7717 106.754 57.0917C106.05 57.4117 105.202 57.5717 104.21 57.5717H100.754L101.682 56.5957V60.8037H99.6017ZM101.682 56.8197L100.754 55.8117H104.114C105.031 55.8117 105.719 55.6197 106.178 55.2357C106.647 54.841 106.882 54.2917 106.882 53.5877C106.882 52.873 106.647 52.3237 106.178 51.9397C105.719 51.5557 105.031 51.3637 104.114 51.3637H100.754L101.682 50.3397V56.8197ZM111.095 60.8037V49.6037H113.175V59.0437H119.031V60.8037H111.095ZM120.713 60.8037V49.6037H125.609C126.825 49.6037 127.892 49.8384 128.809 50.3077C129.726 50.777 130.441 51.4277 130.953 52.2597C131.465 53.0917 131.721 54.073 131.721 55.2037C131.721 56.3237 131.465 57.305 130.953 58.1477C130.441 58.9797 129.726 59.6304 128.809 60.0997C127.892 60.569 126.825 60.8037 125.609 60.8037H120.713ZM122.793 59.0437H125.513C126.356 59.0437 127.081 58.8837 127.689 58.5637C128.308 58.2437 128.782 57.7957 129.113 57.2197C129.454 56.6437 129.625 55.9717 129.625 55.2037C129.625 54.425 129.454 53.753 129.113 53.1877C128.782 52.6117 128.308 52.1637 127.689 51.8437C127.081 51.5237 126.356 51.3637 125.513 51.3637H122.793V59.0437Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M38.3438 0.527344C38.3437 4.30979 38.3394 8.09207 38.3486 11.876C37.6319 11.8547 36.9158 11.8591 36.2031 11.876C36.2119 9.10874 36.2027 6.36275 36.2158 3.59961V3.59766C36.2158 3.41982 36.2027 3.10907 35.9639 2.89062C35.7949 2.73617 35.5837 2.69734 35.4277 2.6875L35.293 2.68457C30.0104 2.68942 24.7284 2.69067 19.4463 2.69043L3.59863 2.68457C3.46618 2.68457 3.17558 2.68327 2.95312 2.87988C2.71208 3.09301 2.69531 3.39836 2.69531 3.57617C2.70488 14.3122 2.70488 25.0491 2.69531 35.7852L2.7002 35.9287C2.71409 36.0918 2.76378 36.3017 2.93848 36.4619C3.15818 36.6631 3.44948 36.6621 3.57715 36.6621H3.57812C14.647 36.6544 25.7184 36.658 36.7881 36.6465C36.7625 37.3731 36.7681 38.0984 36.7871 38.8174C33.4204 38.8063 30.0534 38.8115 26.6904 38.8115H0.597656V0.527344H38.3438Z", fill: textFill, stroke: textFill }), jsxRuntime.jsx("mask", { id: maskId, fill: "white", children: jsxRuntime.jsx("path", { d: "M84.0587 18.2225C85.0133 17.1863 86.077 16.4257 87.395 16.2064C89.6888 15.8261 91.7893 16.2976 93.4938 18.0013C94.5631 19.0705 94.9037 20.4423 94.9017 21.9248C94.8979 25.0838 94.8979 28.2428 94.9075 31.4019C94.9075 31.6677 94.8157 31.6949 94.5938 31.6929C93.3522 31.6832 92.1106 31.6793 90.8691 31.6929C90.6127 31.6968 90.5458 31.6328 90.5477 31.3689C90.5592 28.5475 90.5535 25.7261 90.5554 22.9047C90.5554 22.1014 90.3583 21.3582 89.8973 20.7024C88.9082 19.2955 86.8785 19.0666 85.4227 20.2017C84.5255 20.9022 84.0434 21.8084 84.053 22.9921C84.074 25.7785 84.0549 28.565 84.0664 31.3495C84.0664 31.6231 84.0013 31.6929 83.7316 31.689C82.4901 31.6735 81.2485 31.6774 80.007 31.689C79.785 31.689 79.72 31.6347 79.72 31.4019C79.7257 23.1143 79.7257 14.8248 79.72 6.53726C79.72 6.29276 79.8003 6.25007 80.0146 6.25201C81.2676 6.25978 82.5207 6.26366 83.7737 6.25201C84.0281 6.25201 84.0664 6.34127 84.0664 6.57024C84.0606 10.2997 84.0626 14.0312 84.0626 17.7607V18.2205L84.0587 18.2244V18.2225ZM66.964 30.517C68.8464 31.9316 70.9813 32.3895 73.2827 32.0888C74.5108 31.9277 75.6778 31.5668 76.7299 30.8779C76.9404 30.7402 76.9633 30.6354 76.8447 30.4103C76.4124 29.5914 75.9953 28.7629 75.5936 27.9285C75.4846 27.7015 75.4176 27.6801 75.2034 27.814C74.1588 28.4699 73.0129 28.7182 71.8039 28.5106C70.0267 28.206 68.6474 26.7953 68.3337 25.0295C67.9874 23.0852 68.7679 21.2069 70.3577 20.2793C72.001 19.3208 73.6347 19.5187 75.2263 20.4443C75.41 20.551 75.4731 20.5607 75.5706 20.357C75.9246 19.6274 76.2995 18.9075 76.663 18.1837C77.0035 17.5045 77.0073 17.491 76.3206 17.1262C74.3061 16.057 72.1693 15.795 69.9712 16.3151C66.2332 17.1999 63.641 20.5219 63.687 24.1427C63.7482 26.8108 64.8577 28.9375 66.962 30.519H66.964V30.517ZM60.9647 16.8467C60.9571 21.9986 60.9685 27.1504 60.9552 32.3022C60.9494 34.231 60.3927 35.9754 59.046 37.3919C57.8809 38.6183 56.4136 39.2586 54.7952 39.5982C54.4337 39.6739 54.0568 39.6681 53.7067 39.8039H50.6707C50.2499 39.6176 49.7888 39.6312 49.3508 39.5283C47.1871 39.02 45.4558 37.9236 44.4171 35.8648C44.1894 35.4166 44.1913 35.4127 44.6352 35.1934C45.5917 34.72 46.552 34.2504 47.5085 33.775C47.6443 33.7071 47.7381 33.6295 47.8586 33.8293C48.6449 35.1275 49.8654 35.7212 51.2944 35.9483C52.3963 36.1248 53.4733 36.0356 54.4834 35.5175C55.9277 34.7762 56.5935 33.5402 56.6336 31.9335C56.6528 31.2117 56.6375 30.4899 56.6375 29.7758C56.5265 29.7156 56.5036 29.8088 56.4672 29.8534C53.8406 32.9678 49.0581 32.8281 46.3607 30.1716C44.4993 28.3399 43.7953 26.0579 43.9503 23.481C44.0651 21.5503 44.7232 19.8233 46.0412 18.401C47.7323 16.5751 49.8481 15.8765 52.2777 16.1268C53.9879 16.3034 55.4265 17.0602 56.6394 18.4456C56.6394 17.8674 56.6547 17.3765 56.6336 16.8855C56.6222 16.6119 56.6987 16.5324 56.9742 16.5363C58.2042 16.5518 59.4343 16.5498 60.6644 16.5363C60.9035 16.5343 60.9705 16.5984 60.9705 16.8448H60.9647V16.8467ZM56.7389 24.4357C56.8173 21.7851 55.174 19.8835 52.7368 19.8098C50.3474 19.736 48.5033 21.5484 48.4842 24.0845C48.465 26.5818 50.0777 28.3767 52.5723 28.4349C54.7914 28.5067 56.6719 26.7041 56.7369 24.4377H56.7389V24.4357ZM132.554 16.5091V39.3848C131.22 39.3848 129.887 39.377 128.556 39.3906C128.294 39.3906 128.211 39.3362 128.213 39.0529C128.225 36.0822 128.221 33.1094 128.221 30.1386V29.7797C128.012 29.9718 127.804 30.16 127.601 30.354C124.909 32.9212 120.63 32.6709 118.097 30.3016C116.119 28.4524 115.379 26.1006 115.553 23.4306C115.685 21.4106 116.421 19.6448 117.837 18.1876C120.567 15.3778 125.529 15.3002 128.139 18.3312C128.144 18.3389 128.158 18.3409 128.223 18.3777C128.223 18.0556 128.215 17.7626 128.225 17.4696C128.236 17.1708 128.095 16.7827 128.284 16.6003C128.473 16.4198 128.854 16.5479 129.151 16.546C130.174 16.5401 131.196 16.546 132.219 16.5421C132.332 16.5421 132.449 16.5712 132.556 16.5091H132.554ZM128.345 24.1912C128.353 21.6687 126.616 19.8175 124.232 19.8098C121.877 19.802 120.094 21.6376 120.077 24.0865C120.06 26.609 121.785 28.4252 124.207 28.4349C126.56 28.4446 128.336 26.6226 128.343 24.1912H128.345ZM26.0731 31.689H25.6905C23.9783 31.689 22.2643 31.6832 20.5521 31.6949C20.3168 31.6949 20.1791 31.6153 20.0413 31.4348C17.8108 28.4893 15.5668 25.5534 13.3477 22.5962C13.1181 22.2916 12.8713 22.3013 12.5786 22.3032C12.0372 22.3051 12.0372 22.3032 12.0372 22.8426C12.0372 25.6873 12.0334 28.53 12.043 31.3747C12.043 31.6347 11.9837 31.7007 11.7254 31.6968C10.4035 31.6813 9.08163 31.6832 7.75973 31.6968C7.53591 31.6968 7.47852 31.6405 7.47852 31.4116C7.48425 23.4733 7.48617 15.5369 7.47852 7.59867C7.47852 7.32119 7.56651 7.28238 7.80756 7.28432C10.4628 7.29208 13.1181 7.27268 15.7734 7.29596C17.2904 7.30955 18.7634 7.58509 20.1255 8.31275C21.7305 9.16847 22.8076 10.4705 23.3011 12.246C23.7832 13.9846 23.7583 15.729 23.1768 17.4347C22.4154 19.67 20.8486 21.0866 18.6601 21.8336C18.5415 21.8744 18.421 21.9112 18.3005 21.952C18.2814 21.9578 18.268 21.9811 18.2374 22.0083C20.8352 25.2177 23.4331 28.4291 26.0731 31.691V31.689ZM18.6448 13.5713C18.268 12.1761 17.1909 11.5164 15.8767 11.1962C14.6657 10.9032 13.4318 11.0177 12.2056 10.9925C11.9569 10.9866 12.0411 11.169 12.0411 11.2855C12.0353 12.4381 12.0372 13.5926 12.0372 14.7452C12.0372 15.8979 12.0372 17.099 12.0411 18.2749C12.0411 18.3777 11.9531 18.5543 12.1846 18.5485C13.3993 18.5174 14.6217 18.6571 15.825 18.3797C18.6066 17.7393 19.1843 15.5622 18.6467 13.5694L18.6448 13.5713ZM113.644 24.3523C113.644 24.6007 113.58 24.7054 113.295 24.7035C111.48 24.688 109.663 24.6957 107.847 24.6957C106.032 24.6957 104.214 24.7016 102.399 24.6899C102.12 24.688 102.032 24.7384 102.051 25.045C102.16 26.8826 103.545 28.3728 105.393 28.6154C107.233 28.856 108.802 28.3573 110.001 26.871C110.141 26.6983 110.24 26.6633 110.449 26.7739C111.319 27.2396 112.201 27.6879 113.085 28.1264C113.29 28.2273 113.32 28.2952 113.188 28.499C112.119 30.16 110.648 31.2641 108.762 31.7744C106.55 32.3721 104.365 32.3759 102.236 31.4019C99.1716 29.9989 97.272 26.708 97.5934 23.3452C97.9186 19.9436 100.45 17.0408 103.755 16.3054C105.907 15.8261 107.987 16.0453 109.925 17.1417C112.148 18.401 113.28 20.4016 113.586 22.9241C113.644 23.3995 113.647 23.8769 113.647 24.3542H113.644V24.3523ZM109.378 21.95C109.291 21.6221 109.181 21.3078 109.01 21.0148C108.161 19.5536 106.298 18.89 104.549 19.4391C103.357 19.8136 102.542 20.5782 102.217 21.8239C102.114 22.2217 102.133 22.2353 102.531 22.2353H105.806C106.898 22.2353 108.035 22.2275 109.15 22.2411C109.397 22.245 109.437 22.1693 109.38 21.95H109.378ZM42.0392 24.4144C42.0334 24.6472 41.9531 24.6996 41.735 24.6996C39.8966 24.6899 38.0563 24.6938 36.2179 24.6938C34.3794 24.6938 32.5621 24.6977 30.7351 24.688C30.496 24.688 30.4348 24.7384 30.4463 24.9926C30.5362 26.8477 31.9193 28.3612 33.7788 28.6096C35.6172 28.856 37.1897 28.3631 38.3911 26.8748C38.5479 26.6789 38.6608 26.675 38.8674 26.7836C39.7206 27.2338 40.5776 27.6782 41.4442 28.0992C41.7063 28.2273 41.6987 28.3263 41.5533 28.5494C40.2276 30.583 38.3279 31.6696 35.9921 32.0344C34.213 32.3119 32.4683 32.2149 30.7944 31.4698C27.6609 30.0765 25.7268 26.9641 25.9928 23.5218C26.2281 20.4811 27.7661 18.2147 30.4769 16.9302C33.5626 15.4671 36.5852 15.7504 39.3342 17.8441C40.9507 19.0743 41.7216 20.8382 41.9722 22.8446C42.0373 23.3646 42.0526 23.8885 42.0373 24.4144H42.0392ZM37.8191 22.2353C37.754 21.69 37.5646 21.2224 37.2738 20.7974C36.3919 19.5071 34.6683 18.9327 33.0327 19.41C31.8122 19.7651 30.9609 20.5297 30.6223 21.8045C30.5094 22.2275 30.5228 22.2333 30.9437 22.2333H37.8191V22.2353Z" }) }), jsxRuntime.jsx("path", { d: "M84.0587 18.2225C85.0133 17.1863 86.077 16.4257 87.395 16.2064C89.6888 15.8261 91.7893 16.2976 93.4938 18.0013C94.5631 19.0705 94.9037 20.4423 94.9017 21.9248C94.8979 25.0838 94.8979 28.2428 94.9075 31.4019C94.9075 31.6677 94.8157 31.6949 94.5938 31.6929C93.3522 31.6832 92.1106 31.6793 90.8691 31.6929C90.6127 31.6968 90.5458 31.6328 90.5477 31.3689C90.5592 28.5475 90.5535 25.7261 90.5554 22.9047C90.5554 22.1014 90.3583 21.3582 89.8973 20.7024C88.9082 19.2955 86.8785 19.0666 85.4227 20.2017C84.5255 20.9022 84.0434 21.8084 84.053 22.9921C84.074 25.7785 84.0549 28.565 84.0664 31.3495C84.0664 31.6231 84.0013 31.6929 83.7316 31.689C82.4901 31.6735 81.2485 31.6774 80.007 31.689C79.785 31.689 79.72 31.6347 79.72 31.4019C79.7257 23.1143 79.7257 14.8248 79.72 6.53726C79.72 6.29276 79.8003 6.25007 80.0146 6.25201C81.2676 6.25978 82.5207 6.26366 83.7737 6.25201C84.0281 6.25201 84.0664 6.34127 84.0664 6.57024C84.0606 10.2997 84.0626 14.0312 84.0626 17.7607V18.2205L84.0587 18.2244V18.2225ZM66.964 30.517C68.8464 31.9316 70.9813 32.3895 73.2827 32.0888C74.5108 31.9277 75.6778 31.5668 76.7299 30.8779C76.9404 30.7402 76.9633 30.6354 76.8447 30.4103C76.4124 29.5914 75.9953 28.7629 75.5936 27.9285C75.4846 27.7015 75.4176 27.6801 75.2034 27.814C74.1588 28.4699 73.0129 28.7182 71.8039 28.5106C70.0267 28.206 68.6474 26.7953 68.3337 25.0295C67.9874 23.0852 68.7679 21.2069 70.3577 20.2793C72.001 19.3208 73.6347 19.5187 75.2263 20.4443C75.41 20.551 75.4731 20.5607 75.5706 20.357C75.9246 19.6274 76.2995 18.9075 76.663 18.1837C77.0035 17.5045 77.0073 17.491 76.3206 17.1262C74.3061 16.057 72.1693 15.795 69.9712 16.3151C66.2332 17.1999 63.641 20.5219 63.687 24.1427C63.7482 26.8108 64.8577 28.9375 66.962 30.519H66.964V30.517ZM60.9647 16.8467C60.9571 21.9986 60.9685 27.1504 60.9552 32.3022C60.9494 34.231 60.3927 35.9754 59.046 37.3919C57.8809 38.6183 56.4136 39.2586 54.7952 39.5982C54.4337 39.6739 54.0568 39.6681 53.7067 39.8039H50.6707C50.2499 39.6176 49.7888 39.6312 49.3508 39.5283C47.1871 39.02 45.4558 37.9236 44.4171 35.8648C44.1894 35.4166 44.1913 35.4127 44.6352 35.1934C45.5917 34.72 46.552 34.2504 47.5085 33.775C47.6443 33.7071 47.7381 33.6295 47.8586 33.8293C48.6449 35.1275 49.8654 35.7212 51.2944 35.9483C52.3963 36.1248 53.4733 36.0356 54.4834 35.5175C55.9277 34.7762 56.5935 33.5402 56.6336 31.9335C56.6528 31.2117 56.6375 30.4899 56.6375 29.7758C56.5265 29.7156 56.5036 29.8088 56.4672 29.8534C53.8406 32.9678 49.0581 32.8281 46.3607 30.1716C44.4993 28.3399 43.7953 26.0579 43.9503 23.481C44.0651 21.5503 44.7232 19.8233 46.0412 18.401C47.7323 16.5751 49.8481 15.8765 52.2777 16.1268C53.9879 16.3034 55.4265 17.0602 56.6394 18.4456C56.6394 17.8674 56.6547 17.3765 56.6336 16.8855C56.6222 16.6119 56.6987 16.5324 56.9742 16.5363C58.2042 16.5518 59.4343 16.5498 60.6644 16.5363C60.9035 16.5343 60.9705 16.5984 60.9705 16.8448H60.9647V16.8467ZM56.7389 24.4357C56.8173 21.7851 55.174 19.8835 52.7368 19.8098C50.3474 19.736 48.5033 21.5484 48.4842 24.0845C48.465 26.5818 50.0777 28.3767 52.5723 28.4349C54.7914 28.5067 56.6719 26.7041 56.7369 24.4377H56.7389V24.4357ZM132.554 16.5091V39.3848C131.22 39.3848 129.887 39.377 128.556 39.3906C128.294 39.3906 128.211 39.3362 128.213 39.0529C128.225 36.0822 128.221 33.1094 128.221 30.1386V29.7797C128.012 29.9718 127.804 30.16 127.601 30.354C124.909 32.9212 120.63 32.6709 118.097 30.3016C116.119 28.4524 115.379 26.1006 115.553 23.4306C115.685 21.4106 116.421 19.6448 117.837 18.1876C120.567 15.3778 125.529 15.3002 128.139 18.3312C128.144 18.3389 128.158 18.3409 128.223 18.3777C128.223 18.0556 128.215 17.7626 128.225 17.4696C128.236 17.1708 128.095 16.7827 128.284 16.6003C128.473 16.4198 128.854 16.5479 129.151 16.546C130.174 16.5401 131.196 16.546 132.219 16.5421C132.332 16.5421 132.449 16.5712 132.556 16.5091H132.554ZM128.345 24.1912C128.353 21.6687 126.616 19.8175 124.232 19.8098C121.877 19.802 120.094 21.6376 120.077 24.0865C120.06 26.609 121.785 28.4252 124.207 28.4349C126.56 28.4446 128.336 26.6226 128.343 24.1912H128.345ZM26.0731 31.689H25.6905C23.9783 31.689 22.2643 31.6832 20.5521 31.6949C20.3168 31.6949 20.1791 31.6153 20.0413 31.4348C17.8108 28.4893 15.5668 25.5534 13.3477 22.5962C13.1181 22.2916 12.8713 22.3013 12.5786 22.3032C12.0372 22.3051 12.0372 22.3032 12.0372 22.8426C12.0372 25.6873 12.0334 28.53 12.043 31.3747C12.043 31.6347 11.9837 31.7007 11.7254 31.6968C10.4035 31.6813 9.08163 31.6832 7.75973 31.6968C7.53591 31.6968 7.47852 31.6405 7.47852 31.4116C7.48425 23.4733 7.48617 15.5369 7.47852 7.59867C7.47852 7.32119 7.56651 7.28238 7.80756 7.28432C10.4628 7.29208 13.1181 7.27268 15.7734 7.29596C17.2904 7.30955 18.7634 7.58509 20.1255 8.31275C21.7305 9.16847 22.8076 10.4705 23.3011 12.246C23.7832 13.9846 23.7583 15.729 23.1768 17.4347C22.4154 19.67 20.8486 21.0866 18.6601 21.8336C18.5415 21.8744 18.421 21.9112 18.3005 21.952C18.2814 21.9578 18.268 21.9811 18.2374 22.0083C20.8352 25.2177 23.4331 28.4291 26.0731 31.691V31.689ZM18.6448 13.5713C18.268 12.1761 17.1909 11.5164 15.8767 11.1962C14.6657 10.9032 13.4318 11.0177 12.2056 10.9925C11.9569 10.9866 12.0411 11.169 12.0411 11.2855C12.0353 12.4381 12.0372 13.5926 12.0372 14.7452C12.0372 15.8979 12.0372 17.099 12.0411 18.2749C12.0411 18.3777 11.9531 18.5543 12.1846 18.5485C13.3993 18.5174 14.6217 18.6571 15.825 18.3797C18.6066 17.7393 19.1843 15.5622 18.6467 13.5694L18.6448 13.5713ZM113.644 24.3523C113.644 24.6007 113.58 24.7054 113.295 24.7035C111.48 24.688 109.663 24.6957 107.847 24.6957C106.032 24.6957 104.214 24.7016 102.399 24.6899C102.12 24.688 102.032 24.7384 102.051 25.045C102.16 26.8826 103.545 28.3728 105.393 28.6154C107.233 28.856 108.802 28.3573 110.001 26.871C110.141 26.6983 110.24 26.6633 110.449 26.7739C111.319 27.2396 112.201 27.6879 113.085 28.1264C113.29 28.2273 113.32 28.2952 113.188 28.499C112.119 30.16 110.648 31.2641 108.762 31.7744C106.55 32.3721 104.365 32.3759 102.236 31.4019C99.1716 29.9989 97.272 26.708 97.5934 23.3452C97.9186 19.9436 100.45 17.0408 103.755 16.3054C105.907 15.8261 107.987 16.0453 109.925 17.1417C112.148 18.401 113.28 20.4016 113.586 22.9241C113.644 23.3995 113.647 23.8769 113.647 24.3542H113.644V24.3523ZM109.378 21.95C109.291 21.6221 109.181 21.3078 109.01 21.0148C108.161 19.5536 106.298 18.89 104.549 19.4391C103.357 19.8136 102.542 20.5782 102.217 21.8239C102.114 22.2217 102.133 22.2353 102.531 22.2353H105.806C106.898 22.2353 108.035 22.2275 109.15 22.2411C109.397 22.245 109.437 22.1693 109.38 21.95H109.378ZM42.0392 24.4144C42.0334 24.6472 41.9531 24.6996 41.735 24.6996C39.8966 24.6899 38.0563 24.6938 36.2179 24.6938C34.3794 24.6938 32.5621 24.6977 30.7351 24.688C30.496 24.688 30.4348 24.7384 30.4463 24.9926C30.5362 26.8477 31.9193 28.3612 33.7788 28.6096C35.6172 28.856 37.1897 28.3631 38.3911 26.8748C38.5479 26.6789 38.6608 26.675 38.8674 26.7836C39.7206 27.2338 40.5776 27.6782 41.4442 28.0992C41.7063 28.2273 41.6987 28.3263 41.5533 28.5494C40.2276 30.583 38.3279 31.6696 35.9921 32.0344C34.213 32.3119 32.4683 32.2149 30.7944 31.4698C27.6609 30.0765 25.7268 26.9641 25.9928 23.5218C26.2281 20.4811 27.7661 18.2147 30.4769 16.9302C33.5626 15.4671 36.5852 15.7504 39.3342 17.8441C40.9507 19.0743 41.7216 20.8382 41.9722 22.8446C42.0373 23.3646 42.0526 23.8885 42.0373 24.4144H42.0392ZM37.8191 22.2353C37.754 21.69 37.5646 21.2224 37.2738 20.7974C36.3919 19.5071 34.6683 18.9327 33.0327 19.41C31.8122 19.7651 30.9609 20.5297 30.6223 21.8045C30.5094 22.2275 30.5228 22.2333 30.9437 22.2333H37.8191V22.2353Z", fill: textFill, stroke: textFill, strokeWidth: "2", mask: `url(#${maskId})` })] }));
611
+ return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 134 65", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-label": "Regcheq PLD", className: cn(logoFullAltVariants({ size }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M99.6017 60.8037V49.6037H104.21C105.202 49.6037 106.05 49.7637 106.754 50.0837C107.468 50.4037 108.018 50.8624 108.402 51.4597C108.786 52.057 108.978 52.7664 108.978 53.5877C108.978 54.409 108.786 55.1184 108.402 55.7157C108.018 56.313 107.468 56.7717 106.754 57.0917C106.05 57.4117 105.202 57.5717 104.21 57.5717H100.754L101.682 56.5957V60.8037H99.6017ZM101.682 56.8197L100.754 55.8117H104.114C105.031 55.8117 105.719 55.6197 106.178 55.2357C106.647 54.841 106.882 54.2917 106.882 53.5877C106.882 52.873 106.647 52.3237 106.178 51.9397C105.719 51.5557 105.031 51.3637 104.114 51.3637H100.754L101.682 50.3397V56.8197ZM111.095 60.8037V49.6037H113.175V59.0437H119.031V60.8037H111.095ZM120.713 60.8037V49.6037H125.609C126.825 49.6037 127.892 49.8384 128.809 50.3077C129.726 50.777 130.441 51.4277 130.953 52.2597C131.465 53.0917 131.721 54.073 131.721 55.2037C131.721 56.3237 131.465 57.305 130.953 58.1477C130.441 58.9797 129.726 59.6304 128.809 60.0997C127.892 60.569 126.825 60.8037 125.609 60.8037H120.713ZM122.793 59.0437H125.513C126.356 59.0437 127.081 58.8837 127.689 58.5637C128.308 58.2437 128.782 57.7957 129.113 57.2197C129.454 56.6437 129.625 55.9717 129.625 55.2037C129.625 54.425 129.454 53.753 129.113 53.1877C128.782 52.6117 128.308 52.1637 127.689 51.8437C127.081 51.5237 126.356 51.3637 125.513 51.3637H122.793V59.0437Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M38.3438 0.527344C38.3437 4.30979 38.3394 8.09207 38.3486 11.876C37.6319 11.8547 36.9158 11.8591 36.2031 11.876C36.2119 9.10874 36.2027 6.36275 36.2158 3.59961V3.59766C36.2158 3.41982 36.2027 3.10907 35.9639 2.89062C35.7949 2.73617 35.5837 2.69734 35.4277 2.6875L35.293 2.68457C30.0104 2.68942 24.7284 2.69067 19.4463 2.69043L3.59863 2.68457C3.46618 2.68457 3.17558 2.68327 2.95312 2.87988C2.71208 3.09301 2.69531 3.39836 2.69531 3.57617C2.70488 14.3122 2.70488 25.0491 2.69531 35.7852L2.7002 35.9287C2.71409 36.0918 2.76378 36.3017 2.93848 36.4619C3.15818 36.6631 3.44948 36.6621 3.57715 36.6621H3.57812C14.647 36.6544 25.7184 36.658 36.7881 36.6465C36.7625 37.3731 36.7681 38.0984 36.7871 38.8174C33.4204 38.8063 30.0534 38.8115 26.6904 38.8115H0.597656V0.527344H38.3438Z", fill: textFill, stroke: textFill }), jsxRuntime.jsx("mask", { id: maskId, fill: "white", children: jsxRuntime.jsx("path", { d: "M84.0587 18.2225C85.0133 17.1863 86.077 16.4257 87.395 16.2064C89.6888 15.8261 91.7893 16.2976 93.4938 18.0013C94.5631 19.0705 94.9037 20.4423 94.9017 21.9248C94.8979 25.0838 94.8979 28.2428 94.9075 31.4019C94.9075 31.6677 94.8157 31.6949 94.5938 31.6929C93.3522 31.6832 92.1106 31.6793 90.8691 31.6929C90.6127 31.6968 90.5458 31.6328 90.5477 31.3689C90.5592 28.5475 90.5535 25.7261 90.5554 22.9047C90.5554 22.1014 90.3583 21.3582 89.8973 20.7024C88.9082 19.2955 86.8785 19.0666 85.4227 20.2017C84.5255 20.9022 84.0434 21.8084 84.053 22.9921C84.074 25.7785 84.0549 28.565 84.0664 31.3495C84.0664 31.6231 84.0013 31.6929 83.7316 31.689C82.4901 31.6735 81.2485 31.6774 80.007 31.689C79.785 31.689 79.72 31.6347 79.72 31.4019C79.7257 23.1143 79.7257 14.8248 79.72 6.53726C79.72 6.29276 79.8003 6.25007 80.0146 6.25201C81.2676 6.25978 82.5207 6.26366 83.7737 6.25201C84.0281 6.25201 84.0664 6.34127 84.0664 6.57024C84.0606 10.2997 84.0626 14.0312 84.0626 17.7607V18.2205L84.0587 18.2244V18.2225ZM66.964 30.517C68.8464 31.9316 70.9813 32.3895 73.2827 32.0888C74.5108 31.9277 75.6778 31.5668 76.7299 30.8779C76.9404 30.7402 76.9633 30.6354 76.8447 30.4103C76.4124 29.5914 75.9953 28.7629 75.5936 27.9285C75.4846 27.7015 75.4176 27.6801 75.2034 27.814C74.1588 28.4699 73.0129 28.7182 71.8039 28.5106C70.0267 28.206 68.6474 26.7953 68.3337 25.0295C67.9874 23.0852 68.7679 21.2069 70.3577 20.2793C72.001 19.3208 73.6347 19.5187 75.2263 20.4443C75.41 20.551 75.4731 20.5607 75.5706 20.357C75.9246 19.6274 76.2995 18.9075 76.663 18.1837C77.0035 17.5045 77.0073 17.491 76.3206 17.1262C74.3061 16.057 72.1693 15.795 69.9712 16.3151C66.2332 17.1999 63.641 20.5219 63.687 24.1427C63.7482 26.8108 64.8577 28.9375 66.962 30.519H66.964V30.517ZM60.9647 16.8467C60.9571 21.9986 60.9685 27.1504 60.9552 32.3022C60.9494 34.231 60.3927 35.9754 59.046 37.3919C57.8809 38.6183 56.4136 39.2586 54.7952 39.5982C54.4337 39.6739 54.0568 39.6681 53.7067 39.8039H50.6707C50.2499 39.6176 49.7888 39.6312 49.3508 39.5283C47.1871 39.02 45.4558 37.9236 44.4171 35.8648C44.1894 35.4166 44.1913 35.4127 44.6352 35.1934C45.5917 34.72 46.552 34.2504 47.5085 33.775C47.6443 33.7071 47.7381 33.6295 47.8586 33.8293C48.6449 35.1275 49.8654 35.7212 51.2944 35.9483C52.3963 36.1248 53.4733 36.0356 54.4834 35.5175C55.9277 34.7762 56.5935 33.5402 56.6336 31.9335C56.6528 31.2117 56.6375 30.4899 56.6375 29.7758C56.5265 29.7156 56.5036 29.8088 56.4672 29.8534C53.8406 32.9678 49.0581 32.8281 46.3607 30.1716C44.4993 28.3399 43.7953 26.0579 43.9503 23.481C44.0651 21.5503 44.7232 19.8233 46.0412 18.401C47.7323 16.5751 49.8481 15.8765 52.2777 16.1268C53.9879 16.3034 55.4265 17.0602 56.6394 18.4456C56.6394 17.8674 56.6547 17.3765 56.6336 16.8855C56.6222 16.6119 56.6987 16.5324 56.9742 16.5363C58.2042 16.5518 59.4343 16.5498 60.6644 16.5363C60.9035 16.5343 60.9705 16.5984 60.9705 16.8448H60.9647V16.8467ZM56.7389 24.4357C56.8173 21.7851 55.174 19.8835 52.7368 19.8098C50.3474 19.736 48.5033 21.5484 48.4842 24.0845C48.465 26.5818 50.0777 28.3767 52.5723 28.4349C54.7914 28.5067 56.6719 26.7041 56.7369 24.4377H56.7389V24.4357ZM132.554 16.5091V39.3848C131.22 39.3848 129.887 39.377 128.556 39.3906C128.294 39.3906 128.211 39.3362 128.213 39.0529C128.225 36.0822 128.221 33.1094 128.221 30.1386V29.7797C128.012 29.9718 127.804 30.16 127.601 30.354C124.909 32.9212 120.63 32.6709 118.097 30.3016C116.119 28.4524 115.379 26.1006 115.553 23.4306C115.685 21.4106 116.421 19.6448 117.837 18.1876C120.567 15.3778 125.529 15.3002 128.139 18.3312C128.144 18.3389 128.158 18.3409 128.223 18.3777C128.223 18.0556 128.215 17.7626 128.225 17.4696C128.236 17.1708 128.095 16.7827 128.284 16.6003C128.473 16.4198 128.854 16.5479 129.151 16.546C130.174 16.5401 131.196 16.546 132.219 16.5421C132.332 16.5421 132.449 16.5712 132.556 16.5091H132.554ZM128.345 24.1912C128.353 21.6687 126.616 19.8175 124.232 19.8098C121.877 19.802 120.094 21.6376 120.077 24.0865C120.06 26.609 121.785 28.4252 124.207 28.4349C126.56 28.4446 128.336 26.6226 128.343 24.1912H128.345ZM26.0731 31.689H25.6905C23.9783 31.689 22.2643 31.6832 20.5521 31.6949C20.3168 31.6949 20.1791 31.6153 20.0413 31.4348C17.8108 28.4893 15.5668 25.5534 13.3477 22.5962C13.1181 22.2916 12.8713 22.3013 12.5786 22.3032C12.0372 22.3051 12.0372 22.3032 12.0372 22.8426C12.0372 25.6873 12.0334 28.53 12.043 31.3747C12.043 31.6347 11.9837 31.7007 11.7254 31.6968C10.4035 31.6813 9.08163 31.6832 7.75973 31.6968C7.53591 31.6968 7.47852 31.6405 7.47852 31.4116C7.48425 23.4733 7.48617 15.5369 7.47852 7.59867C7.47852 7.32119 7.56651 7.28238 7.80756 7.28432C10.4628 7.29208 13.1181 7.27268 15.7734 7.29596C17.2904 7.30955 18.7634 7.58509 20.1255 8.31275C21.7305 9.16847 22.8076 10.4705 23.3011 12.246C23.7832 13.9846 23.7583 15.729 23.1768 17.4347C22.4154 19.67 20.8486 21.0866 18.6601 21.8336C18.5415 21.8744 18.421 21.9112 18.3005 21.952C18.2814 21.9578 18.268 21.9811 18.2374 22.0083C20.8352 25.2177 23.4331 28.4291 26.0731 31.691V31.689ZM18.6448 13.5713C18.268 12.1761 17.1909 11.5164 15.8767 11.1962C14.6657 10.9032 13.4318 11.0177 12.2056 10.9925C11.9569 10.9866 12.0411 11.169 12.0411 11.2855C12.0353 12.4381 12.0372 13.5926 12.0372 14.7452C12.0372 15.8979 12.0372 17.099 12.0411 18.2749C12.0411 18.3777 11.9531 18.5543 12.1846 18.5485C13.3993 18.5174 14.6217 18.6571 15.825 18.3797C18.6066 17.7393 19.1843 15.5622 18.6467 13.5694L18.6448 13.5713ZM113.644 24.3523C113.644 24.6007 113.58 24.7054 113.295 24.7035C111.48 24.688 109.663 24.6957 107.847 24.6957C106.032 24.6957 104.214 24.7016 102.399 24.6899C102.12 24.688 102.032 24.7384 102.051 25.045C102.16 26.8826 103.545 28.3728 105.393 28.6154C107.233 28.856 108.802 28.3573 110.001 26.871C110.141 26.6983 110.24 26.6633 110.449 26.7739C111.319 27.2396 112.201 27.6879 113.085 28.1264C113.29 28.2273 113.32 28.2952 113.188 28.499C112.119 30.16 110.648 31.2641 108.762 31.7744C106.55 32.3721 104.365 32.3759 102.236 31.4019C99.1716 29.9989 97.272 26.708 97.5934 23.3452C97.9186 19.9436 100.45 17.0408 103.755 16.3054C105.907 15.8261 107.987 16.0453 109.925 17.1417C112.148 18.401 113.28 20.4016 113.586 22.9241C113.644 23.3995 113.647 23.8769 113.647 24.3542H113.644V24.3523ZM109.378 21.95C109.291 21.6221 109.181 21.3078 109.01 21.0148C108.161 19.5536 106.298 18.89 104.549 19.4391C103.357 19.8136 102.542 20.5782 102.217 21.8239C102.114 22.2217 102.133 22.2353 102.531 22.2353H105.806C106.898 22.2353 108.035 22.2275 109.15 22.2411C109.397 22.245 109.437 22.1693 109.38 21.95H109.378ZM42.0392 24.4144C42.0334 24.6472 41.9531 24.6996 41.735 24.6996C39.8966 24.6899 38.0563 24.6938 36.2179 24.6938C34.3794 24.6938 32.5621 24.6977 30.7351 24.688C30.496 24.688 30.4348 24.7384 30.4463 24.9926C30.5362 26.8477 31.9193 28.3612 33.7788 28.6096C35.6172 28.856 37.1897 28.3631 38.3911 26.8748C38.5479 26.6789 38.6608 26.675 38.8674 26.7836C39.7206 27.2338 40.5776 27.6782 41.4442 28.0992C41.7063 28.2273 41.6987 28.3263 41.5533 28.5494C40.2276 30.583 38.3279 31.6696 35.9921 32.0344C34.213 32.3119 32.4683 32.2149 30.7944 31.4698C27.6609 30.0765 25.7268 26.9641 25.9928 23.5218C26.2281 20.4811 27.7661 18.2147 30.4769 16.9302C33.5626 15.4671 36.5852 15.7504 39.3342 17.8441C40.9507 19.0743 41.7216 20.8382 41.9722 22.8446C42.0373 23.3646 42.0526 23.8885 42.0373 24.4144H42.0392ZM37.8191 22.2353C37.754 21.69 37.5646 21.2224 37.2738 20.7974C36.3919 19.5071 34.6683 18.9327 33.0327 19.41C31.8122 19.7651 30.9609 20.5297 30.6223 21.8045C30.5094 22.2275 30.5228 22.2333 30.9437 22.2333H37.8191V22.2353Z" }) }), jsxRuntime.jsx("path", { d: "M84.0587 18.2225C85.0133 17.1863 86.077 16.4257 87.395 16.2064C89.6888 15.8261 91.7893 16.2976 93.4938 18.0013C94.5631 19.0705 94.9037 20.4423 94.9017 21.9248C94.8979 25.0838 94.8979 28.2428 94.9075 31.4019C94.9075 31.6677 94.8157 31.6949 94.5938 31.6929C93.3522 31.6832 92.1106 31.6793 90.8691 31.6929C90.6127 31.6968 90.5458 31.6328 90.5477 31.3689C90.5592 28.5475 90.5535 25.7261 90.5554 22.9047C90.5554 22.1014 90.3583 21.3582 89.8973 20.7024C88.9082 19.2955 86.8785 19.0666 85.4227 20.2017C84.5255 20.9022 84.0434 21.8084 84.053 22.9921C84.074 25.7785 84.0549 28.565 84.0664 31.3495C84.0664 31.6231 84.0013 31.6929 83.7316 31.689C82.4901 31.6735 81.2485 31.6774 80.007 31.689C79.785 31.689 79.72 31.6347 79.72 31.4019C79.7257 23.1143 79.7257 14.8248 79.72 6.53726C79.72 6.29276 79.8003 6.25007 80.0146 6.25201C81.2676 6.25978 82.5207 6.26366 83.7737 6.25201C84.0281 6.25201 84.0664 6.34127 84.0664 6.57024C84.0606 10.2997 84.0626 14.0312 84.0626 17.7607V18.2205L84.0587 18.2244V18.2225ZM66.964 30.517C68.8464 31.9316 70.9813 32.3895 73.2827 32.0888C74.5108 31.9277 75.6778 31.5668 76.7299 30.8779C76.9404 30.7402 76.9633 30.6354 76.8447 30.4103C76.4124 29.5914 75.9953 28.7629 75.5936 27.9285C75.4846 27.7015 75.4176 27.6801 75.2034 27.814C74.1588 28.4699 73.0129 28.7182 71.8039 28.5106C70.0267 28.206 68.6474 26.7953 68.3337 25.0295C67.9874 23.0852 68.7679 21.2069 70.3577 20.2793C72.001 19.3208 73.6347 19.5187 75.2263 20.4443C75.41 20.551 75.4731 20.5607 75.5706 20.357C75.9246 19.6274 76.2995 18.9075 76.663 18.1837C77.0035 17.5045 77.0073 17.491 76.3206 17.1262C74.3061 16.057 72.1693 15.795 69.9712 16.3151C66.2332 17.1999 63.641 20.5219 63.687 24.1427C63.7482 26.8108 64.8577 28.9375 66.962 30.519H66.964V30.517ZM60.9647 16.8467C60.9571 21.9986 60.9685 27.1504 60.9552 32.3022C60.9494 34.231 60.3927 35.9754 59.046 37.3919C57.8809 38.6183 56.4136 39.2586 54.7952 39.5982C54.4337 39.6739 54.0568 39.6681 53.7067 39.8039H50.6707C50.2499 39.6176 49.7888 39.6312 49.3508 39.5283C47.1871 39.02 45.4558 37.9236 44.4171 35.8648C44.1894 35.4166 44.1913 35.4127 44.6352 35.1934C45.5917 34.72 46.552 34.2504 47.5085 33.775C47.6443 33.7071 47.7381 33.6295 47.8586 33.8293C48.6449 35.1275 49.8654 35.7212 51.2944 35.9483C52.3963 36.1248 53.4733 36.0356 54.4834 35.5175C55.9277 34.7762 56.5935 33.5402 56.6336 31.9335C56.6528 31.2117 56.6375 30.4899 56.6375 29.7758C56.5265 29.7156 56.5036 29.8088 56.4672 29.8534C53.8406 32.9678 49.0581 32.8281 46.3607 30.1716C44.4993 28.3399 43.7953 26.0579 43.9503 23.481C44.0651 21.5503 44.7232 19.8233 46.0412 18.401C47.7323 16.5751 49.8481 15.8765 52.2777 16.1268C53.9879 16.3034 55.4265 17.0602 56.6394 18.4456C56.6394 17.8674 56.6547 17.3765 56.6336 16.8855C56.6222 16.6119 56.6987 16.5324 56.9742 16.5363C58.2042 16.5518 59.4343 16.5498 60.6644 16.5363C60.9035 16.5343 60.9705 16.5984 60.9705 16.8448H60.9647V16.8467ZM56.7389 24.4357C56.8173 21.7851 55.174 19.8835 52.7368 19.8098C50.3474 19.736 48.5033 21.5484 48.4842 24.0845C48.465 26.5818 50.0777 28.3767 52.5723 28.4349C54.7914 28.5067 56.6719 26.7041 56.7369 24.4377H56.7389V24.4357ZM132.554 16.5091V39.3848C131.22 39.3848 129.887 39.377 128.556 39.3906C128.294 39.3906 128.211 39.3362 128.213 39.0529C128.225 36.0822 128.221 33.1094 128.221 30.1386V29.7797C128.012 29.9718 127.804 30.16 127.601 30.354C124.909 32.9212 120.63 32.6709 118.097 30.3016C116.119 28.4524 115.379 26.1006 115.553 23.4306C115.685 21.4106 116.421 19.6448 117.837 18.1876C120.567 15.3778 125.529 15.3002 128.139 18.3312C128.144 18.3389 128.158 18.3409 128.223 18.3777C128.223 18.0556 128.215 17.7626 128.225 17.4696C128.236 17.1708 128.095 16.7827 128.284 16.6003C128.473 16.4198 128.854 16.5479 129.151 16.546C130.174 16.5401 131.196 16.546 132.219 16.5421C132.332 16.5421 132.449 16.5712 132.556 16.5091H132.554ZM128.345 24.1912C128.353 21.6687 126.616 19.8175 124.232 19.8098C121.877 19.802 120.094 21.6376 120.077 24.0865C120.06 26.609 121.785 28.4252 124.207 28.4349C126.56 28.4446 128.336 26.6226 128.343 24.1912H128.345ZM26.0731 31.689H25.6905C23.9783 31.689 22.2643 31.6832 20.5521 31.6949C20.3168 31.6949 20.1791 31.6153 20.0413 31.4348C17.8108 28.4893 15.5668 25.5534 13.3477 22.5962C13.1181 22.2916 12.8713 22.3013 12.5786 22.3032C12.0372 22.3051 12.0372 22.3032 12.0372 22.8426C12.0372 25.6873 12.0334 28.53 12.043 31.3747C12.043 31.6347 11.9837 31.7007 11.7254 31.6968C10.4035 31.6813 9.08163 31.6832 7.75973 31.6968C7.53591 31.6968 7.47852 31.6405 7.47852 31.4116C7.48425 23.4733 7.48617 15.5369 7.47852 7.59867C7.47852 7.32119 7.56651 7.28238 7.80756 7.28432C10.4628 7.29208 13.1181 7.27268 15.7734 7.29596C17.2904 7.30955 18.7634 7.58509 20.1255 8.31275C21.7305 9.16847 22.8076 10.4705 23.3011 12.246C23.7832 13.9846 23.7583 15.729 23.1768 17.4347C22.4154 19.67 20.8486 21.0866 18.6601 21.8336C18.5415 21.8744 18.421 21.9112 18.3005 21.952C18.2814 21.9578 18.268 21.9811 18.2374 22.0083C20.8352 25.2177 23.4331 28.4291 26.0731 31.691V31.689ZM18.6448 13.5713C18.268 12.1761 17.1909 11.5164 15.8767 11.1962C14.6657 10.9032 13.4318 11.0177 12.2056 10.9925C11.9569 10.9866 12.0411 11.169 12.0411 11.2855C12.0353 12.4381 12.0372 13.5926 12.0372 14.7452C12.0372 15.8979 12.0372 17.099 12.0411 18.2749C12.0411 18.3777 11.9531 18.5543 12.1846 18.5485C13.3993 18.5174 14.6217 18.6571 15.825 18.3797C18.6066 17.7393 19.1843 15.5622 18.6467 13.5694L18.6448 13.5713ZM113.644 24.3523C113.644 24.6007 113.58 24.7054 113.295 24.7035C111.48 24.688 109.663 24.6957 107.847 24.6957C106.032 24.6957 104.214 24.7016 102.399 24.6899C102.12 24.688 102.032 24.7384 102.051 25.045C102.16 26.8826 103.545 28.3728 105.393 28.6154C107.233 28.856 108.802 28.3573 110.001 26.871C110.141 26.6983 110.24 26.6633 110.449 26.7739C111.319 27.2396 112.201 27.6879 113.085 28.1264C113.29 28.2273 113.32 28.2952 113.188 28.499C112.119 30.16 110.648 31.2641 108.762 31.7744C106.55 32.3721 104.365 32.3759 102.236 31.4019C99.1716 29.9989 97.272 26.708 97.5934 23.3452C97.9186 19.9436 100.45 17.0408 103.755 16.3054C105.907 15.8261 107.987 16.0453 109.925 17.1417C112.148 18.401 113.28 20.4016 113.586 22.9241C113.644 23.3995 113.647 23.8769 113.647 24.3542H113.644V24.3523ZM109.378 21.95C109.291 21.6221 109.181 21.3078 109.01 21.0148C108.161 19.5536 106.298 18.89 104.549 19.4391C103.357 19.8136 102.542 20.5782 102.217 21.8239C102.114 22.2217 102.133 22.2353 102.531 22.2353H105.806C106.898 22.2353 108.035 22.2275 109.15 22.2411C109.397 22.245 109.437 22.1693 109.38 21.95H109.378ZM42.0392 24.4144C42.0334 24.6472 41.9531 24.6996 41.735 24.6996C39.8966 24.6899 38.0563 24.6938 36.2179 24.6938C34.3794 24.6938 32.5621 24.6977 30.7351 24.688C30.496 24.688 30.4348 24.7384 30.4463 24.9926C30.5362 26.8477 31.9193 28.3612 33.7788 28.6096C35.6172 28.856 37.1897 28.3631 38.3911 26.8748C38.5479 26.6789 38.6608 26.675 38.8674 26.7836C39.7206 27.2338 40.5776 27.6782 41.4442 28.0992C41.7063 28.2273 41.6987 28.3263 41.5533 28.5494C40.2276 30.583 38.3279 31.6696 35.9921 32.0344C34.213 32.3119 32.4683 32.2149 30.7944 31.4698C27.6609 30.0765 25.7268 26.9641 25.9928 23.5218C26.2281 20.4811 27.7661 18.2147 30.4769 16.9302C33.5626 15.4671 36.5852 15.7504 39.3342 17.8441C40.9507 19.0743 41.7216 20.8382 41.9722 22.8446C42.0373 23.3646 42.0526 23.8885 42.0373 24.4144H42.0392ZM37.8191 22.2353C37.754 21.69 37.5646 21.2224 37.2738 20.7974C36.3919 19.5071 34.6683 18.9327 33.0327 19.41C31.8122 19.7651 30.9609 20.5297 30.6223 21.8045C30.5094 22.2275 30.5228 22.2333 30.9437 22.2333H37.8191V22.2353Z", fill: textFill, stroke: textFill, strokeWidth: "2", mask: `url(#${maskId})` })] }));
522
612
  });
523
613
  LogoFullAlt.displayName = "LogoFullAlt";
524
614
 
@@ -558,7 +648,7 @@ const TEXT_FILL = {
558
648
  const BRACKET_PATH = RQ_BRACKET_PATH;
559
649
  const Isotype = React__namespace.forwardRef(({ className, size, variant = "on-dark", ...props }, ref) => {
560
650
  const textFill = TEXT_FILL[variant ?? "on-dark"];
561
- return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 110 100", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", "aria-label": "Regcheq", className: cn(isotypeCva({ size, variant }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M0 0.152031C0.380053 0.152031 0.760107 0.152031 1.14016 0.152031C33.0646 0.152031 65.0651 0.152031 96.9896 0.152031C97.7497 0.152031 98.1298 0.532084 98.1298 1.29219C98.1298 10.8695 98.1298 20.3709 98.1298 29.9482C98.1298 30.7083 97.9778 31.0123 97.1417 31.0123C95.0894 31.0123 93.0371 31.0123 91.0608 31.0123C90.3767 31.0123 90.2246 30.7843 90.2246 30.1002C90.2246 23.1072 90.2246 16.0383 90.2246 9.04529C90.2246 8.20917 89.9967 7.98112 89.1606 7.98112C62.4048 7.98112 35.649 7.98112 8.89321 7.98112C8.1331 7.98112 7.90513 8.13313 7.90513 8.96925C7.90513 35.801 7.90513 62.6328 7.90513 89.3885C7.90513 90.2247 8.1331 90.3007 8.89321 90.3007C37.0172 90.3007 65.1411 90.3007 93.1891 90.3007C94.0252 90.3007 94.3292 90.4527 94.2532 91.3648C94.1772 93.3411 94.2532 95.3174 94.2532 97.2937C94.2532 98.0538 94.1012 98.2058 93.3411 98.2058C84.6759 98.2058 76.0106 98.2058 67.4214 98.2058C44.9983 98.2058 22.4991 98.2058 0.0759921 98.2058V0L0 0.152031Z", fill: "#358DFF" }), jsxRuntime.jsx("path", { d: "M108.163 41.5018C105.579 41.5018 102.995 41.5018 100.41 41.5018C99.65 41.5018 98.6619 41.1977 98.2058 41.6538C97.7498 42.1099 98.0538 43.098 98.0538 43.8581C98.0538 44.6182 98.0538 45.3023 98.0538 46.1385C97.9018 46.0624 97.8258 46.0624 97.8258 45.9864C91.2128 38.3854 78.6711 38.6134 71.7542 45.6064C68.1817 49.2549 66.2814 53.6635 65.9774 58.6802C65.5213 65.3692 67.4216 71.222 72.4383 75.8586C78.8232 81.7874 89.6927 82.3955 96.5336 76.0106C97.0657 75.5546 97.5977 75.0225 98.1298 74.5664V75.4786C98.1298 82.9276 98.1298 90.3006 98.1298 97.7497C98.1298 98.4338 98.3578 98.5858 98.9659 98.5858C102.31 98.5858 105.731 98.5858 109.075 98.5858V41.4258C108.771 41.5778 108.467 41.5018 108.239 41.5018H108.163ZM87.8684 71.222C81.7115 71.222 77.379 66.6614 77.379 60.3525C77.379 54.2716 81.9395 49.6349 87.8684 49.6349C93.8732 49.6349 98.2819 54.2716 98.2819 60.5805C98.2819 66.6613 93.7972 71.222 87.7924 71.1459L87.8684 71.222Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M46.1385 55.0317C46.4425 54.9557 46.7466 54.8037 47.0507 54.7277C52.5994 52.8274 56.552 49.3309 58.5283 43.7061C59.9725 39.4495 60.0485 35.117 58.8323 30.7083C57.6161 26.2997 54.8798 23.0312 50.7752 20.9029C47.3547 19.0787 43.6302 18.3946 39.7537 18.3946C33.0647 18.3946 26.2997 18.3946 19.5347 18.3946C18.9267 18.3946 18.6986 18.4706 18.6986 19.1547C18.6986 38.9935 18.6986 58.8323 18.6986 78.671C18.6986 79.2791 18.8507 79.3552 19.3828 79.3552C22.7272 79.3552 26.0717 79.3552 29.4161 79.3552C30.1002 79.3552 30.2523 79.2031 30.2523 78.519C30.2523 71.45 30.2523 64.305 30.2523 57.236C30.2523 50.167 30.2523 55.8678 31.6205 55.8678C32.3806 55.8678 32.9886 55.8678 33.5967 56.628C39.2215 64.001 44.9223 71.374 50.5471 78.671C50.9272 79.1271 51.2312 79.3552 51.8393 79.3552C56.1719 79.3552 60.5046 79.3552 64.8372 79.3552H65.8253C59.1363 71.222 52.5234 63.1649 45.9865 55.1837C45.9865 55.1837 46.0625 55.0317 46.1385 55.0317ZM39.8296 46.0625C36.7892 46.7465 33.6728 46.4425 30.6324 46.5185C30.0243 46.5185 30.2523 46.0625 30.2523 45.8344C30.2523 42.87 30.2523 39.9816 30.2523 37.0172C30.2523 34.0528 30.2523 31.2404 30.2523 28.352C30.2523 28.0479 30.0243 27.5919 30.7084 27.5919C33.8248 27.5919 36.9412 27.3638 39.9816 28.1239C43.3261 28.8841 46.0625 30.5563 46.9747 34.0528C48.3429 38.9935 46.8986 44.4662 39.8296 46.0625Z", fill: textFill })] }));
651
+ return (jsxRuntime.jsxs("svg", { ref: ref, viewBox: "0 0 110 100", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-label": "Regcheq", className: cn(isotypeCva({ size, variant }), className), ...props, children: [jsxRuntime.jsx("path", { d: "M0 0.152031C0.380053 0.152031 0.760107 0.152031 1.14016 0.152031C33.0646 0.152031 65.0651 0.152031 96.9896 0.152031C97.7497 0.152031 98.1298 0.532084 98.1298 1.29219C98.1298 10.8695 98.1298 20.3709 98.1298 29.9482C98.1298 30.7083 97.9778 31.0123 97.1417 31.0123C95.0894 31.0123 93.0371 31.0123 91.0608 31.0123C90.3767 31.0123 90.2246 30.7843 90.2246 30.1002C90.2246 23.1072 90.2246 16.0383 90.2246 9.04529C90.2246 8.20917 89.9967 7.98112 89.1606 7.98112C62.4048 7.98112 35.649 7.98112 8.89321 7.98112C8.1331 7.98112 7.90513 8.13313 7.90513 8.96925C7.90513 35.801 7.90513 62.6328 7.90513 89.3885C7.90513 90.2247 8.1331 90.3007 8.89321 90.3007C37.0172 90.3007 65.1411 90.3007 93.1891 90.3007C94.0252 90.3007 94.3292 90.4527 94.2532 91.3648C94.1772 93.3411 94.2532 95.3174 94.2532 97.2937C94.2532 98.0538 94.1012 98.2058 93.3411 98.2058C84.6759 98.2058 76.0106 98.2058 67.4214 98.2058C44.9983 98.2058 22.4991 98.2058 0.0759921 98.2058V0L0 0.152031Z", fill: "#358DFF" }), jsxRuntime.jsx("path", { d: "M108.163 41.5018C105.579 41.5018 102.995 41.5018 100.41 41.5018C99.65 41.5018 98.6619 41.1977 98.2058 41.6538C97.7498 42.1099 98.0538 43.098 98.0538 43.8581C98.0538 44.6182 98.0538 45.3023 98.0538 46.1385C97.9018 46.0624 97.8258 46.0624 97.8258 45.9864C91.2128 38.3854 78.6711 38.6134 71.7542 45.6064C68.1817 49.2549 66.2814 53.6635 65.9774 58.6802C65.5213 65.3692 67.4216 71.222 72.4383 75.8586C78.8232 81.7874 89.6927 82.3955 96.5336 76.0106C97.0657 75.5546 97.5977 75.0225 98.1298 74.5664V75.4786C98.1298 82.9276 98.1298 90.3006 98.1298 97.7497C98.1298 98.4338 98.3578 98.5858 98.9659 98.5858C102.31 98.5858 105.731 98.5858 109.075 98.5858V41.4258C108.771 41.5778 108.467 41.5018 108.239 41.5018H108.163ZM87.8684 71.222C81.7115 71.222 77.379 66.6614 77.379 60.3525C77.379 54.2716 81.9395 49.6349 87.8684 49.6349C93.8732 49.6349 98.2819 54.2716 98.2819 60.5805C98.2819 66.6613 93.7972 71.222 87.7924 71.1459L87.8684 71.222Z", fill: textFill }), jsxRuntime.jsx("path", { d: "M46.1385 55.0317C46.4425 54.9557 46.7466 54.8037 47.0507 54.7277C52.5994 52.8274 56.552 49.3309 58.5283 43.7061C59.9725 39.4495 60.0485 35.117 58.8323 30.7083C57.6161 26.2997 54.8798 23.0312 50.7752 20.9029C47.3547 19.0787 43.6302 18.3946 39.7537 18.3946C33.0647 18.3946 26.2997 18.3946 19.5347 18.3946C18.9267 18.3946 18.6986 18.4706 18.6986 19.1547C18.6986 38.9935 18.6986 58.8323 18.6986 78.671C18.6986 79.2791 18.8507 79.3552 19.3828 79.3552C22.7272 79.3552 26.0717 79.3552 29.4161 79.3552C30.1002 79.3552 30.2523 79.2031 30.2523 78.519C30.2523 71.45 30.2523 64.305 30.2523 57.236C30.2523 50.167 30.2523 55.8678 31.6205 55.8678C32.3806 55.8678 32.9886 55.8678 33.5967 56.628C39.2215 64.001 44.9223 71.374 50.5471 78.671C50.9272 79.1271 51.2312 79.3552 51.8393 79.3552C56.1719 79.3552 60.5046 79.3552 64.8372 79.3552H65.8253C59.1363 71.222 52.5234 63.1649 45.9865 55.1837C45.9865 55.1837 46.0625 55.0317 46.1385 55.0317ZM39.8296 46.0625C36.7892 46.7465 33.6728 46.4425 30.6324 46.5185C30.0243 46.5185 30.2523 46.0625 30.2523 45.8344C30.2523 42.87 30.2523 39.9816 30.2523 37.0172C30.2523 34.0528 30.2523 31.2404 30.2523 28.352C30.2523 28.0479 30.0243 27.5919 30.7084 27.5919C33.8248 27.5919 36.9412 27.3638 39.9816 28.1239C43.3261 28.8841 46.0625 30.5563 46.9747 34.0528C48.3429 38.9935 46.8986 44.4662 39.8296 46.0625Z", fill: textFill })] }));
562
652
  });
563
653
  Isotype.displayName = "Isotype";
564
654
 
@@ -583,6 +673,57 @@ SelectItem.displayName = SelectPrimitive__namespace.Item.displayName;
583
673
  const SelectSeparator = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(SelectPrimitive__namespace.Separator, { ref: ref, className: cn("bg-muted -mx-1 my-1 h-px", className), ...props })));
584
674
  SelectSeparator.displayName = SelectPrimitive__namespace.Separator.displayName;
585
675
 
676
+ const NavigationMenu = React__namespace.forwardRef(({ className, children, ...props }, ref) => (jsxRuntime.jsxs(NavigationMenuPrimitive__namespace.Root, { ref: ref, className: cn("relative z-10 flex max-w-max flex-1 items-center justify-center", className), ...props, children: [children, jsxRuntime.jsx(NavigationMenuViewport, {})] })));
677
+ NavigationMenu.displayName = NavigationMenuPrimitive__namespace.Root.displayName;
678
+ const NavigationMenuList = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(NavigationMenuPrimitive__namespace.List, { ref: ref, className: cn("group flex flex-1 list-none items-center justify-center gap-1", className), ...props })));
679
+ NavigationMenuList.displayName = NavigationMenuPrimitive__namespace.List.displayName;
680
+ const NavigationMenuItem = NavigationMenuPrimitive__namespace.Item;
681
+ const navigationMenuTriggerStyle = classVarianceAuthority.cva("group inline-flex h-9 w-max items-center justify-center rounded-md px-4 py-2 text-sm font-medium text-rq-text transition-colors hover:bg-rq-surface-raised focus:bg-rq-surface-raised focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-rq-surface-selected data-[state=open]:bg-rq-surface-selected");
682
+ const NavigationMenuTrigger = React__namespace.forwardRef(({ className, children, ...props }, ref) => (jsxRuntime.jsxs(NavigationMenuPrimitive__namespace.Trigger, { ref: ref, className: cn(navigationMenuTriggerStyle(), "group", className), ...props, children: [children, jsxRuntime.jsx(lucideReact.ChevronDown, { className: "relative top-px ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180", "aria-hidden": "true" })] })));
683
+ NavigationMenuTrigger.displayName = NavigationMenuPrimitive__namespace.Trigger.displayName;
684
+ const NavigationMenuContent = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(NavigationMenuPrimitive__namespace.Content, { ref: ref, className: cn("top-0 left-0 w-full", "data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out", "data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out", "data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52", "data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52", "md:absolute md:w-auto", className), ...props })));
685
+ NavigationMenuContent.displayName = NavigationMenuPrimitive__namespace.Content.displayName;
686
+ const NavigationMenuLink = NavigationMenuPrimitive__namespace.Link;
687
+ const NavigationMenuViewport = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx("div", { className: "absolute top-full left-0 flex justify-center", children: jsxRuntime.jsx(NavigationMenuPrimitive__namespace.Viewport, { ref: ref, className: cn("origin-top-center border-rq-border bg-rq-surface text-rq-text shadow-rq-card relative mt-1.5 overflow-hidden rounded-md border", "h-(--radix-navigation-menu-viewport-height) w-full", "data-[state=open]:animate-in data-[state=closed]:animate-out", "data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90", "md:w-(--radix-navigation-menu-viewport-width)", className), ...props }) })));
688
+ NavigationMenuViewport.displayName =
689
+ NavigationMenuPrimitive__namespace.Viewport.displayName;
690
+ const NavigationMenuIndicator = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(NavigationMenuPrimitive__namespace.Indicator, { ref: ref, className: cn("top-full z-1 flex h-1.5 items-end justify-center overflow-hidden", "data-[state=visible]:animate-in data-[state=hidden]:animate-out", "data-[state=hidden]:fade-out data-[state=visible]:fade-in", className), ...props, children: jsxRuntime.jsx("div", { className: "bg-rq-border relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm shadow-md" }) })));
691
+ NavigationMenuIndicator.displayName =
692
+ NavigationMenuPrimitive__namespace.Indicator.displayName;
693
+
694
+ const Sheet = DialogPrimitive__namespace.Root;
695
+ const SheetTrigger = DialogPrimitive__namespace.Trigger;
696
+ const SheetClose = DialogPrimitive__namespace.Close;
697
+ const SheetPortal = DialogPrimitive__namespace.Portal;
698
+ const SheetOverlay = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(DialogPrimitive__namespace.Overlay, { ref: ref, className: cn("fixed inset-0 z-50 bg-black/50", "data-[state=open]:animate-in data-[state=closed]:animate-out", "data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0", className), ...props })));
699
+ SheetOverlay.displayName = DialogPrimitive__namespace.Overlay.displayName;
700
+ const sheetVariants = classVarianceAuthority.cva([
701
+ "fixed z-50 flex flex-col bg-rq-surface shadow-lg",
702
+ "transition ease-in-out",
703
+ "data-[state=open]:animate-in data-[state=closed]:animate-out",
704
+ "data-[state=closed]:duration-300 data-[state=open]:duration-500",
705
+ ], {
706
+ variants: {
707
+ side: {
708
+ top: "inset-x-0 top-0 border-b border-rq-border data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",
709
+ bottom: "inset-x-0 bottom-0 border-t border-rq-border data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",
710
+ left: "inset-y-0 left-0 h-full w-3/4 border-r border-rq-border data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",
711
+ right: "inset-y-0 right-0 h-full w-3/4 border-l border-rq-border data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm",
712
+ },
713
+ },
714
+ defaultVariants: { side: "right" },
715
+ });
716
+ const SheetContent = React__namespace.forwardRef(({ className, children, side, ...props }, ref) => (jsxRuntime.jsxs(SheetPortal, { children: [jsxRuntime.jsx(SheetOverlay, {}), jsxRuntime.jsxs(DialogPrimitive__namespace.Content, { ref: ref, className: cn(sheetVariants({ side }), className), ...props, children: [children, jsxRuntime.jsxs(DialogPrimitive__namespace.Close, { className: "absolute right-4 top-4 rounded-sm opacity-70 transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-rq-focus focus:ring-offset-2 disabled:pointer-events-none", children: [jsxRuntime.jsx(lucideReact.X, { className: "h-4 w-4" }), jsxRuntime.jsx("span", { className: "sr-only", children: "Cerrar" })] })] })] })));
717
+ SheetContent.displayName = DialogPrimitive__namespace.Content.displayName;
718
+ const SheetHeader = ({ className, ...props }) => (jsxRuntime.jsx("div", { className: cn("flex flex-col gap-1.5 p-6", className), ...props }));
719
+ SheetHeader.displayName = "SheetHeader";
720
+ const SheetFooter = ({ className, ...props }) => (jsxRuntime.jsx("div", { className: cn("mt-auto flex flex-col gap-2 p-6", className), ...props }));
721
+ SheetFooter.displayName = "SheetFooter";
722
+ const SheetTitle = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(DialogPrimitive__namespace.Title, { ref: ref, className: cn("text-lg font-semibold text-rq-text", className), ...props })));
723
+ SheetTitle.displayName = DialogPrimitive__namespace.Title.displayName;
724
+ const SheetDescription = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(DialogPrimitive__namespace.Description, { ref: ref, className: cn("text-sm text-rq-text-subtle", className), ...props })));
725
+ SheetDescription.displayName = DialogPrimitive__namespace.Description.displayName;
726
+
586
727
  /**
587
728
  * Wrapper que activa los tokens de diseño de Regcheq UI (data-rq-ui).
588
729
  * Envuelve las secciones de la app que usan componentes de regcheq-ui.
@@ -680,10 +821,12 @@ SidebarToggle.displayName = "SidebarToggle";
680
821
  const SidebarItem = React__namespace.forwardRef(({ className, style, icon, label, active = false, asChild = false, trailing, ...props }, ref) => {
681
822
  const { isExpanded } = useSidebarContext();
682
823
  const Comp = asChild ? reactSlot.Slot : "button";
683
- return (jsxRuntime.jsxs(Comp, { ref: ref, type: asChild ? undefined : "button", "aria-label": !isExpanded ? label : undefined, "aria-current": active ? "page" : undefined, style: style, className: cn("focus-visible:ring-rq-focus flex w-full cursor-pointer items-center gap-3 py-3 text-sm font-medium transition-colors focus-visible:ring-2 focus-visible:outline-none", active
684
- ? isExpanded
685
- ? "bg-rq-brand-subtle text-rq-text ml-2 rounded-l-md px-3"
686
- : "bg-rq-brand-subtle text-rq-text mx-2 rounded-md px-3"
824
+ const ariaLabel = isExpanded ? undefined : label;
825
+ const activeClass = isExpanded
826
+ ? "bg-rq-brand-subtle text-rq-text ml-2 rounded-l-md px-3"
827
+ : "bg-rq-brand-subtle text-rq-text mx-2 rounded-md px-3";
828
+ return (jsxRuntime.jsxs(Comp, { ref: ref, type: asChild ? undefined : "button", "aria-label": ariaLabel, "aria-current": active ? "page" : undefined, style: style, className: cn("focus-visible:ring-rq-focus flex w-full cursor-pointer items-center gap-3 py-3 text-sm font-medium transition-colors focus-visible:ring-2 focus-visible:outline-none", active
829
+ ? activeClass
687
830
  : "text-rq-brand-on hover:bg-rq-brand-on/10 hover:text-rq-brand-on mx-2 rounded-md bg-transparent px-3", className), ...props, children: [jsxRuntime.jsx("span", { className: "shrink-0", children: icon }), jsxRuntime.jsx("span", { className: cn("overflow-hidden whitespace-nowrap transition-[max-width,opacity] duration-300 ease-in-out", isExpanded ? "max-w-full opacity-100" : "max-w-0 opacity-0"), children: label }), trailing && isExpanded && (jsxRuntime.jsx("span", { className: "ml-auto shrink-0", children: trailing }))] }));
688
831
  });
689
832
  SidebarItem.displayName = "SidebarItem";
@@ -705,19 +848,20 @@ const DrawerPortal = vaul.Drawer.Portal;
705
848
  const DrawerClose = vaul.Drawer.Close;
706
849
  const DrawerOverlay = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(vaul.Drawer.Overlay, { ref: ref, className: cn("fixed inset-0 z-50 bg-black/80", className), ...props })));
707
850
  DrawerOverlay.displayName = vaul.Drawer.Overlay.displayName;
708
- const DrawerContent = React__namespace.forwardRef(({ className, children, ...props }, ref) => (jsxRuntime.jsxs(DrawerPortal, { children: [jsxRuntime.jsx(DrawerOverlay, {}), jsxRuntime.jsxs(vaul.Drawer.Content, { ref: ref, className: cn("fixed z-50 flex flex-col border bg-white", "data-[vaul-drawer-direction=bottom]:inset-x-0 data-[vaul-drawer-direction=bottom]:bottom-0 data-[vaul-drawer-direction=bottom]:mt-24 data-[vaul-drawer-direction=bottom]:h-auto data-[vaul-drawer-direction=bottom]:rounded-t-[10px]", "data-[vaul-drawer-direction=top]:inset-x-0 data-[vaul-drawer-direction=top]:top-0 data-[vaul-drawer-direction=top]:mb-24 data-[vaul-drawer-direction=top]:h-auto data-[vaul-drawer-direction=top]:rounded-b-[10px]", "data-[vaul-drawer-direction=left]:inset-y-0 data-[vaul-drawer-direction=left]:left-0 data-[vaul-drawer-direction=left]:w-[320px] data-[vaul-drawer-direction=left]:rounded-r-[10px]", "data-[vaul-drawer-direction=right]:inset-y-0 data-[vaul-drawer-direction=right]:right-0 data-[vaul-drawer-direction=right]:w-[320px] data-[vaul-drawer-direction=right]:rounded-l-[10px]", className), ...props, children: [jsxRuntime.jsx("div", { className: "mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted" }), children] })] })));
851
+ const DrawerContent = React__namespace.forwardRef(({ className, children, ...props }, ref) => (jsxRuntime.jsxs(DrawerPortal, { children: [jsxRuntime.jsx(DrawerOverlay, {}), jsxRuntime.jsxs(vaul.Drawer.Content, { ref: ref, className: cn("fixed z-50 flex flex-col border bg-white", "data-[vaul-drawer-direction=bottom]:inset-x-0 data-[vaul-drawer-direction=bottom]:bottom-0 data-[vaul-drawer-direction=bottom]:mt-24 data-[vaul-drawer-direction=bottom]:h-auto data-[vaul-drawer-direction=bottom]:rounded-t-[10px]", "data-[vaul-drawer-direction=top]:inset-x-0 data-[vaul-drawer-direction=top]:top-0 data-[vaul-drawer-direction=top]:mb-24 data-[vaul-drawer-direction=top]:h-auto data-[vaul-drawer-direction=top]:rounded-b-[10px]", "data-[vaul-drawer-direction=left]:inset-y-0 data-[vaul-drawer-direction=left]:left-0 data-[vaul-drawer-direction=left]:w-[320px] data-[vaul-drawer-direction=left]:rounded-r-[10px]", "data-[vaul-drawer-direction=right]:inset-y-0 data-[vaul-drawer-direction=right]:right-0 data-[vaul-drawer-direction=right]:w-[320px] data-[vaul-drawer-direction=right]:rounded-l-[10px]", className), ...props, children: [jsxRuntime.jsx("div", { className: "bg-muted mx-auto mt-4 h-2 w-25 rounded-full" }), children] })] })));
709
852
  DrawerContent.displayName = "DrawerContent";
710
853
  const DrawerHeader = ({ className, ...props }) => (jsxRuntime.jsx("div", { className: cn("grid gap-1.5 p-4 text-center sm:text-left", className), ...props }));
711
854
  DrawerHeader.displayName = "DrawerHeader";
712
855
  const DrawerFooter = ({ className, ...props }) => (jsxRuntime.jsx("div", { className: cn("mt-auto flex flex-col gap-2 p-4", className), ...props }));
713
856
  DrawerFooter.displayName = "DrawerFooter";
714
- const DrawerTitle = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(vaul.Drawer.Title, { ref: ref, className: cn("text-lg font-semibold leading-none tracking-tight", className), ...props })));
857
+ const DrawerTitle = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(vaul.Drawer.Title, { ref: ref, className: cn("text-lg leading-none font-semibold tracking-tight", className), ...props })));
715
858
  DrawerTitle.displayName = vaul.Drawer.Title.displayName;
716
- const DrawerDescription = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(vaul.Drawer.Description, { ref: ref, className: cn("text-sm text-muted-foreground", className), ...props })));
859
+ const DrawerDescription = React__namespace.forwardRef(({ className, ...props }, ref) => (jsxRuntime.jsx(vaul.Drawer.Description, { ref: ref, className: cn("text-muted-foreground text-sm", className), ...props })));
717
860
  DrawerDescription.displayName = vaul.Drawer.Description.displayName;
718
861
 
719
862
  exports.RQ_BRACKET_PATH = BRACKET_PATH;
720
863
  exports.RqAlert = Alert;
864
+ exports.RqAvatar = Avatar;
721
865
  exports.RqButton = Button;
722
866
  exports.RqCalendar = Calendar;
723
867
  exports.RqCalendarDayButton = CalendarDayButton;
@@ -733,6 +877,21 @@ exports.RqDrawerOverlay = DrawerOverlay;
733
877
  exports.RqDrawerPortal = DrawerPortal;
734
878
  exports.RqDrawerTitle = DrawerTitle;
735
879
  exports.RqDrawerTrigger = DrawerTrigger;
880
+ exports.RqDropdownMenu = DropdownMenu;
881
+ exports.RqDropdownMenuCheckboxItem = DropdownMenuCheckboxItem;
882
+ exports.RqDropdownMenuContent = DropdownMenuContent;
883
+ exports.RqDropdownMenuGroup = DropdownMenuGroup;
884
+ exports.RqDropdownMenuItem = DropdownMenuItem;
885
+ exports.RqDropdownMenuLabel = DropdownMenuLabel;
886
+ exports.RqDropdownMenuPortal = DropdownMenuPortal;
887
+ exports.RqDropdownMenuRadioGroup = DropdownMenuRadioGroup;
888
+ exports.RqDropdownMenuRadioItem = DropdownMenuRadioItem;
889
+ exports.RqDropdownMenuSeparator = DropdownMenuSeparator;
890
+ exports.RqDropdownMenuShortcut = DropdownMenuShortcut;
891
+ exports.RqDropdownMenuSub = DropdownMenuSub;
892
+ exports.RqDropdownMenuSubContent = DropdownMenuSubContent;
893
+ exports.RqDropdownMenuSubTrigger = DropdownMenuSubTrigger;
894
+ exports.RqDropdownMenuTrigger = DropdownMenuTrigger;
736
895
  exports.RqField = Field;
737
896
  exports.RqFieldContent = FieldContent;
738
897
  exports.RqFieldDescription = FieldDescription;
@@ -761,6 +920,14 @@ exports.RqLogo = Logo;
761
920
  exports.RqLogoCollapsed = LogoCollapsed;
762
921
  exports.RqLogoFull = LogoFull;
763
922
  exports.RqLogoFullAlt = LogoFullAlt;
923
+ exports.RqNavigationMenu = NavigationMenu;
924
+ exports.RqNavigationMenuContent = NavigationMenuContent;
925
+ exports.RqNavigationMenuIndicator = NavigationMenuIndicator;
926
+ exports.RqNavigationMenuItem = NavigationMenuItem;
927
+ exports.RqNavigationMenuLink = NavigationMenuLink;
928
+ exports.RqNavigationMenuList = NavigationMenuList;
929
+ exports.RqNavigationMenuTrigger = NavigationMenuTrigger;
930
+ exports.RqNavigationMenuViewport = NavigationMenuViewport;
764
931
  exports.RqPasswordInput = PasswordInput;
765
932
  exports.RqPopover = Popover;
766
933
  exports.RqPopoverContent = PopoverContent;
@@ -777,6 +944,16 @@ exports.RqSelectSeparator = SelectSeparator;
777
944
  exports.RqSelectTrigger = SelectTrigger;
778
945
  exports.RqSelectValue = SelectValue;
779
946
  exports.RqSeparator = Separator;
947
+ exports.RqSheet = Sheet;
948
+ exports.RqSheetClose = SheetClose;
949
+ exports.RqSheetContent = SheetContent;
950
+ exports.RqSheetDescription = SheetDescription;
951
+ exports.RqSheetFooter = SheetFooter;
952
+ exports.RqSheetHeader = SheetHeader;
953
+ exports.RqSheetOverlay = SheetOverlay;
954
+ exports.RqSheetPortal = SheetPortal;
955
+ exports.RqSheetTitle = SheetTitle;
956
+ exports.RqSheetTrigger = SheetTrigger;
780
957
  exports.RqSidebar = Sidebar;
781
958
  exports.RqSidebarContent = SidebarContent;
782
959
  exports.RqSidebarFooter = SidebarFooter;
@@ -788,11 +965,14 @@ exports.RqSidebarToggle = SidebarToggle;
788
965
  exports.RqTextarea = Textarea;
789
966
  exports.cn = cn;
790
967
  exports.rqAlertVariants = alertVariants;
968
+ exports.rqAvatarVariants = avatarVariants;
791
969
  exports.rqButtonVariants = buttonVariants;
792
970
  exports.rqLogoCollapsedVariants = logoCollapsedVariants;
793
971
  exports.rqLogoFullAltVariants = logoFullAltVariants;
794
972
  exports.rqLogoFullVariants = logoFullVariants;
795
973
  exports.rqLogoVariants = logoVariants;
974
+ exports.rqNavigationMenuTriggerStyle = navigationMenuTriggerStyle;
975
+ exports.rqSheetVariants = sheetVariants;
796
976
  exports.useRqSidebar = useSidebar;
797
977
  exports.useRqSidebarContext = useSidebarContext;
798
978
  //# sourceMappingURL=index.js.map