-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/update-monorepo-build
- Loading branch information
Showing
27 changed files
with
217 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# 요약 \* | ||
|
||
<!-- 닫는 이슈 번호 및 PR 내용에 대한 간단한 요약 표기. --> | ||
|
||
It closes #issue_number | ||
|
||
# 스크린샷 | ||
|
||
<!-- PR 변경 사항에 대한 스크린샷이나 .gif 파일 --> | ||
|
||
# 이후 Task \* | ||
|
||
<!-- PR 이후 개설할 이슈 목록 --> | ||
|
||
- 없음 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import React from "react"; | ||
import { Button, Divider } from "@biseo/web/components/atoms"; | ||
import { | ||
text, | ||
align, | ||
border, | ||
column, | ||
round, | ||
w, | ||
h, | ||
bg, | ||
gap, | ||
padding, | ||
justify, | ||
} from "@biseo/web/styles"; | ||
|
||
type Props = { | ||
displayName: string; | ||
onLogout: () => void; | ||
}; | ||
|
||
export const Profile: React.FC<Props> = ({ displayName, onLogout }) => ( | ||
<div | ||
css={[align.center, { position: "absolute", right: "0px", zIndex: 1000 }]} | ||
> | ||
<div css={[h(5)]} /> | ||
<div | ||
css={[ | ||
border.gray200, | ||
round.md, | ||
w(100), | ||
column, | ||
align.center, | ||
gap(4), | ||
padding.vertical(5), | ||
bg.white, | ||
"box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06)", | ||
]} | ||
> | ||
<div | ||
css={[ | ||
round.md, | ||
w(100), | ||
h(18), | ||
padding.horizontal(8), | ||
justify.between, | ||
align.center, | ||
]} | ||
> | ||
<div css={[text.option2, text.gray600, "text-align: center"]}> | ||
{displayName} | ||
</div> | ||
</div> | ||
<Divider /> | ||
<Button w={90} h={20} padHorizontal={8} onClick={onLogout}> | ||
<div css={[text.option2, text.blue600]}>로그아웃</div> | ||
</Button> | ||
</div> | ||
</div> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.