-
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 #67 from epigram5-9/feat/FE-17
FE-17 ✨ 최근 에피그램 더보기 기능 구현
- Loading branch information
Showing
11 changed files
with
108 additions
and
51 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
12 changes: 0 additions & 12 deletions
12
src/components/Emotion/card/InteractiveEmotionIconCard.tsx
This file was deleted.
Oops, something went wrong.
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,29 @@ | ||
import React from 'react'; | ||
import Image from 'next/image'; | ||
|
||
interface LoadMoreButtonProps { | ||
onClick: () => void; | ||
} | ||
|
||
function LoadMoreButton({ onClick }: LoadMoreButtonProps) { | ||
return ( | ||
<div | ||
onClick={onClick} | ||
className='h-12 px-[18px] py-3 rounded-[100px] border border-[#cfdbea] justify-center items-center gap-1 inline-flex cursor-pointer' | ||
role='button' | ||
tabIndex={0} | ||
onKeyPress={(e) => { | ||
if (e.key === 'Enter' || e.key === ' ') { | ||
onClick(); | ||
} | ||
}} | ||
> | ||
<div className='w-6 h-6 relative'> | ||
<Image src='/icon/plus-icon.svg' alt='plus icon' layout='fill' objectFit='contain' /> | ||
</div> | ||
<div className='text-#abb8ce text-sm font-normal font-Pretendard leading-normal'>더보기</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default LoadMoreButton; |
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 was deleted.
Oops, something went wrong.