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.
2 parents 35803c4 + 4bc6285 commit 546b360Copy full SHA for 546b360
public/icon/share.svg
src/components/Header.tsx
@@ -0,0 +1,18 @@
1
+const Header = () => {
2
+ return (
3
+ <div className="flex flex-row bg-white border border-gray-100 items-center justify-center w-[500px] h-[56px] relative">
4
+ <h1 className="text-[18px] font-bold text-gray-900 absolute left-1/2 transform -translate-x-1/2">
5
+ 상대방 정보선택
6
+ </h1>
7
+ <img
8
+ src="/public/icon/share.svg"
9
+ alt="Share"
10
+ className="absolute right-[20px] cursor-pointer"
11
+ width={16}
12
+ height={16}
13
+ />
14
+ </div>
15
+ );
16
+};
17
+
18
+export default Header;
0 commit comments