3614c84a7d234b3f9fe14c9b6006faaf4e18601afc0e44c2b8c75d2c44c45e613393284e51426c8db6b1981d18895b1456adfd70026bb443251d949fd93341 453 B

1234567891011121314151617181920212223
  1. import { buildProps } from '../../../../utils/vue/props/runtime.mjs';
  2. import { iconPropType } from '../../../../utils/vue/icon.mjs';
  3. const paginationNextProps = buildProps({
  4. disabled: Boolean,
  5. currentPage: {
  6. type: Number,
  7. default: 1
  8. },
  9. pageCount: {
  10. type: Number,
  11. default: 50
  12. },
  13. nextText: {
  14. type: String
  15. },
  16. nextIcon: {
  17. type: iconPropType
  18. }
  19. });
  20. export { paginationNextProps };
  21. //# sourceMappingURL=next.mjs.map