mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
15 lines
410 B
Svelte
15 lines
410 B
Svelte
<script lang="ts">
|
|
import { Pagination, PaginationSkeleton } from "../types";
|
|
</script>
|
|
|
|
<Pagination totalItems="{102}" pageSizes="{[10, 15, 20]}" />
|
|
|
|
<Pagination totalItems="{102}" page="{4}" />
|
|
|
|
<Pagination totalItems="{102}" pageSizes="{[16, 36, 99]}" pageSize="{36}" />
|
|
|
|
<Pagination totalItems="{102}" pageInputDisabled />
|
|
|
|
<Pagination totalItems="{102}" pageSizeInputDisabled />
|
|
|
|
<PaginationSkeleton />
|