You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
<nav
|
|
aria-label="Pagination"
|
|
class="flex items-center justify-between border-t border-gray-200 bg-white px-4 py-3 sm:px-6"
|
|
>
|
|
<div class="hidden sm:block">
|
|
<p class="text-sm text-gray-700">
|
|
Showing
|
|
<span class="font-medium">1</span>
|
|
to
|
|
<span class="font-medium">10</span>
|
|
of
|
|
<span class="font-medium">20</span>
|
|
results
|
|
</p>
|
|
</div>
|
|
<div class="flex flex-1 justify-between sm:justify-end">
|
|
<a
|
|
href="#"
|
|
class="relative inline-flex items-center rounded-md bg-white px-3 py-2 text-sm font-semibold text-gray-900 ring-1 ring-gray-300 ring-inset hover:bg-gray-50 focus-visible:outline-offset-0"
|
|
>Previous</a
|
|
>
|
|
<a
|
|
href="#"
|
|
class="relative ml-3 inline-flex items-center rounded-md bg-white px-3 py-2 text-sm font-semibold text-gray-900 ring-1 ring-gray-300 ring-inset hover:bg-gray-50 focus-visible:outline-offset-0"
|
|
>Next</a
|
|
>
|
|
</div>
|
|
</nav>
|