-
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.
- Loading branch information
Showing
4 changed files
with
55 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { ChevronLeft, ChevronRight } from 'lucide-react'; | ||
|
||
const ArrowButtons = () => { | ||
return ( | ||
<div className="flex w-full items-center justify-between"> | ||
<ChevronLeft | ||
size={'3rem'} | ||
className="pointer-events-auto cursor-pointer hover:text-blue-500" | ||
/> | ||
<ChevronRight | ||
size={'3rem'} | ||
className="pointer-events-auto cursor-pointer hover:text-blue-500" | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
export default ArrowButtons; |
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,10 @@ | ||
const MessageCount = ({ count }: { count: number }) => { | ||
return ( | ||
<div className="flex items-center gap-2"> | ||
<p style={{ fontSize: '1.5rem' }}>💌</p>{' '} | ||
<p style={{ fontSize: '1.3rem' }}>{count} / 30</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default MessageCount; |
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