-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from iOdiO89/develop
FIX: 설정 페이지 디자인 수정
- Loading branch information
Showing
8 changed files
with
76 additions
and
21 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
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,24 @@ | ||
import FlexBox from "@modules/layout/FlexBox"; | ||
import Icon from "@modules/layout/Icon"; | ||
import { useRouter } from "next/router"; | ||
|
||
export default function SettingFAB() { | ||
const router = useRouter(); | ||
|
||
const onClickFAB = () => { | ||
router.push("/mypage/setting"); | ||
}; | ||
|
||
return ( | ||
<button | ||
onClick={onClickFAB} | ||
type="button" | ||
className="fixed rounded-[20px] p-3 bg-Gray7 bottom-[128px] right-4" | ||
> | ||
<FlexBox className="gap-2"> | ||
<Icon src="/icon/control/setting.svg" sz={16} /> | ||
<div className="text-White B4-regular">설정</div> | ||
</FlexBox> | ||
</button> | ||
); | ||
} |