From 522d8f5ba75328dbd1196b0dbfaa2a557c2acc09 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Sat, 9 Nov 2024 12:39:52 +0530 Subject: [PATCH] Conv --- .../src/components/UserNameInputDialog.tsx | 35 ++++++++++++++----- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/web/apps/photos/src/components/UserNameInputDialog.tsx b/web/apps/photos/src/components/UserNameInputDialog.tsx index 242fd357df..8cbbb14717 100644 --- a/web/apps/photos/src/components/UserNameInputDialog.tsx +++ b/web/apps/photos/src/components/UserNameInputDialog.tsx @@ -1,8 +1,12 @@ -import DialogBox from "@ente/shared/components/DialogBox/base"; -import DialogIcon from "@ente/shared/components/DialogBox/DialogIcon"; import SingleInputForm from "@ente/shared/components/SingleInputForm"; import AutoAwesomeOutlinedIcon from "@mui/icons-material/AutoAwesomeOutlined"; -import { DialogContent, DialogTitle, Typography } from "@mui/material"; +import { + Box, + Dialog, + DialogContent, + DialogTitle, + Typography, +} from "@mui/material"; import { t } from "i18next"; export default function UserNameInputDialog({ @@ -18,13 +22,28 @@ export default function UserNameInputDialog({ }; return ( - - } /> - + + theme.colors.stroke.muted, + }} + > + {} + {t("enter_name")} - + {t("PUBLIC_UPLOADER_NAME_MESSAGE")} - + ); }