docs: add new component docs

This commit is contained in:
Eric Liu 2020-10-02 20:13:02 -07:00
commit 2008d0035f
130 changed files with 6662 additions and 3801 deletions

View file

@ -0,0 +1,24 @@
<script>
import { Pagination, PaginationSkeleton } from "carbon-components-svelte";
import Preview from "../../components/Preview.svelte";
</script>
### Default
<Pagination totalItems={102} pageSizes="{[10, 15, 20]}" />
### Current page
<Pagination totalItems={102} page={4} />
### Custom page sizes
<Pagination totalItems={102} pageSizes="{[16, 36, 99]}" pageSize="{36}" />
### Hidden page input
<Pagination totalItems={102} pageInputDisabled />
### Skeleton
<PaginationSkeleton />