fix: remove labels in pagination
This commit is contained in:
parent
ca2fe12101
commit
4001e1b681
1 changed files with 0 additions and 3 deletions
|
@ -70,7 +70,6 @@ const PaginationPrevious = ({
|
|||
{...props}
|
||||
>
|
||||
<ChevronLeft className="h-4 w-4" />
|
||||
<span>Previous</span>
|
||||
</PaginationLink>
|
||||
);
|
||||
PaginationPrevious.displayName = "PaginationPrevious";
|
||||
|
@ -85,7 +84,6 @@ const PaginationNext = ({
|
|||
className={cn("gap-1 pr-2.5", className)}
|
||||
{...props}
|
||||
>
|
||||
<span>Next</span>
|
||||
<ChevronRight className="h-4 w-4" />
|
||||
</PaginationLink>
|
||||
);
|
||||
|
@ -101,7 +99,6 @@ const PaginationEllipsis = ({
|
|||
{...props}
|
||||
>
|
||||
<MoreHorizontal className="h-4 w-4" />
|
||||
<span className="sr-only">More pages</span>
|
||||
</span>
|
||||
);
|
||||
PaginationEllipsis.displayName = "PaginationEllipsis";
|
||||
|
|
Loading…
Reference in a new issue