@customafk/lunas-ui 0.0.2 → 0.0.3-a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Atoms/AspectRatio/index.js +2 -0
- package/dist/Atoms/Avatar/index.js +3 -3
- package/dist/Atoms/Badge/index.js +2 -0
- package/dist/Atoms/Breadcrumb/index.js +7 -23
- package/dist/Atoms/Button/index.d.ts +2 -2
- package/dist/Atoms/Button/index.js +2 -0
- package/dist/Atoms/Card/index.js +2 -0
- package/dist/Atoms/Checkbox/index.d.ts +6 -0
- package/dist/Atoms/Checkbox/index.js +276 -0
- package/dist/Atoms/Command/index.d.ts +7 -7
- package/dist/Atoms/Command/index.js +39 -50
- package/dist/Atoms/Dialog/index.js +16 -31
- package/dist/Atoms/DropdownMenu/index.js +2 -0
- package/dist/Atoms/Form/index.js +32 -21
- package/dist/Atoms/Input/index.d.ts +5 -1
- package/dist/Atoms/Input/index.js +45 -543
- package/dist/Atoms/Label/index.js +2 -0
- package/dist/Atoms/MenuItem/index.d.ts +14 -0
- package/dist/Atoms/MenuItem/index.js +287 -0
- package/dist/Atoms/Money/index.js +2 -0
- package/dist/Atoms/Navbar/index.js +2 -0
- package/dist/Atoms/NavigationMenu/index.js +2 -0
- package/dist/Atoms/NumberInput/index.d.ts +7 -0
- package/dist/Atoms/NumberInput/index.js +321 -0
- package/dist/Atoms/Popover/index.d.ts +8 -0
- package/dist/Atoms/Popover/index.js +286 -0
- package/dist/Atoms/Progress/index.js +2 -0
- package/dist/Atoms/QuantityBtn/index.js +2 -0
- package/dist/Atoms/RadioGroup/index.d.ts +7 -0
- package/dist/Atoms/RadioGroup/index.js +285 -0
- package/dist/Atoms/ScrollBar/index.js +4 -2
- package/dist/Atoms/Select/index.js +2 -0
- package/dist/Atoms/Sheet/index.d.ts +29 -0
- package/dist/Atoms/Sheet/index.js +422 -0
- package/dist/Atoms/Slider/index.d.ts +6 -0
- package/dist/Atoms/Slider/index.js +286 -0
- package/dist/Atoms/SmallQuantityBtn/index.d.ts +9 -0
- package/dist/Atoms/SmallQuantityBtn/index.js +110 -0
- package/dist/Atoms/Switch/index.d.ts +6 -0
- package/dist/Atoms/Switch/index.js +293 -0
- package/dist/Atoms/Tabs/index.d.ts +9 -0
- package/dist/Atoms/Tabs/index.js +304 -0
- package/dist/Atoms/Textarea/index.d.ts +5 -0
- package/dist/Atoms/Textarea/index.js +283 -0
- package/dist/Atoms/Tooltip/index.d.ts +10 -0
- package/dist/Atoms/Tooltip/index.js +289 -0
- package/dist/Atoms/UserAvatar/index.d.ts +2 -2
- package/dist/Atoms/UserAvatar/index.js +24 -28
- package/dist/Atoms/XButton/index.d.ts +10 -0
- package/dist/Atoms/XButton/index.js +309 -0
- package/dist/Authentication/SignIn/index.d.ts +1 -1
- package/dist/Authentication/SignIn/index.js +129 -74
- package/dist/Authentication/SignUp/index.d.ts +5 -5
- package/dist/Authentication/SignUp/index.js +181 -110
- package/dist/Authentication/ThankYou/index.js +13 -4
- package/dist/Ecommerce/Categories/index.d.ts +33 -0
- package/dist/Ecommerce/Categories/index.js +1426 -0
- package/dist/Icons/index.d.ts +5 -3
- package/dist/Icons/index.js +126 -97
- package/dist/Molecules/AuthenForm/index.js +30 -21
- package/dist/Molecules/Search/index.js +46 -57
- package/dist/Molecules/UserDropdown/index.js +42 -33
- package/dist/Organisms/Header/index.d.ts +25 -3
- package/dist/Organisms/Header/index.js +585 -324
- package/dist/hooks/index.d.ts +1 -54
- package/dist/hooks/index.js +3 -127
- package/dist/{types-BgHhiNa-.d.ts → types-BlE003QY.d.ts} +1 -1
- package/package.json +85 -41
|
@@ -280,7 +280,7 @@ import { z } from "zod";
|
|
|
280
280
|
var SignUpSchema = z.object({
|
|
281
281
|
fullname: z.string({ required_error: "Vui l\xF2ng nh\u1EADp h\u1ECD v\xE0 t\xEAn" }).min(2, {
|
|
282
282
|
message: "H\u1ECD v\xE0 t\xEAn t\u1ED1i thi\u1EC3u 2 k\xFD t\u1EF1"
|
|
283
|
-
}).regex(/^[
|
|
283
|
+
}).regex(/^[^\d!"#$%&'()*+,./:;<=>?@[\\\]^_{|}-]*$/, {
|
|
284
284
|
message: "H\u1ECD v\xE0 t\xEAn kh\xF4ng ch\u1EE9a k\xFD t\u1EF1 \u0111\u1EB7c bi\u1EC7t"
|
|
285
285
|
}),
|
|
286
286
|
email: z.string({ required_error: "Y\xEAu c\u1EA7u nh\u1EADp e-mail" }).email("Vui l\xF2ng nh\u1EADp e-mail h\u1EE3p l\u1EC7"),
|
|
@@ -370,9 +370,9 @@ var Button_default = Button;
|
|
|
370
370
|
// packages/Atoms/Form/index.tsx
|
|
371
371
|
import * as React2 from "react";
|
|
372
372
|
import {
|
|
373
|
-
Controller
|
|
374
|
-
FormProvider
|
|
375
|
-
useFormContext
|
|
373
|
+
Controller,
|
|
374
|
+
FormProvider,
|
|
375
|
+
useFormContext
|
|
376
376
|
} from "react-hook-form";
|
|
377
377
|
|
|
378
378
|
// packages/Atoms/Label/index.tsx
|
|
@@ -389,17 +389,17 @@ Label.displayName = LabelPrimitive.Root.displayName;
|
|
|
389
389
|
// packages/Atoms/Form/index.tsx
|
|
390
390
|
import { Slot as Slot2 } from "@radix-ui/react-slot";
|
|
391
391
|
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
392
|
-
var Form =
|
|
392
|
+
var Form = FormProvider;
|
|
393
393
|
var FormFieldContext = React2.createContext({});
|
|
394
394
|
var FormField = ({
|
|
395
395
|
...props
|
|
396
396
|
}) => {
|
|
397
|
-
return /* @__PURE__ */ jsx4(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ jsx4(
|
|
397
|
+
return /* @__PURE__ */ jsx4(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ jsx4(Controller, { ...props }) });
|
|
398
398
|
};
|
|
399
399
|
var useFormField = () => {
|
|
400
400
|
const fieldContext = React2.useContext(FormFieldContext);
|
|
401
401
|
const itemContext = React2.useContext(FormItemContext);
|
|
402
|
-
const { getFieldState, formState } =
|
|
402
|
+
const { getFieldState, formState } = useFormContext();
|
|
403
403
|
const fieldState = getFieldState(fieldContext.name, formState);
|
|
404
404
|
if (!fieldContext) {
|
|
405
405
|
throw new Error("useFormField should be used within <FormField>");
|
|
@@ -416,55 +416,64 @@ var useFormField = () => {
|
|
|
416
416
|
};
|
|
417
417
|
var FormItemContext = React2.createContext({});
|
|
418
418
|
var FormItem = React2.forwardRef(
|
|
419
|
-
({ className, ...props },
|
|
419
|
+
({ className, ...props }, ref) => {
|
|
420
420
|
const id = React2.useId();
|
|
421
|
-
return /* @__PURE__ */ jsx4(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsx4("div", { ref
|
|
421
|
+
return /* @__PURE__ */ jsx4(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsx4("div", { ref, className: cn("space-y-2", className), ...props }) });
|
|
422
422
|
}
|
|
423
423
|
);
|
|
424
424
|
FormItem.displayName = "FormItem";
|
|
425
|
-
var FormLabel = React2.forwardRef(({ className, ...props },
|
|
425
|
+
var FormLabel = React2.forwardRef(({ className, ...props }, ref) => {
|
|
426
426
|
const { error, formItemId } = useFormField();
|
|
427
427
|
return /* @__PURE__ */ jsx4(
|
|
428
428
|
Label,
|
|
429
429
|
{
|
|
430
|
-
ref
|
|
431
|
-
className: cn(error && "text-destructive", className),
|
|
430
|
+
ref,
|
|
431
|
+
className: cn(error && "text-ui-destructive-500", className),
|
|
432
432
|
htmlFor: formItemId,
|
|
433
433
|
...props
|
|
434
434
|
}
|
|
435
435
|
);
|
|
436
436
|
});
|
|
437
437
|
FormLabel.displayName = "FormLabel";
|
|
438
|
-
var FormControl = React2.forwardRef(({ ...props },
|
|
439
|
-
const { formItemId } = useFormField();
|
|
440
|
-
return /* @__PURE__ */ jsx4(
|
|
438
|
+
var FormControl = React2.forwardRef(({ ...props }, ref) => {
|
|
439
|
+
const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
440
|
+
return /* @__PURE__ */ jsx4(
|
|
441
|
+
Slot2,
|
|
442
|
+
{
|
|
443
|
+
ref,
|
|
444
|
+
id: formItemId,
|
|
445
|
+
"aria-describedby": !error ? `${formDescriptionId}` : `${formDescriptionId} ${formMessageId}`,
|
|
446
|
+
"aria-invalid": !!error,
|
|
447
|
+
...props
|
|
448
|
+
}
|
|
449
|
+
);
|
|
441
450
|
});
|
|
442
451
|
FormControl.displayName = "FormControl";
|
|
443
|
-
var FormDescription = React2.forwardRef(({ className, ...props },
|
|
452
|
+
var FormDescription = React2.forwardRef(({ className, ...props }, ref) => {
|
|
444
453
|
const { formDescriptionId } = useFormField();
|
|
445
454
|
return /* @__PURE__ */ jsx4(
|
|
446
455
|
"p",
|
|
447
456
|
{
|
|
448
|
-
ref
|
|
457
|
+
ref,
|
|
449
458
|
id: formDescriptionId,
|
|
450
|
-
className: cn("text-
|
|
459
|
+
className: cn("text-sm text-ui-text-500", className),
|
|
451
460
|
...props
|
|
452
461
|
}
|
|
453
462
|
);
|
|
454
463
|
});
|
|
455
464
|
FormDescription.displayName = "FormDescription";
|
|
456
|
-
var FormMessage = React2.forwardRef(({ className, children, ...props },
|
|
465
|
+
var FormMessage = React2.forwardRef(({ className, children, ...props }, ref) => {
|
|
457
466
|
const { error, formMessageId } = useFormField();
|
|
458
467
|
const body = error ? String(error?.message) : children;
|
|
459
468
|
if (!body) {
|
|
460
|
-
return
|
|
469
|
+
return null;
|
|
461
470
|
}
|
|
462
471
|
return /* @__PURE__ */ jsx4(
|
|
463
472
|
"p",
|
|
464
473
|
{
|
|
465
|
-
ref
|
|
474
|
+
ref,
|
|
466
475
|
id: formMessageId,
|
|
467
|
-
className: cn("text-
|
|
476
|
+
className: cn("text-sm font-medium text-ui-destructive-500", className),
|
|
468
477
|
...props,
|
|
469
478
|
children: body
|
|
470
479
|
}
|
|
@@ -509,7 +518,7 @@ var Lucide2MailIcon_default = Lucide2MainIcon;
|
|
|
509
518
|
|
|
510
519
|
// packages/Authentication/Atoms/EmailInput/index.tsx
|
|
511
520
|
import { jsx as jsx6, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
512
|
-
var EmailInput = ({ isErrored = false, onChange }) => {
|
|
521
|
+
var EmailInput = ({ isErrored = false, onChange, onBlur }) => {
|
|
513
522
|
const containerRef = useRef(null);
|
|
514
523
|
const inputRef = useRef(null);
|
|
515
524
|
const handleFocusContainer = useCallback(() => {
|
|
@@ -547,7 +556,8 @@ var EmailInput = ({ isErrored = false, onChange }) => {
|
|
|
547
556
|
ref: inputRef,
|
|
548
557
|
type: "text",
|
|
549
558
|
placeholder: "Email ng\u01B0\u1EDDi d\xF9ng",
|
|
550
|
-
onChange
|
|
559
|
+
onChange,
|
|
560
|
+
onBlur
|
|
551
561
|
}
|
|
552
562
|
)
|
|
553
563
|
]
|
|
@@ -598,7 +608,7 @@ var ErrorMsg = ({ message = "" }) => {
|
|
|
598
608
|
className: cn(
|
|
599
609
|
"flex h-0 items-center gap-x-1 overflow-auto text-ui-small-note font-normal",
|
|
600
610
|
message && "h-4",
|
|
601
|
-
"transition-
|
|
611
|
+
"transition-none duration-300 ease-in-out",
|
|
602
612
|
"[&>p]:text-ui-destructive-600"
|
|
603
613
|
),
|
|
604
614
|
role: "alert",
|
|
@@ -645,7 +655,7 @@ var Lucide2UserIcon_default = Lucide2UserIcon;
|
|
|
645
655
|
|
|
646
656
|
// packages/Authentication/Atoms/FullNameInput/index.tsx
|
|
647
657
|
import { jsx as jsx10, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
648
|
-
var FullNameInput = ({ isErrored = false, onChange }) => {
|
|
658
|
+
var FullNameInput = ({ isErrored = false, onChange, onBlur }) => {
|
|
649
659
|
const containerRef = useRef2(null);
|
|
650
660
|
const inputRef = useRef2(null);
|
|
651
661
|
const handleFocusContainer = useCallback2(() => {
|
|
@@ -682,8 +692,9 @@ var FullNameInput = ({ isErrored = false, onChange }) => {
|
|
|
682
692
|
id: "fullname",
|
|
683
693
|
ref: inputRef,
|
|
684
694
|
type: "text",
|
|
685
|
-
placeholder: "
|
|
686
|
-
onChange
|
|
695
|
+
placeholder: "H\u1ECD v\xE0 t\xEAn",
|
|
696
|
+
onChange,
|
|
697
|
+
onBlur
|
|
687
698
|
}
|
|
688
699
|
)
|
|
689
700
|
]
|
|
@@ -799,7 +810,7 @@ var Lucide2LockIcon_default = Lucide2LockIcon;
|
|
|
799
810
|
|
|
800
811
|
// packages/Authentication/Atoms/PasswordInput/index.tsx
|
|
801
812
|
import { jsx as jsx14, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
802
|
-
var PasswordInput = ({ isErrored, placeholder, onChange }) => {
|
|
813
|
+
var PasswordInput = ({ isErrored, placeholder, onChange, onBlur }) => {
|
|
803
814
|
const containerRef = useRef3(null);
|
|
804
815
|
const inputRef = useRef3(null);
|
|
805
816
|
const [showPassword, setShowPassword] = useState(false);
|
|
@@ -841,7 +852,8 @@ var PasswordInput = ({ isErrored, placeholder, onChange }) => {
|
|
|
841
852
|
ref: inputRef,
|
|
842
853
|
type: showPassword ? "text" : "password",
|
|
843
854
|
placeholder: placeholder ?? "M\u1EADt kh\u1EA9u",
|
|
844
|
-
onChange
|
|
855
|
+
onChange,
|
|
856
|
+
onBlur
|
|
845
857
|
}
|
|
846
858
|
),
|
|
847
859
|
/* @__PURE__ */ jsx14("button", { type: "button", onClick: toggleShowPassword, className: "p-2", children: showPassword ? /* @__PURE__ */ jsx14(Lucide2EyeOffIcon_default, { size: 16, color: "#9CA3AF" }) : /* @__PURE__ */ jsx14(Lucide2EyeIcon_default, { size: 16, color: "#9CA3AF" }) })
|
|
@@ -852,6 +864,35 @@ var PasswordInput = ({ isErrored, placeholder, onChange }) => {
|
|
|
852
864
|
var MemoizedPasswordInput = memo5(PasswordInput);
|
|
853
865
|
var PasswordInput_default = MemoizedPasswordInput;
|
|
854
866
|
|
|
867
|
+
// packages/Icons/Lucide2LoadingIcon.tsx
|
|
868
|
+
import { jsx as jsx15, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
869
|
+
var Lucide2LoadingIcon = ({ size, color }) => {
|
|
870
|
+
return /* @__PURE__ */ jsxs9(
|
|
871
|
+
"svg",
|
|
872
|
+
{
|
|
873
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
874
|
+
width: size ?? 16,
|
|
875
|
+
height: size ?? 16,
|
|
876
|
+
viewBox: "0 0 16 16",
|
|
877
|
+
fill: color ?? "currentColor",
|
|
878
|
+
children: [
|
|
879
|
+
/* @__PURE__ */ jsx15("g", { clipPath: "url(#clip0_1948_196)", children: /* @__PURE__ */ jsx15(
|
|
880
|
+
"path",
|
|
881
|
+
{
|
|
882
|
+
d: "M8 1.33333V3.99999M10.8 5.19999L12.7333 3.26666M12 7.99999H14.6667M10.8 10.8L12.7333 12.7333M8 12V14.6667M3.26667 12.7333L5.2 10.8M1.33333 7.99999H4M3.26667 3.26666L5.2 5.19999",
|
|
883
|
+
stroke: color ?? "currentColor",
|
|
884
|
+
strokeWidth: "2",
|
|
885
|
+
strokeLinecap: "round",
|
|
886
|
+
strokeLinejoin: "round"
|
|
887
|
+
}
|
|
888
|
+
) }),
|
|
889
|
+
/* @__PURE__ */ jsx15("defs", { children: /* @__PURE__ */ jsx15("clipPath", { id: "clip0_1948_196", children: /* @__PURE__ */ jsx15("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
890
|
+
]
|
|
891
|
+
}
|
|
892
|
+
);
|
|
893
|
+
};
|
|
894
|
+
var Lucide2LoadingIcon_default = Lucide2LoadingIcon;
|
|
895
|
+
|
|
855
896
|
// packages/Layout/Flex/index.tsx
|
|
856
897
|
import { forwardRef as forwardRef4, memo as memo6, useMemo } from "react";
|
|
857
898
|
|
|
@@ -1154,7 +1195,7 @@ var commonLayout = cva4("", {
|
|
|
1154
1195
|
});
|
|
1155
1196
|
|
|
1156
1197
|
// packages/Layout/Flex/index.tsx
|
|
1157
|
-
import { jsx as
|
|
1198
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
1158
1199
|
var Flex = memo6(
|
|
1159
1200
|
forwardRef4(
|
|
1160
1201
|
({
|
|
@@ -1237,7 +1278,7 @@ var Flex = memo6(
|
|
|
1237
1278
|
height: heightValue
|
|
1238
1279
|
};
|
|
1239
1280
|
}, [width, height]);
|
|
1240
|
-
return /* @__PURE__ */
|
|
1281
|
+
return /* @__PURE__ */ jsx16(
|
|
1241
1282
|
"div",
|
|
1242
1283
|
{
|
|
1243
1284
|
ref: reference,
|
|
@@ -1281,7 +1322,7 @@ var Flex_default = Flex;
|
|
|
1281
1322
|
// packages/Authentication/SignUp/components/Form.tsx
|
|
1282
1323
|
import { ErrorMessage } from "@hookform/error-message";
|
|
1283
1324
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
1284
|
-
import { jsx as
|
|
1325
|
+
import { jsx as jsx17, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1285
1326
|
var Form2 = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
1286
1327
|
const form = useForm({
|
|
1287
1328
|
resolver: zodResolver(SignUpSchema),
|
|
@@ -1289,116 +1330,127 @@ var Form2 = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
|
1289
1330
|
email: "",
|
|
1290
1331
|
fullname: "",
|
|
1291
1332
|
password: ""
|
|
1292
|
-
}
|
|
1333
|
+
},
|
|
1334
|
+
mode: "onBlur"
|
|
1293
1335
|
});
|
|
1294
1336
|
const [activeType, setActiveType] = useState2("email");
|
|
1337
|
+
const [isSubmitting, setIsSubmitting] = useState2(false);
|
|
1295
1338
|
const {
|
|
1296
1339
|
control,
|
|
1297
1340
|
handleSubmit,
|
|
1298
1341
|
formState: { errors, isDirty, isValid }
|
|
1299
1342
|
} = form;
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1343
|
+
const handleOnSubmit = (values) => {
|
|
1344
|
+
setIsSubmitting(true);
|
|
1345
|
+
onSubmit(values).finally(() => setIsSubmitting(false));
|
|
1346
|
+
};
|
|
1347
|
+
return /* @__PURE__ */ jsx17(Form, { ...form, children: /* @__PURE__ */ jsxs10("form", { onSubmit: handleSubmit(handleOnSubmit), className: "mt-6 flex w-full flex-col gap-y-6", children: [
|
|
1348
|
+
/* @__PURE__ */ jsxs10("div", { className: "relative h-24", children: [
|
|
1349
|
+
/* @__PURE__ */ jsxs10(
|
|
1303
1350
|
Flex_default,
|
|
1304
1351
|
{
|
|
1305
1352
|
"data-active": activeType === "email",
|
|
1306
1353
|
vertical: true,
|
|
1307
|
-
gapY: "4",
|
|
1308
1354
|
width: "full",
|
|
1309
1355
|
className: cn(
|
|
1310
1356
|
"absolute -left-full top-0 opacity-0",
|
|
1311
1357
|
"data-[active=true]:opacity-100",
|
|
1312
1358
|
"data-[active=true]:left-0",
|
|
1313
|
-
"transition-
|
|
1359
|
+
"transition-[left_opacity] duration-300"
|
|
1314
1360
|
),
|
|
1315
1361
|
children: [
|
|
1316
|
-
/* @__PURE__ */
|
|
1317
|
-
/* @__PURE__ */
|
|
1362
|
+
/* @__PURE__ */ jsxs10(Flex_default, { vertical: true, width: "full", align: "start", gapY: "1", pb: errors.email ? "1" : "4", children: [
|
|
1363
|
+
/* @__PURE__ */ jsx17(
|
|
1318
1364
|
FormField,
|
|
1319
1365
|
{
|
|
1320
1366
|
name: "email",
|
|
1321
1367
|
control,
|
|
1322
|
-
render: ({ field: { onChange } }) => /* @__PURE__ */
|
|
1368
|
+
render: ({ field: { onChange, onBlur } }) => /* @__PURE__ */ jsx17(EmailInput_default, { onChange, onBlur })
|
|
1323
1369
|
}
|
|
1324
1370
|
),
|
|
1325
|
-
/* @__PURE__ */
|
|
1371
|
+
/* @__PURE__ */ jsx17(
|
|
1326
1372
|
ErrorMessage,
|
|
1327
1373
|
{
|
|
1328
1374
|
name: "email",
|
|
1329
1375
|
errors,
|
|
1330
|
-
render: ({ message }) => /* @__PURE__ */
|
|
1376
|
+
render: ({ message }) => /* @__PURE__ */ jsx17(ErrorMsg_default, { message })
|
|
1331
1377
|
}
|
|
1332
1378
|
)
|
|
1333
1379
|
] }),
|
|
1334
|
-
/* @__PURE__ */
|
|
1335
|
-
/* @__PURE__ */
|
|
1380
|
+
/* @__PURE__ */ jsxs10(Flex_default, { vertical: true, width: "full", align: "start", gapY: "1", children: [
|
|
1381
|
+
/* @__PURE__ */ jsx17(
|
|
1336
1382
|
FormField,
|
|
1337
1383
|
{
|
|
1338
1384
|
name: "fullname",
|
|
1339
1385
|
control,
|
|
1340
|
-
render: ({ field: { onChange } }) => /* @__PURE__ */
|
|
1386
|
+
render: ({ field: { onChange, onBlur } }) => /* @__PURE__ */ jsx17(FullNameInput_default, { onChange, onBlur })
|
|
1341
1387
|
}
|
|
1342
1388
|
),
|
|
1343
|
-
/* @__PURE__ */
|
|
1389
|
+
/* @__PURE__ */ jsx17(
|
|
1344
1390
|
ErrorMessage,
|
|
1345
1391
|
{
|
|
1346
1392
|
name: "fullname",
|
|
1347
1393
|
errors,
|
|
1348
|
-
render: ({ message }) => /* @__PURE__ */
|
|
1394
|
+
render: ({ message }) => /* @__PURE__ */ jsx17(ErrorMsg_default, { message })
|
|
1349
1395
|
}
|
|
1350
1396
|
)
|
|
1351
1397
|
] })
|
|
1352
1398
|
]
|
|
1353
1399
|
}
|
|
1354
1400
|
),
|
|
1355
|
-
/* @__PURE__ */
|
|
1401
|
+
/* @__PURE__ */ jsxs10(
|
|
1356
1402
|
Flex_default,
|
|
1357
1403
|
{
|
|
1358
1404
|
"data-active": activeType === "password",
|
|
1359
1405
|
vertical: true,
|
|
1360
|
-
gapY: "4",
|
|
1361
1406
|
width: "full",
|
|
1362
1407
|
className: cn(
|
|
1363
1408
|
"absolute left-full top-0 opacity-0",
|
|
1364
1409
|
"data-[active=true]:opacity-100",
|
|
1365
1410
|
"data-[active=true]:left-0",
|
|
1366
|
-
"transition-
|
|
1411
|
+
"transition-[left_opacity] duration-300"
|
|
1367
1412
|
),
|
|
1368
1413
|
children: [
|
|
1369
|
-
/* @__PURE__ */
|
|
1370
|
-
/* @__PURE__ */
|
|
1414
|
+
/* @__PURE__ */ jsxs10(Flex_default, { vertical: true, width: "full", align: "start", gapY: "1", pb: errors.password ? "1" : "4", children: [
|
|
1415
|
+
/* @__PURE__ */ jsx17(
|
|
1371
1416
|
FormField,
|
|
1372
1417
|
{
|
|
1373
1418
|
name: "password",
|
|
1374
1419
|
control,
|
|
1375
|
-
render: ({ field: { onChange } }) => /* @__PURE__ */
|
|
1420
|
+
render: ({ field: { onChange, onBlur } }) => /* @__PURE__ */ jsx17(PasswordInput_default, { onChange, onBlur })
|
|
1376
1421
|
}
|
|
1377
1422
|
),
|
|
1378
|
-
/* @__PURE__ */
|
|
1423
|
+
/* @__PURE__ */ jsx17(
|
|
1379
1424
|
ErrorMessage,
|
|
1380
1425
|
{
|
|
1381
1426
|
name: "password",
|
|
1382
1427
|
errors,
|
|
1383
|
-
render: ({ message }) => /* @__PURE__ */
|
|
1428
|
+
render: ({ message }) => /* @__PURE__ */ jsx17(ErrorMsg_default, { message })
|
|
1384
1429
|
}
|
|
1385
1430
|
)
|
|
1386
1431
|
] }),
|
|
1387
|
-
/* @__PURE__ */
|
|
1388
|
-
/* @__PURE__ */
|
|
1432
|
+
/* @__PURE__ */ jsxs10(Flex_default, { vertical: true, width: "full", align: "start", gapY: "1", children: [
|
|
1433
|
+
/* @__PURE__ */ jsx17(
|
|
1389
1434
|
FormField,
|
|
1390
1435
|
{
|
|
1391
1436
|
name: "confirmPassword",
|
|
1392
1437
|
control,
|
|
1393
|
-
render: ({ field: { onChange } }) => /* @__PURE__ */
|
|
1438
|
+
render: ({ field: { onChange, onBlur } }) => /* @__PURE__ */ jsx17(
|
|
1439
|
+
PasswordInput_default,
|
|
1440
|
+
{
|
|
1441
|
+
placeholder: "Nh\u1EADp l\u1EA1i m\u1EADt kh\u1EA9u",
|
|
1442
|
+
onChange,
|
|
1443
|
+
onBlur
|
|
1444
|
+
}
|
|
1445
|
+
)
|
|
1394
1446
|
}
|
|
1395
1447
|
),
|
|
1396
|
-
/* @__PURE__ */
|
|
1448
|
+
/* @__PURE__ */ jsx17(
|
|
1397
1449
|
ErrorMessage,
|
|
1398
1450
|
{
|
|
1399
1451
|
name: "confirmPassword",
|
|
1400
1452
|
errors,
|
|
1401
|
-
render: ({ message }) => /* @__PURE__ */
|
|
1453
|
+
render: ({ message }) => /* @__PURE__ */ jsx17(ErrorMsg_default, { message })
|
|
1402
1454
|
}
|
|
1403
1455
|
)
|
|
1404
1456
|
] })
|
|
@@ -1406,40 +1458,59 @@ var Form2 = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
|
1406
1458
|
}
|
|
1407
1459
|
)
|
|
1408
1460
|
] }),
|
|
1409
|
-
/* @__PURE__ */
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1461
|
+
/* @__PURE__ */ jsxs10(
|
|
1462
|
+
Flex_default,
|
|
1463
|
+
{
|
|
1464
|
+
gapX: "2",
|
|
1465
|
+
width: "full",
|
|
1466
|
+
pt: errors.fullname && errors.email || errors.confirmPassword && errors.password ? "3" : errors.confirmPassword || errors.fullname ? "1" : "0",
|
|
1467
|
+
className: "overflow-visible",
|
|
1468
|
+
children: [
|
|
1469
|
+
/* @__PURE__ */ jsx17(
|
|
1470
|
+
Badge_default,
|
|
1471
|
+
{
|
|
1472
|
+
isActivated: activeType === "email",
|
|
1473
|
+
onClick: () => setActiveType("email")
|
|
1474
|
+
}
|
|
1475
|
+
),
|
|
1476
|
+
/* @__PURE__ */ jsx17(
|
|
1477
|
+
Badge_default,
|
|
1478
|
+
{
|
|
1479
|
+
isActivated: activeType === "password",
|
|
1480
|
+
onClick: () => setActiveType("password")
|
|
1481
|
+
}
|
|
1482
|
+
)
|
|
1483
|
+
]
|
|
1484
|
+
}
|
|
1485
|
+
),
|
|
1486
|
+
/* @__PURE__ */ jsxs10(Flex_default, { vertical: true, gapY: "3", width: "full", className: "overflow-visible", children: [
|
|
1487
|
+
/* @__PURE__ */ jsxs10(
|
|
1427
1488
|
Button_default,
|
|
1428
1489
|
{
|
|
1429
|
-
disabled: !isDirty || !isValid,
|
|
1490
|
+
disabled: !isDirty || !isValid || isSubmitting,
|
|
1430
1491
|
type: "submit",
|
|
1431
|
-
className:
|
|
1432
|
-
|
|
1492
|
+
className: cn(
|
|
1493
|
+
"w-full rounded-sm px-3 py-2 text-ui-p font-bold text-ui-white",
|
|
1494
|
+
!isSubmitting && "[&_svg]:hidden",
|
|
1495
|
+
isSubmitting && "[&_span]:hidden",
|
|
1496
|
+
isSubmitting && "[&_svg]:block",
|
|
1497
|
+
isSubmitting && "[&_svg]:animate-spin",
|
|
1498
|
+
isSubmitting && "opacity-60"
|
|
1499
|
+
),
|
|
1500
|
+
children: [
|
|
1501
|
+
/* @__PURE__ */ jsx17("span", { children: "\u0110\u0103ng k\xFD" }),
|
|
1502
|
+
/* @__PURE__ */ jsx17(Lucide2LoadingIcon_default, { size: 24 })
|
|
1503
|
+
]
|
|
1433
1504
|
}
|
|
1434
1505
|
),
|
|
1435
|
-
/* @__PURE__ */
|
|
1506
|
+
/* @__PURE__ */ jsxs10(
|
|
1436
1507
|
Flex_default,
|
|
1437
1508
|
{
|
|
1438
1509
|
justify: "between",
|
|
1439
1510
|
width: "full",
|
|
1440
1511
|
className: "font-medium text-ui-tertiary-400 *:text-ui-small-note",
|
|
1441
1512
|
children: [
|
|
1442
|
-
/* @__PURE__ */
|
|
1513
|
+
/* @__PURE__ */ jsx17(
|
|
1443
1514
|
"button",
|
|
1444
1515
|
{
|
|
1445
1516
|
type: "button",
|
|
@@ -1452,7 +1523,7 @@ var Form2 = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
|
1452
1523
|
children: "Qu\xEAn m\u1EADt kh\u1EA9u"
|
|
1453
1524
|
}
|
|
1454
1525
|
),
|
|
1455
|
-
/* @__PURE__ */
|
|
1526
|
+
/* @__PURE__ */ jsx17(
|
|
1456
1527
|
"button",
|
|
1457
1528
|
{
|
|
1458
1529
|
type: "button",
|
|
@@ -1462,7 +1533,7 @@ var Form2 = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
|
1462
1533
|
"transition-colors duration-200"
|
|
1463
1534
|
),
|
|
1464
1535
|
onClick: onSignUp,
|
|
1465
|
-
children: "
|
|
1536
|
+
children: "\u0110\xE3 c\xF3 t\xE0i kho\u1EA3n"
|
|
1466
1537
|
}
|
|
1467
1538
|
)
|
|
1468
1539
|
]
|
|
@@ -1478,9 +1549,9 @@ var Form_default = MemoizedForm;
|
|
|
1478
1549
|
import { memo as memo8 } from "react";
|
|
1479
1550
|
|
|
1480
1551
|
// packages/Icons/DefaultLogoWithIcon.tsx
|
|
1481
|
-
import { jsx as
|
|
1552
|
+
import { jsx as jsx18, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1482
1553
|
var DefaultLogoWithIcon = ({ width, height }) => {
|
|
1483
|
-
return /* @__PURE__ */
|
|
1554
|
+
return /* @__PURE__ */ jsxs11(
|
|
1484
1555
|
"svg",
|
|
1485
1556
|
{
|
|
1486
1557
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1489,71 +1560,71 @@ var DefaultLogoWithIcon = ({ width, height }) => {
|
|
|
1489
1560
|
viewBox: "0 0 104 64",
|
|
1490
1561
|
fill: "none",
|
|
1491
1562
|
children: [
|
|
1492
|
-
/* @__PURE__ */
|
|
1493
|
-
/* @__PURE__ */
|
|
1563
|
+
/* @__PURE__ */ jsxs11("g", { clipPath: "url(#clip0_1154_13915)", children: [
|
|
1564
|
+
/* @__PURE__ */ jsx18(
|
|
1494
1565
|
"path",
|
|
1495
1566
|
{
|
|
1496
1567
|
d: "M12.5841 37.5876C10.8738 38.0241 9.11695 38.2524 7.35185 38.2675C5.59312 38.282 3.83825 38.1007 2.11964 37.7271C1.84921 37.6476 1.59961 37.5096 1.3886 37.3228C1.17759 37.1359 1.01036 36.9049 0.898795 36.6462C0.628835 36.1702 0.547898 35.61 0.672065 35.0771C1.1604 33.0548 1.64874 31.0673 2.13708 29.0798C2.62542 27.0924 3.09632 25.1049 3.54978 23.0826C3.35067 23.1645 3.13723 23.206 2.92192 23.2046C2.78001 23.1986 2.64197 23.1566 2.52078 23.0826C2.40711 23.0367 2.30987 22.9578 2.24173 22.8559L0.637184 20.1537L2.27661 18.9507L3.63698 17.9396L4.97992 16.911C4.9977 16.8365 4.9977 16.7588 4.97992 16.6843C4.96746 16.6034 4.96746 16.5211 4.97992 16.4402C5.25897 15.3245 5.53802 14.1738 5.79963 12.9534C6.06124 11.7331 6.35773 10.565 6.70654 9.46666C7.03627 8.28098 7.43815 7.11655 7.90995 5.97987C8.3525 4.87883 8.93896 3.84121 9.65402 2.89406C9.95051 2.52795 10.3168 2.10954 10.7528 1.65625C11.1787 1.22563 11.6527 0.845396 12.1655 0.523046C12.6371 0.223593 13.1774 0.0495608 13.7351 0.0174622C14.0374 0.00871949 14.3379 0.0666746 14.6152 0.187205C14.8926 0.307736 15.1399 0.487881 15.3397 0.714821C15.7442 1.09808 16.0444 1.5781 16.2117 2.10953C16.4227 2.67118 16.5633 3.25676 16.6303 3.85293C16.7116 4.4305 16.7524 5.01306 16.7524 5.59632V7.23511C16.6954 8.4378 16.4175 9.61973 15.9327 10.7219C15.5245 11.8633 14.9922 12.9566 14.3456 13.982C13.5735 14.9844 12.7156 15.9177 11.7818 16.7715C10.84 17.678 9.84587 18.5149 8.85175 19.3343L5.36361 33.9613C6.48902 34.0658 7.6217 34.0658 8.74711 33.9613C9.83522 33.8813 10.9113 33.6825 11.9562 33.3686L12.8282 36.9774V37.2215C12.8806 37.3784 12.7933 37.5004 12.5841 37.5876ZM11.5202 8.43806C11.1714 9.46666 10.84 10.5301 10.5435 11.611L10.84 11.1926C11.3544 10.4565 11.8205 9.68783 12.2352 8.89134C12.6368 8.07989 12.8286 7.18085 12.7933 6.27625C12.8146 6.12006 12.8146 5.96172 12.7933 5.80553C12.27 6.63168 11.8428 7.51492 11.5202 8.43806Z",
|
|
1497
1568
|
fill: "#6C70F0"
|
|
1498
1569
|
}
|
|
1499
1570
|
),
|
|
1500
|
-
/* @__PURE__ */
|
|
1571
|
+
/* @__PURE__ */ jsx18(
|
|
1501
1572
|
"path",
|
|
1502
1573
|
{
|
|
1503
1574
|
d: "M30.2165 24.0066L31.0188 24.5122C31.3603 24.715 31.6867 24.9422 31.9955 25.1921C31.4012 26.4662 30.7254 27.7008 29.9724 28.8881C29.2668 30.0478 28.4106 31.1089 27.426 32.0436C26.6476 32.8293 25.6401 33.3481 24.5483 33.5255C23.9837 33.5616 23.4187 33.4598 22.9022 33.229C22.3857 32.9982 21.933 32.6452 21.5834 32.2005C21.3708 31.9284 21.1949 31.6294 21.0602 31.3114C20.4676 32.0379 19.6905 32.5919 18.8103 32.9153C17.7856 33.2557 16.6783 33.2557 15.6536 32.9153C14.4041 32.595 13.2985 31.8644 12.5142 30.8407C11.7773 29.836 11.2712 28.6811 11.0318 27.4585C10.7679 26.1629 10.6799 24.8376 10.7702 23.5184C10.8279 22.267 10.9678 21.0207 11.1888 19.7876V19.683C11.1661 19.6211 11.1661 19.5531 11.1888 19.4912L11.5724 17.7478L12.9503 17.9396C13.5697 18.0024 14.1824 18.119 14.7815 18.2883C15.1478 18.2883 15.3571 18.6021 15.392 19.0553C15.442 19.5815 15.4007 20.1123 15.2699 20.6244V20.7116C15.2699 21.13 15.078 21.7402 14.9559 22.455C14.8445 23.2522 14.7863 24.0559 14.7815 24.8609C14.7809 25.6422 14.8746 26.4207 15.0606 27.1796C15.1081 27.4795 15.222 27.7651 15.394 28.0154C15.5659 28.2658 15.7917 28.4746 16.0547 28.6266C16.2438 28.7254 16.4507 28.7856 16.6633 28.8036C16.8759 28.8215 17.09 28.7969 17.293 28.7312C17.7383 28.6057 18.1457 28.3721 18.479 28.0513C18.8538 27.7059 19.1821 27.3132 19.4556 26.8832C19.7324 26.4686 19.9332 26.0082 20.0486 25.5233C20.0486 24.3901 20.0486 23.3267 20.0486 22.3155C20.0486 21.3043 20.0486 20.5721 20.1533 19.927L23.5019 19.003H24.1646C24.3067 19.0308 24.4426 19.084 24.5658 19.16C24.6249 19.1911 24.6731 19.2395 24.7043 19.2986C24.7354 19.3577 24.7479 19.4248 24.7402 19.4912C24.7402 19.8573 24.653 20.4326 24.5658 21.2346C24.4786 22.0366 24.4088 22.978 24.3042 23.8322C24.1995 24.6865 24.1472 25.5756 24.1123 26.4822C24.0526 27.1084 24.0526 27.7389 24.1123 28.3651C24.1123 28.7312 24.3042 28.9055 24.5134 28.8881C24.7976 28.8346 25.0556 28.6872 25.2459 28.4697C25.5687 28.1638 25.8716 27.8377 26.1529 27.4934C26.4702 27.1142 26.7671 26.7185 27.0423 26.3079C27.3214 25.9069 27.5656 25.5408 27.7574 25.2095L28.1411 24.5819C28.2113 24.4813 28.2754 24.3765 28.3329 24.2681L28.5248 23.9543C28.5916 23.8285 28.6736 23.7114 28.769 23.6056C28.8524 23.542 28.9471 23.4947 29.048 23.4661C29.1211 23.4564 29.1955 23.4639 29.2652 23.4881C29.3349 23.5123 29.3979 23.5526 29.4492 23.6056C29.6961 23.7555 29.9525 23.8894 30.2165 24.0066Z",
|
|
1504
1575
|
fill: "#6C70F0"
|
|
1505
1576
|
}
|
|
1506
1577
|
),
|
|
1507
|
-
/* @__PURE__ */
|
|
1578
|
+
/* @__PURE__ */ jsx18(
|
|
1508
1579
|
"path",
|
|
1509
1580
|
{
|
|
1510
1581
|
d: "M43.698 24.8783L44.5177 25.3664C44.8646 25.5566 45.1969 25.7722 45.5119 26.0115C44.9943 27.2442 44.4121 28.4488 43.7678 29.6203C43.1906 30.6949 42.4623 31.6812 41.6051 32.5492C40.9313 33.2454 40.0384 33.6887 39.0762 33.8045C38.521 33.7918 37.9754 33.6572 37.4781 33.4101C36.9807 33.1631 36.5439 32.8096 36.1985 32.3749C35.675 31.8658 35.3062 31.2191 35.1346 30.5094C34.9655 29.7896 34.8835 29.0521 34.8905 28.3128C34.8905 27.5457 34.8905 26.7786 34.9951 25.994C35.0452 25.2801 35.0452 24.5636 34.9951 23.8497C34.9951 23.2918 34.8207 22.978 34.5068 22.8908C34.1928 22.8036 33.844 23.1349 33.4429 23.8497C32.9097 25.0104 32.5287 26.2351 32.3093 27.4934C31.8717 29.7943 31.6151 32.126 31.5419 34.4669L27.6526 34.2752V32.2877C27.6526 30.0387 27.6526 27.6677 27.6526 25.1398C27.6526 22.6119 27.827 20.1537 28.0014 17.7827C28.0199 17.6692 28.062 17.5609 28.1251 17.4648C28.1882 17.3686 28.2709 17.2869 28.3677 17.2248C28.406 17.2075 28.4476 17.1985 28.4897 17.1985C28.5318 17.1985 28.5735 17.2075 28.6118 17.2248L32.1 17.3294C32.1 17.7304 32.1 18.1139 31.9953 18.5149C31.8907 18.9159 31.9953 19.2994 31.9953 19.7178C32.386 19.2841 32.8616 18.935 33.3925 18.6921C33.9234 18.4493 34.4986 18.3177 35.0823 18.3057C36.1688 18.3547 37.1993 18.8014 37.9775 19.5609C38.5231 20.0919 38.9148 20.7606 39.1111 21.4961C39.2998 22.2371 39.3994 22.9979 39.4076 23.7625C39.4131 24.5724 39.3665 25.3819 39.2681 26.1858C39.1804 26.9262 39.1513 27.6724 39.1809 28.4174C39.1809 28.9753 39.3204 29.1496 39.582 28.9578C39.9129 28.6855 40.1908 28.3545 40.4017 27.9815C40.7087 27.5039 40.9882 27.0091 41.2389 26.4996L41.797 25.4536C41.797 25.4536 41.9016 25.2444 41.954 25.1398C41.9882 25.0217 42.0412 24.9099 42.1109 24.8085C42.1699 24.6824 42.2462 24.565 42.3377 24.4599L42.5993 24.303C42.6751 24.2917 42.7525 24.2985 42.8252 24.3227C42.8979 24.347 42.9639 24.388 43.0178 24.4424C43.237 24.5991 43.4641 24.7446 43.698 24.8783Z",
|
|
1511
1582
|
fill: "#6C70F0"
|
|
1512
1583
|
}
|
|
1513
1584
|
),
|
|
1514
|
-
/* @__PURE__ */
|
|
1585
|
+
/* @__PURE__ */ jsx18(
|
|
1515
1586
|
"path",
|
|
1516
1587
|
{
|
|
1517
1588
|
d: "M61.5924 24.0066L62.3946 24.5121C62.7304 24.7153 63.051 24.9425 63.3539 25.1921C62.7658 26.466 62.0958 27.7006 61.3482 28.8881C60.6312 30.0446 59.7697 31.105 58.7844 32.0436C58.0106 32.826 57.0097 33.3445 55.9241 33.5255C55.3584 33.5709 54.7904 33.4734 54.2722 33.2418C53.7541 33.0103 53.3026 32.6522 52.9592 32.2005C52.4834 31.5153 52.1784 30.7262 52.0697 29.8992C51.7838 30.2286 51.4749 30.5374 51.1454 30.8232C50.8181 31.121 50.4746 31.4003 50.1164 31.6601C49.4172 32.1766 48.5919 32.4958 47.727 32.5841C46.9394 32.656 46.1465 32.5239 45.4248 32.2005C44.7292 31.8513 44.1303 31.3364 43.6808 30.7012C43.1601 29.9854 42.8029 29.1641 42.6343 28.2953C42.4729 27.4388 42.3912 26.5692 42.3902 25.6976C42.3886 24.8039 42.4999 23.9135 42.7215 23.0477C42.9241 22.1893 43.2286 21.3582 43.6284 20.5721C44.0563 19.7895 44.6102 19.0827 45.2679 18.48C45.8888 17.8634 46.6358 17.3884 47.4577 17.0874C48.2795 16.7865 49.1567 16.6668 50.0292 16.7366C51.8041 16.9247 53.4395 17.7857 54.5986 19.1425L55.1393 18.9856H55.5579C55.7054 19.0135 55.847 19.0666 55.9765 19.1425C56.0355 19.1737 56.0838 19.222 56.115 19.2811C56.1461 19.3402 56.1586 19.4074 56.1509 19.4737C56.1509 19.8398 56.0637 20.4152 55.9765 21.2171C55.8892 22.0191 55.802 22.9605 55.7148 23.8148C55.6276 24.669 55.5404 25.5582 55.523 26.4647C55.4745 27.0914 55.4745 27.7209 55.523 28.3476C55.5928 28.7195 55.7323 28.8939 55.9416 28.8706C56.2244 28.8134 56.4812 28.6667 56.6741 28.4522C56.9954 28.1503 57.2928 27.8239 57.5636 27.4759C57.9073 27.0643 58.2276 26.6335 58.5228 26.1858C58.8018 25.7848 59.0286 25.4187 59.2204 25.0875L59.6216 24.4598C59.6791 24.3515 59.7432 24.2467 59.8134 24.146C59.8695 24.0368 59.9336 23.9319 60.0052 23.8322C60.0662 23.7029 60.1488 23.585 60.2494 23.4835C60.3285 23.4233 60.4169 23.3762 60.511 23.3441C60.5869 23.3328 60.6643 23.3396 60.737 23.3639C60.8097 23.3881 60.8757 23.4291 60.9296 23.4835C61.1361 23.6754 61.3577 23.8504 61.5924 24.0066ZM50.7617 21.4438C50.5257 21.2371 50.2471 21.0848 49.9458 20.9974C49.6445 20.9101 49.3276 20.8898 49.0176 20.9382C48.681 21.0236 48.3681 21.184 48.1023 21.4074C47.8365 21.6308 47.6248 21.9115 47.4828 22.2283C47.0982 22.9202 46.8218 23.6669 46.6631 24.4424C46.4741 25.2122 46.4327 26.0108 46.541 26.796C46.5257 26.9234 46.5257 27.0521 46.541 27.1795C46.5887 27.38 46.6469 27.5779 46.7154 27.7723C46.7629 27.9466 46.8271 28.116 46.9073 28.2779C46.9073 28.4173 47.0468 28.4696 47.1515 28.3999C47.4895 28.2648 47.7933 28.0564 48.0409 27.7897C48.299 27.5406 48.538 27.2725 48.756 26.9878C50.0484 25.4287 50.7575 23.4685 50.7617 21.4438Z",
|
|
1518
1589
|
fill: "#6C70F0"
|
|
1519
1590
|
}
|
|
1520
1591
|
),
|
|
1521
|
-
/* @__PURE__ */
|
|
1592
|
+
/* @__PURE__ */ jsx18(
|
|
1522
1593
|
"path",
|
|
1523
1594
|
{
|
|
1524
1595
|
d: "M79.1899 24.0066L79.9747 24.4425C80.3163 24.6453 80.6427 24.8725 80.9514 25.1224C80.4631 26.1684 79.9224 27.197 79.3469 28.2082C78.8101 29.1571 78.1727 30.0455 77.4458 30.8581C76.7748 31.7205 76.0084 32.5042 75.1611 33.1943C74.3912 33.8101 73.5615 34.3474 72.6845 34.7982C71.7091 35.3239 70.6185 35.5995 69.5103 35.6002C68.627 35.6607 67.7458 35.4542 66.9814 35.0074C66.2096 34.5638 65.5338 33.9712 64.9932 33.264C64.4395 32.5116 64.0367 31.6591 63.8072 30.7535C63.5596 29.88 63.5178 28.9611 63.6851 28.0687L63.9642 26.7089C63.9667 26.6015 64.0033 26.4977 64.0688 26.4125C64.1362 26.3264 64.2244 26.2588 64.3251 26.2161C64.4257 26.1734 64.5356 26.157 64.6444 26.1684L65.4815 26.2904L66.7024 26.4648C67.1907 26.552 67.6965 26.6391 68.2546 26.7089C68.1298 27.1561 68.0308 27.6101 67.9581 28.0687C67.8848 28.425 67.8382 28.7864 67.8186 29.1496C67.7698 29.4323 67.7698 29.7212 67.8186 30.0039C67.9075 30.3177 68.0976 30.5935 68.3592 30.7884C68.6015 30.9728 68.8926 31.082 69.1964 31.1022C69.4923 31.1119 69.7802 31.0056 69.9987 30.8058C70.2629 30.5326 70.4391 30.1865 70.5045 29.8121C70.7113 28.9136 70.6507 27.9743 70.33 27.1098C69.9565 26.2676 69.5252 25.4521 69.0394 24.6691L68.586 23.8148C68.4386 23.5598 68.316 23.2912 68.2197 23.0129C67.6257 23.5037 66.9896 23.9412 66.3187 24.3204C65.6588 24.7027 64.9484 24.9903 64.2084 25.1747C63.4775 25.3231 62.7243 25.3231 61.9934 25.1747C61.176 25.0205 60.4092 24.6672 59.761 24.1461L61.5051 20.6593C62.219 20.8518 62.9712 20.8518 63.6851 20.6593C64.5348 20.4234 65.3456 20.0652 66.092 19.5958C67.2301 18.8549 68.2526 17.9502 69.1266 16.911C69.2105 16.8377 69.2865 16.7559 69.3534 16.6669L69.5627 16.4228L71.0277 14.6794L73.8007 16.5274C73.9206 16.6406 74.0315 16.763 74.1321 16.8936C74.1859 16.9544 74.2237 17.0278 74.2419 17.1069C74.2602 17.1861 74.2584 17.2685 74.2368 17.3468C74.1686 17.6091 74.0435 17.8531 73.8705 18.0616C73.5697 18.4381 73.2371 18.7881 72.8764 19.1077C72.4702 19.4582 72.2142 19.9512 72.1613 20.4849C72.1629 20.9803 72.2761 21.469 72.4927 21.9145C72.722 22.4204 72.9964 22.9047 73.3124 23.3615C73.6116 23.7866 73.8853 24.2291 74.1321 24.6865C74.3961 25.1595 74.6011 25.663 74.7425 26.1858C74.8688 26.7598 74.9504 27.3427 74.9867 27.9292C75.2263 27.7078 75.4425 27.4625 75.632 27.197C75.8587 26.8658 76.068 26.5345 76.2773 26.1684C76.4866 25.8023 76.6785 25.4885 76.818 25.1921C76.9123 24.9949 77.0171 24.8028 77.1319 24.6168L77.3238 24.303L77.5156 23.9892C77.5825 23.8634 77.6644 23.7463 77.7598 23.6405C77.8432 23.5769 77.9379 23.5296 78.0388 23.501C78.1119 23.4912 78.1863 23.4988 78.256 23.523C78.3257 23.5472 78.3887 23.5875 78.44 23.6405C78.6822 23.7778 78.9327 23.9001 79.1899 24.0066Z",
|
|
1525
1596
|
fill: "#6C70F0"
|
|
1526
1597
|
}
|
|
1527
1598
|
),
|
|
1528
|
-
/* @__PURE__ */
|
|
1599
|
+
/* @__PURE__ */ jsx18(
|
|
1529
1600
|
"path",
|
|
1530
1601
|
{
|
|
1531
1602
|
d: "M22.2286 49.4775L23.0309 49.9831C23.3622 50.1923 23.6762 50.4189 24.0075 50.663C23.5192 51.709 22.9785 52.7376 22.403 53.7488C21.8705 54.7004 21.2328 55.5893 20.502 56.3988C19.2274 58.0494 17.6009 59.3954 15.7406 60.3388C14.7747 60.832 13.7034 61.0833 12.6188 61.0711C11.7365 61.1458 10.8528 60.9448 10.0899 60.4957C9.31885 60.051 8.64321 59.4585 8.10162 58.7523C7.55175 58.004 7.14927 57.158 6.91566 56.2593C6.64235 55.3618 6.57675 54.4139 6.72381 53.4873L7.0203 52.1275C6.98957 52.031 6.98957 51.9275 7.0203 51.8311C7.0904 51.7436 7.18158 51.6753 7.28529 51.6326C7.38901 51.5899 7.50186 51.5742 7.61328 51.587C7.88368 51.6449 8.15746 51.6856 8.433 51.709L9.65385 51.8834C10.1422 51.988 10.648 52.0577 11.2061 52.1275C11.0812 52.5747 10.9822 53.0287 10.9096 53.4873C10.9096 53.8534 10.8049 54.2195 10.77 54.5856C10.7113 54.8674 10.7113 55.1582 10.77 55.4399C10.8517 55.7478 11.0363 56.0185 11.2933 56.207C11.5355 56.3914 11.8266 56.5005 12.1304 56.5208C12.276 56.5299 12.4219 56.5099 12.5596 56.462C12.6974 56.4141 12.8242 56.3393 12.9327 56.2419C13.2056 55.9749 13.3832 55.6258 13.4385 55.2481C13.6464 54.3497 13.5857 53.4101 13.2641 52.5459C12.9016 51.6927 12.47 50.8705 11.9735 50.0877L11.52 49.2334C11.3805 48.9545 11.2584 48.693 11.1537 48.4315C10.5628 48.9263 9.92627 49.3641 9.25271 49.739C8.66147 50.11 8.02173 50.3975 7.35167 50.5933C6.58727 50.7808 5.79038 50.7936 5.02036 50.6306C4.25033 50.4676 3.52702 50.133 2.9043 49.6518L4.64837 46.165C5.35992 46.3748 6.1169 46.3748 6.82845 46.165C7.68075 45.9366 8.4926 45.5779 9.23527 45.1016C10.3693 44.3622 11.3913 43.4639 12.2699 42.4342L12.4967 42.1901L12.706 41.946L14.171 40.2026L16.9441 42.0506L17.2929 42.4167C17.3393 42.4848 17.3711 42.5619 17.3861 42.6429C17.4011 42.724 17.3991 42.8073 17.3801 42.8875C17.3128 43.1448 17.1875 43.3833 17.0138 43.5848C16.713 43.9613 16.3804 44.3113 16.0197 44.6309C15.616 44.9885 15.3661 45.4882 15.3221 46.0256C15.3105 46.5204 15.4182 47.0107 15.636 47.4552C15.8723 47.9519 16.1463 48.4299 16.4557 48.8847C16.7605 49.3156 17.04 49.7639 17.2929 50.2272C17.549 50.7243 17.7424 51.2514 17.8684 51.7962C17.9938 52.3703 18.0754 52.9531 18.1126 53.5396L18.2172 53.435C18.4594 53.2212 18.6707 52.9747 18.8451 52.7028C19.0718 52.389 19.2811 52.0403 19.4904 51.6916C19.6997 51.3429 19.8915 51.0117 20.0311 50.7153C20.1225 50.511 20.2274 50.313 20.345 50.1225C20.4229 50.0271 20.4874 49.9215 20.5368 49.8087C20.6071 49.7081 20.6711 49.6033 20.7287 49.4949C20.7958 49.3747 20.8779 49.2634 20.9729 49.1637C21.0503 49.0875 21.1466 49.0333 21.2519 49.0068C21.3566 49.0068 21.4961 49.0068 21.653 49.1637L22.2286 49.4775Z",
|
|
1532
1603
|
fill: "#6C70F0"
|
|
1533
1604
|
}
|
|
1534
1605
|
),
|
|
1535
|
-
/* @__PURE__ */
|
|
1606
|
+
/* @__PURE__ */ jsx18(
|
|
1536
1607
|
"path",
|
|
1537
1608
|
{
|
|
1538
1609
|
d: "M30.7398 49.5299L31.5421 50.0354C31.8836 50.2383 32.21 50.4655 32.5188 50.7154C31.9607 51.9183 31.2805 53.191 30.4782 54.5508C29.7455 55.8068 28.8738 56.9764 27.8795 58.0376C27.139 58.8864 26.1609 59.4936 25.0716 59.781C24.1298 59.9786 23.2577 59.4905 22.4555 58.3166C21.9596 57.5762 21.6103 56.7476 21.4265 55.8758C21.1905 54.7914 21.0446 53.6893 20.9905 52.5808C20.9206 51.3149 20.9206 50.0461 20.9905 48.7802C20.9905 47.4203 21.1649 46.0779 21.3393 44.7181H20.4498H19.8742C19.7295 44.7363 19.583 44.7363 19.4382 44.7181L19.5254 40.9349H21.8102C21.8102 40.656 21.9148 40.2027 22.0369 39.5751C22.159 38.9475 22.2636 38.3373 22.3683 37.6922C22.4729 37.0472 22.595 36.4195 22.6996 35.8442C22.8043 35.2689 22.8566 34.833 22.8915 34.5715L27.0773 35.1992C27.0773 35.4084 26.9726 35.757 26.868 36.2975C26.7633 36.8379 26.6761 37.3958 26.5889 38.0409C26.5017 38.6859 26.3971 39.209 26.3099 39.7843C26.2227 40.3596 26.1703 40.7083 26.1529 40.9349H26.868H27.5133C27.5133 40.9349 27.7051 41.0918 27.8272 41.4928C27.943 41.9392 28.0246 42.3938 28.0714 42.8527C28.1058 43.3169 28.1058 43.7831 28.0714 44.2474C28.0714 44.6658 27.9493 44.875 27.7749 44.875H27.1993H26.9377H25.5948C25.4378 46.0256 25.2983 47.124 25.2111 48.2049C25.1239 49.2858 25.0541 50.2969 25.0367 51.2035C24.9893 51.9873 24.9893 52.7733 25.0367 53.5571C25.0551 54.0565 25.1863 54.5452 25.4204 54.9867C25.5599 55.161 25.7866 54.9867 26.1006 54.6031C26.4757 54.114 26.8194 53.6016 27.1296 53.0689C27.4784 52.4762 27.8098 51.8834 28.1237 51.3256C28.4376 50.7677 28.6295 50.3841 28.7341 50.2272C28.8061 50.1309 28.8647 50.0253 28.9085 49.9134C28.9538 49.8054 29.0062 49.7006 29.0655 49.5996C29.1368 49.4766 29.2185 49.36 29.3097 49.2509C29.3536 49.205 29.4064 49.1685 29.4649 49.1436C29.5233 49.1186 29.5862 49.1058 29.6498 49.1058C29.7133 49.1058 29.7762 49.1186 29.8347 49.1436C29.8931 49.1685 29.9459 49.205 29.9899 49.2509C30.2341 49.3586 30.4845 49.4517 30.7398 49.5299Z",
|
|
1539
1610
|
fill: "#6C70F0"
|
|
1540
1611
|
}
|
|
1541
1612
|
),
|
|
1542
|
-
/* @__PURE__ */
|
|
1613
|
+
/* @__PURE__ */ jsx18(
|
|
1543
1614
|
"path",
|
|
1544
1615
|
{
|
|
1545
1616
|
d: "M56.5345 50.297L57.0228 50.6631L56.4124 51.9009C56.2031 52.3542 55.9764 52.79 55.7497 53.2433C55.5229 53.6966 55.2439 54.1499 54.9823 54.5857L54.1975 55.8758C53.9611 56.3007 53.6867 56.7034 53.3777 57.0788C53.0812 57.4449 52.7848 57.7936 52.5057 58.1597C51.9861 58.7118 51.4003 59.1978 50.7616 59.6067C50.5064 59.7728 50.2164 59.878 49.914 59.9143C49.6116 59.9506 49.3049 59.9169 49.0176 59.8159C48.6648 59.6933 48.3406 59.5002 48.0648 59.2484C47.789 58.9967 47.5672 58.6915 47.413 58.3515C47.2562 58.1024 47.1219 57.8399 47.0119 57.5669C46.8724 57.2531 46.7503 56.9219 46.6108 56.5732C46.3276 55.5282 46.1983 54.4476 46.2271 53.3654C46.2271 52.8423 46.3143 52.3367 46.3666 51.8312C46.4189 51.3256 46.5235 50.82 46.6108 50.297C46.7427 49.3429 46.9408 48.3992 47.2037 47.4727C46.8417 47.4751 46.4859 47.3786 46.1747 47.1937C45.6995 48.1658 45.0626 49.05 44.2911 49.8088C43.5315 50.5877 42.5721 51.1426 41.5181 51.4128C40.9423 51.5265 40.3498 51.5265 39.774 51.4128C39.774 51.7963 39.774 52.1973 39.774 52.5808C39.7575 52.9897 39.7168 53.3972 39.6519 53.8012C39.4166 55.152 38.8931 56.4363 38.1171 57.5669C37.477 58.6069 36.5748 59.4605 35.501 60.0425C34.3411 60.6317 33 60.7564 31.7513 60.3912C30.8173 60.2317 29.9771 59.7278 29.3968 58.9791C29.0726 58.6356 28.8074 58.2409 28.612 57.811C28.4201 57.3926 28.2457 56.9567 28.0713 56.5035C27.8141 55.5736 27.7197 54.6063 27.7922 53.6443C27.8331 52.7157 27.9913 51.796 28.2631 50.9072C28.5216 50.3043 28.8247 49.7215 29.1701 49.1638C29.5045 48.6028 29.9024 48.0821 30.356 47.6122C31.2316 46.6628 32.3367 45.9543 33.5651 45.5549L33.3907 45.3632L33.2512 45.0668C32.9526 44.6219 32.7397 44.1253 32.6233 43.6023C32.5495 43.3165 32.5495 43.0165 32.6233 42.7306C32.6947 42.5305 32.8294 42.3591 33.007 42.2425L36.0242 40.8303L36.7916 42.5737C36.8757 42.7896 36.9747 42.9993 37.0881 43.2014C37.1928 43.3931 37.2974 43.6198 37.4369 43.8987L37.873 44.8576C38.005 45.1048 38.1692 45.3334 38.3613 45.5375C38.588 45.799 38.8148 46.0431 39.0764 46.3046C39.3217 46.5509 39.5904 46.7727 39.8786 46.9671C40.0736 47.1094 40.3017 47.1995 40.5414 47.2286C41.0433 47.0894 41.4697 46.7572 41.7274 46.3046C42.0663 45.8975 42.3372 45.4383 42.5296 44.9448C42.5723 44.8073 42.6371 44.6778 42.7215 44.5612C42.4986 44.301 42.3001 44.0209 42.1285 43.7244C41.9329 43.4168 41.7581 43.0965 41.6053 42.7655C41.3692 42.3322 41.1764 41.8767 41.0297 41.4057C40.9618 41.1309 40.9618 40.8436 41.0297 40.5688C41.1098 40.3845 41.2092 40.2092 41.3262 40.0458L44.326 38.4419C44.4656 38.9018 44.665 39.3414 44.919 39.7494C45.0465 40.0939 45.192 40.4314 45.355 40.7606C45.7643 41.6465 46.4255 42.3923 47.2561 42.905C48.1188 43.3545 49.1055 43.5077 50.064 43.3408C50.3992 43.3385 50.7313 43.4037 51.0407 43.5326C51.3175 43.7074 51.5648 43.9252 51.7732 44.1777C51.9703 44.4585 52.1178 44.771 52.2092 45.1017C52.3129 45.4009 52.3129 45.7264 52.2092 46.0257C51.9865 46.5606 51.7943 47.1077 51.6337 47.6645C51.4941 48.2223 51.3546 48.7802 51.2325 49.4078C51.0992 49.9826 51.0002 50.5647 50.936 51.1512C50.936 51.7091 50.814 52.2844 50.7442 52.8946V53.4351C50.7262 53.5331 50.7262 53.6335 50.7442 53.7315C50.7442 54.0801 50.7442 54.2545 50.936 54.2545C51.1279 54.2545 51.2325 54.1499 51.4244 53.9232L51.6686 53.4874C51.7732 53.313 51.8778 53.1387 52.0174 52.9469C52.1446 52.7592 52.2555 52.5609 52.3487 52.3542C52.4521 52.1549 52.5686 51.9627 52.6976 51.7789C52.6976 51.5871 52.8894 51.3953 52.9766 51.221C53.0756 51.0615 53.1574 50.892 53.2208 50.7154L53.3952 50.3144C53.3952 50.3144 53.4824 50.1401 53.5173 50.0703L53.6219 49.9309V49.7914C53.6261 49.7334 53.6261 49.6751 53.6219 49.6171L53.7091 49.4427C53.764 49.3195 53.8409 49.2073 53.9358 49.1115L54.2323 48.9546C54.3774 48.971 54.5157 49.0251 54.6335 49.1115C54.7106 49.1929 54.7987 49.2633 54.8951 49.3207C55.0277 49.4236 55.1676 49.5168 55.3137 49.5996L55.6974 49.8611C55.8175 49.9442 55.9461 50.0143 56.081 50.0703L56.5345 50.297ZM35.6057 51.2558C35.6128 50.635 35.4303 50.0268 35.0825 49.5125C34.7453 49.5286 34.4219 49.6506 34.1581 49.8611C33.9965 49.9411 33.8492 50.0471 33.7221 50.1749C33.5678 50.2986 33.4222 50.4326 33.2861 50.5759C33.0401 50.8875 32.813 51.2135 32.6059 51.5522C32.4332 51.8492 32.2816 52.1579 32.1524 52.4762C32.1524 52.668 32.1524 52.9992 32.0129 53.4525C31.9432 53.8856 31.9432 54.327 32.0129 54.7601C32.0469 55.1529 32.1659 55.5336 32.3617 55.8758C32.4172 56.0377 32.5348 56.1708 32.6885 56.246C32.8422 56.3212 33.0195 56.3323 33.1814 56.2768C33.4512 56.2333 33.707 56.127 33.9282 55.9665C34.1493 55.806 34.3296 55.5958 34.4546 55.3528C34.8404 54.73 35.1341 54.0547 35.3266 53.3479C35.4966 52.6638 35.5786 51.9607 35.5708 51.2558H35.6057Z",
|
|
1546
1617
|
fill: "#6C70F0"
|
|
1547
1618
|
}
|
|
1548
1619
|
),
|
|
1549
|
-
/* @__PURE__ */
|
|
1620
|
+
/* @__PURE__ */ jsx18(
|
|
1550
1621
|
"path",
|
|
1551
1622
|
{
|
|
1552
1623
|
d: "M70.2254 50.7327C69.6777 51.6952 69.035 52.6005 68.307 53.435C67.5502 54.2984 66.6541 55.0291 65.656 55.5968C64.5894 56.187 63.3868 56.4876 62.1678 56.4685C60.4695 56.5311 58.7866 56.1271 57.3019 55.3004C56.0731 54.5923 55.0556 53.5691 54.3544 52.3367C53.7285 51.2645 53.3196 50.0798 53.151 48.8499C52.9855 47.6935 52.9855 46.5195 53.151 45.3631C53.3764 44.2059 53.8268 43.1042 54.4765 42.1204C55.066 41.2563 55.88 40.5691 56.831 40.1329C57.8748 39.6057 59.0131 39.2916 60.1796 39.2089C61.0571 39.1616 61.935 39.2921 62.7608 39.5924C63.5049 39.8574 64.183 40.2796 64.7491 40.8303C65.2885 41.3519 65.7209 41.9737 66.0222 42.6608C66.3351 43.3692 66.4955 44.1354 66.4931 44.9098C66.5042 45.7492 66.3001 46.5775 65.9001 47.3157C65.534 47.9894 65.0358 48.5823 64.4351 49.0591C63.8731 49.5193 63.2359 49.879 62.5515 50.1226C61.9262 50.3555 61.2655 50.4794 60.5982 50.4887C59.7276 50.4786 58.8679 50.2948 58.0693 49.9482C58.4822 50.809 59.1446 51.5258 59.9703 52.0054C60.7591 52.4147 61.6672 52.532 62.5341 52.3367C63.5515 52.109 64.4904 51.6157 65.2548 50.9071C66.2842 49.9559 67.1348 48.8282 67.7663 47.5772C67.9592 47.2573 68.2004 46.9692 68.4814 46.7229C68.7081 46.5137 69.1092 46.6009 69.6673 46.9844C70.2254 47.368 70.3126 47.4552 70.644 47.6644C70.9225 47.8794 71.2137 48.0773 71.5161 48.2571C71.2544 48.9719 70.7661 49.7913 70.2254 50.7327ZM58.6971 43.8986C58.3444 44.3376 58.0566 44.8249 57.8425 45.3457L58.2088 45.7815C58.3325 45.9105 58.4733 46.022 58.6274 46.1127C59.0042 46.469 59.489 46.6898 60.0052 46.7404C60.1885 46.7516 60.3722 46.7266 60.5457 46.6668C60.7193 46.607 60.8794 46.5135 61.0168 46.3917C61.2813 46.1301 61.4632 45.7967 61.54 45.4328C61.6268 45.066 61.6268 44.6839 61.54 44.3171C61.4629 43.976 61.294 43.6625 61.0516 43.4105C60.9096 43.2885 60.741 43.2014 60.5594 43.156C60.3777 43.1106 60.1879 43.1082 60.0052 43.149C59.4959 43.241 59.0339 43.5058 58.6971 43.8986Z",
|
|
1553
1624
|
fill: "#6C70F0"
|
|
1554
1625
|
}
|
|
1555
1626
|
),
|
|
1556
|
-
/* @__PURE__ */
|
|
1627
|
+
/* @__PURE__ */ jsx18(
|
|
1557
1628
|
"path",
|
|
1558
1629
|
{
|
|
1559
1630
|
d: "M98.2543 29.6536L98.2543 29.6536L98.2588 29.6553C99.5162 30.1047 100.717 30.6948 101.838 31.4134C98.4983 31.6115 95.2647 32.7168 92.4923 34.6239C89.2914 36.8256 86.8694 39.9832 85.5729 43.6446C84.2758 47.3053 84.1703 51.2824 85.2716 55.0067C86.2264 58.2355 88.0458 61.1308 90.5198 63.3867C89.1948 63.2435 87.8892 62.9464 86.6298 62.5001L86.6298 62.5001L86.6235 62.498C84.4385 61.7562 82.4225 60.5881 80.6926 59.0614C78.9627 57.5346 77.5534 55.6797 76.5463 53.6043C75.5393 51.5288 74.9546 49.2742 74.8261 46.971C74.6976 44.6679 75.028 42.3622 75.798 40.1878C76.568 38.0133 77.7623 36.0133 79.3117 34.3038C80.8611 32.5943 82.7346 31.2094 84.8237 30.2295C86.9127 29.2495 89.1757 28.694 91.4812 28.5951C93.7868 28.4963 96.089 28.8561 98.2543 29.6536Z",
|
|
@@ -1561,7 +1632,7 @@ var DefaultLogoWithIcon = ({ width, height }) => {
|
|
|
1561
1632
|
stroke: "#E5E5E5"
|
|
1562
1633
|
}
|
|
1563
1634
|
),
|
|
1564
|
-
/* @__PURE__ */
|
|
1635
|
+
/* @__PURE__ */ jsx18(
|
|
1565
1636
|
"path",
|
|
1566
1637
|
{
|
|
1567
1638
|
d: "M100.694 51.6219C100.398 51.9532 97.1015 49.8785 97.1015 49.8785C97.1015 49.8785 94.1192 52.2147 93.6134 51.8834C93.1076 51.5522 94.0843 47.9434 94.0843 47.9434C94.0843 47.9434 91.1194 46.0082 91.1194 45.3108C91.1194 44.6135 95.0261 44.5612 95.0261 44.5612C95.0261 44.5612 96.1074 40.9175 96.6132 40.9175C97.119 40.9175 98.5317 44.4043 98.5317 44.4043C98.5317 44.4043 102.02 44.0556 102.491 44.7878C102.962 45.52 99.77 47.6993 99.77 47.6993C99.77 47.6993 101.008 51.2907 100.694 51.6219Z",
|
|
@@ -1569,7 +1640,7 @@ var DefaultLogoWithIcon = ({ width, height }) => {
|
|
|
1569
1640
|
}
|
|
1570
1641
|
)
|
|
1571
1642
|
] }),
|
|
1572
|
-
/* @__PURE__ */
|
|
1643
|
+
/* @__PURE__ */ jsx18("defs", { children: /* @__PURE__ */ jsx18("clipPath", { id: "clip0_1154_13915", children: /* @__PURE__ */ jsx18("rect", { width: "102.761", height: "64", fill: "white", transform: "translate(0.619629)" }) }) })
|
|
1573
1644
|
]
|
|
1574
1645
|
}
|
|
1575
1646
|
);
|
|
@@ -1578,22 +1649,22 @@ DefaultLogoWithIcon.displayName = "DefaultLogoWithIcon";
|
|
|
1578
1649
|
var DefaultLogoWithIcon_default = DefaultLogoWithIcon;
|
|
1579
1650
|
|
|
1580
1651
|
// packages/Authentication/SignUp/components/Title.tsx
|
|
1581
|
-
import { jsx as
|
|
1652
|
+
import { jsx as jsx19, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1582
1653
|
var Title = () => {
|
|
1583
|
-
return /* @__PURE__ */
|
|
1584
|
-
/* @__PURE__ */
|
|
1585
|
-
/* @__PURE__ */
|
|
1654
|
+
return /* @__PURE__ */ jsxs12(Flex_default, { vertical: true, gapY: "5", justify: "center", children: [
|
|
1655
|
+
/* @__PURE__ */ jsx19(DefaultLogoWithIcon_default, {}),
|
|
1656
|
+
/* @__PURE__ */ jsx19("h1", { className: "text-2xl font-extrabold", children: "\u0110\u0103ng K\xFD" })
|
|
1586
1657
|
] });
|
|
1587
1658
|
};
|
|
1588
1659
|
var MemoizedTitle = memo8(Title);
|
|
1589
1660
|
var Title_default = MemoizedTitle;
|
|
1590
1661
|
|
|
1591
1662
|
// packages/Authentication/SignUp/index.tsx
|
|
1592
|
-
import { jsx as
|
|
1663
|
+
import { jsx as jsx20, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1593
1664
|
var SignUp = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
1594
|
-
return /* @__PURE__ */
|
|
1595
|
-
/* @__PURE__ */
|
|
1596
|
-
/* @__PURE__ */
|
|
1665
|
+
return /* @__PURE__ */ jsxs13(Flex_default, { vertical: true, px: "12", py: "8", width: "full", className: "overflow-hidden", children: [
|
|
1666
|
+
/* @__PURE__ */ jsx20(Title_default, {}),
|
|
1667
|
+
/* @__PURE__ */ jsx20(Form_default, { onSubmit, onForgotPassword, onSignUp })
|
|
1597
1668
|
] });
|
|
1598
1669
|
};
|
|
1599
1670
|
var MemoizedSignUp = memo9(SignUp);
|