props.ts 474 B

1234567891011121314151617181920
  1. import type { PassThroughProps } from "../../types";
  2. import type { ClIconProps } from "../cl-icon/props";
  3. export type ClPaginationPassThrough = {
  4. className?: string;
  5. item?: PassThroughProps;
  6. itemText?: PassThroughProps;
  7. prev?: PassThroughProps;
  8. prevIcon?: ClIconProps;
  9. next?: PassThroughProps;
  10. nextIcon?: ClIconProps;
  11. };
  12. export type ClPaginationProps = {
  13. className?: string;
  14. pt?: ClPaginationPassThrough;
  15. modelValue?: number;
  16. total?: number;
  17. size?: number;
  18. };