-
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 pull request #168 from Make-A-Wish-Sopt/develop
Develop
- Loading branch information
Showing
67 changed files
with
459 additions
and
239 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
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,32 @@ | ||
import Image from 'next/image'; | ||
import ConfirmCancleModal from './ModalForm/ConfirmCancleModal'; | ||
import { MainCakeImg } from '@/public/assets/images'; | ||
import styled from 'styled-components'; | ||
import theme from '@/styles/theme'; | ||
|
||
interface CancleWishesModalProps { | ||
handleToggle: () => void; | ||
handleCancleWishes: () => void; | ||
} | ||
|
||
export default function CancleWishesModal(props: CancleWishesModalProps) { | ||
const { handleToggle, handleCancleWishes } = props; | ||
return ( | ||
<ConfirmCancleModal | ||
handleToggle={handleToggle} | ||
handleDelete={handleCancleWishes} | ||
rightText="중단하기" | ||
> | ||
<Image src={MainCakeImg} alt={'케이크'} width={60} height={60} /> | ||
<Styled.DeleteText>진행중인 소원 링크를 중단하시겠습니까?</Styled.DeleteText> | ||
</ConfirmCancleModal> | ||
); | ||
} | ||
|
||
const Styled = { | ||
DeleteText: styled.div` | ||
${theme.fonts.body14}; | ||
color: ${theme.colors.dark_blue}; | ||
margin: 0.7rem 0 1rem; | ||
`, | ||
}; |
Oops, something went wrong.