Skip to content

Commit

Permalink
Update icons styles in pagination component
Browse files Browse the repository at this point in the history
  • Loading branch information
ClumsyVlad committed Mar 19, 2024
1 parent 69305c0 commit 66756b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ui/pagination/pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const PaginationPrevious = ({
...props
}: ComponentProps<typeof PaginationLink>) => (
<PaginationLink aria-label="Go to previous page" size="icon" {...props}>
<ChevronLeft className="h-4 w-4" />
<ChevronLeft />
</PaginationLink>
);
PaginationPrevious.displayName = "PaginationPrevious";
Expand All @@ -79,7 +79,7 @@ const PaginationNext = ({
...props
}: ComponentProps<typeof PaginationLink>) => (
<PaginationLink aria-label="Go to next page" size="icon" {...props}>
<ChevronRight className="h-4 w-4" />
<ChevronRight />
</PaginationLink>
);
PaginationNext.displayName = "PaginationNext";
Expand Down

0 comments on commit 66756b4

Please sign in to comment.