Skip to content

Commit a35cf87

Browse files
committed
๐Ÿ’„ design(#170): ํŽธ์ง€ ์ „๋‹ฌ ์™„๋ฃŒ ํŽ˜์ด์ง€ ๋น„ํšŒ์› ๋‚˜๊ฐ€๊ธฐ ๋ฒ„ํŠผ ์ถ”๊ฐ€
1 parent ec39eb0 commit a35cf87

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 6 additions & 0 deletions
Loading

โ€Žsrc/app/send/complete/page.tsxโ€Ž

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,16 @@ const SendCompletePage = () => {
5151
return (
5252
<>
5353
<Layout>
54+
{isGuest && (
55+
<button onClick={() => router.push('/login')}>
56+
<CloseIcon
57+
src="/assets/icons/ic_x.svg"
58+
width={24}
59+
height={24}
60+
alt="๋‚˜๊ฐ€๊ธฐ"
61+
/>
62+
</button>
63+
)}
5464
<Container>
5565
<Title>
5666
{receiverName}์—๊ฒŒ
@@ -120,6 +130,14 @@ const Layout = styled.div`
120130
z-index: 0;
121131
`;
122132

133+
const CloseIcon = styled(Image)`
134+
width: 24px;
135+
height: 24px;
136+
position: absolute;
137+
top: 10px;
138+
right: 17px;
139+
`;
140+
123141
const Container = styled.div`
124142
width: 100%;
125143
height: 100%;

0 commit comments

Comments
ย (0)