We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22e4b0e commit 9386efaCopy full SHA for 9386efa
typing-app/src/components/molecules/UserCard.tsx
@@ -10,7 +10,11 @@ interface UserCardPresenterProps {
10
export const UserCardPresenter = ({ user }: UserCardPresenterProps) => {
11
return (
12
<HStack spacing={4} bg="blue.600">
13
- <Avatar src={"https://www.shizuoka.ac.jp/cms/files/shizudai/MASTER/0100/uISrbYCb_VL033_r03.png"} boxSize="100px" borderRadius="0" />
+ <Avatar
14
+ src={"https://www.shizuoka.ac.jp/cms/files/shizudai/MASTER/0100/uISrbYCb_VL033_r03.png"}
15
+ boxSize="100px"
16
+ borderRadius="0"
17
+ />
18
<VStack align="start" paddingRight="8px">
19
<Text fontSize="lg" fontWeight="bold" color="white">
20
名前: {user ? user.handleName : "ログインしていません"}
0 commit comments