| 1234567891011121314151617181920212223 |
- import { buildProps } from '../../../../utils/vue/props/runtime.mjs';
- import { iconPropType } from '../../../../utils/vue/icon.mjs';
- const paginationNextProps = buildProps({
- disabled: Boolean,
- currentPage: {
- type: Number,
- default: 1
- },
- pageCount: {
- type: Number,
- default: 50
- },
- nextText: {
- type: String
- },
- nextIcon: {
- type: iconPropType
- }
- });
- export { paginationNextProps };
- //# sourceMappingURL=next.mjs.map
|