Skip to content

Commit ffa2ebe

Browse files
authored
Merge pull request #100 from Nexters/feat#92
feat: 타로냥 챗 이미지 교체
2 parents 65ab7a1 + 987e5a9 commit ffa2ebe

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/chat/components/ChatAvatar.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
import ChatBotProfileImage from "@/shared/assets/images/chatbot-profile.png";
1+
import NewChatBotProfileImage from "@/shared/assets/images/new-chatbot-profile.png";
22
import Image from "next/image";
33
import { css } from "styled-components";
44
export default function ChatAvatar() {
55
return (
66
<Image
7-
src={ChatBotProfileImage}
7+
src={NewChatBotProfileImage}
88
alt="타로냥 프로필 이미지"
99
width={36}
1010
height={36}
1111
css={css`
1212
border-radius: 50%;
13-
background-color: ${({ theme }) => theme.colors.grey10};
1413
`}
1514
/>
1615
);
1.64 KB
Loading

0 commit comments

Comments
 (0)