mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 08:25:08 +01:00
add register avatar preview
This commit is contained in:
parent
acfd34a60b
commit
24e3cc739c
@ -1,6 +1,7 @@
|
|||||||
import { useCallback, useState } from "react";
|
import { useCallback, useState } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
|
import { Avatar } from "@/components/Avatar";
|
||||||
import { Button } from "@/components/buttons/Button";
|
import { Button } from "@/components/buttons/Button";
|
||||||
import { ColorPicker, initialColor } from "@/components/form/ColorPicker";
|
import { ColorPicker, initialColor } from "@/components/form/ColorPicker";
|
||||||
import { IconPicker, initialIcon } from "@/components/form/IconPicker";
|
import { IconPicker, initialIcon } from "@/components/form/IconPicker";
|
||||||
@ -55,7 +56,13 @@ export function AccountCreatePart(props: AccountCreatePartProps) {
|
|||||||
return (
|
return (
|
||||||
<LargeCard>
|
<LargeCard>
|
||||||
<LargeCardText
|
<LargeCardText
|
||||||
icon={<Icon icon={Icons.USER} />}
|
icon={
|
||||||
|
<Avatar
|
||||||
|
profile={{ colorA, colorB, icon: userIcon }}
|
||||||
|
iconClass="text-3xl"
|
||||||
|
sizeClass="w-16 h-16"
|
||||||
|
/>
|
||||||
|
}
|
||||||
title={t("auth.register.information.title") ?? undefined}
|
title={t("auth.register.information.title") ?? undefined}
|
||||||
>
|
>
|
||||||
{t("auth.register.information.header")}
|
{t("auth.register.information.header")}
|
||||||
|
Loading…
Reference in New Issue
Block a user