We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec39eb0 commit a35cf87Copy full SHA for a35cf87
2 files changed
โpublic/assets/icons/ic_x.svgโ
โsrc/app/send/complete/page.tsxโ
@@ -51,6 +51,16 @@ const SendCompletePage = () => {
51
return (
52
<>
53
<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
+ )}
64
<Container>
65
<Title>
66
{receiverName}์๊ฒ
@@ -120,6 +130,14 @@ const Layout = styled.div`
120
130
z-index: 0;
121
131
`;
122
132
133
+const CloseIcon = styled(Image)`
134
+ width: 24px;
135
+ height: 24px;
136
+ position: absolute;
137
+ top: 10px;
138
+ right: 17px;
139
+`;
140
+
123
141
const Container = styled.div`
124
142
width: 100%;
125
143
height: 100%;
0 commit comments