├── .gitignore ├── README.md ├── package.json ├── rollup.config.js └── src ├── ChevronLeft.svelte ├── ChevronRight.svelte ├── Pagination.svelte └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouita/svelte-tw-pagination/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouita/svelte-tw-pagination/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouita/svelte-tw-pagination/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/ChevronLeft.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouita/svelte-tw-pagination/HEAD/src/ChevronLeft.svelte -------------------------------------------------------------------------------- /src/ChevronRight.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouita/svelte-tw-pagination/HEAD/src/ChevronRight.svelte -------------------------------------------------------------------------------- /src/Pagination.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouita/svelte-tw-pagination/HEAD/src/Pagination.svelte -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouita/svelte-tw-pagination/HEAD/src/index.js --------------------------------------------------------------------------------