props.ts 431 B

12345678910111213141516171819
  1. import type { ClInputType, PassThroughProps } from "../../types";
  2. export type ClInputOtpPassThrough = {
  3. className?: string;
  4. list?: PassThroughProps;
  5. item?: PassThroughProps;
  6. cursor?: PassThroughProps;
  7. value?: PassThroughProps;
  8. };
  9. export type ClInputOtpProps = {
  10. className?: string;
  11. pt?: ClInputOtpPassThrough;
  12. modelValue?: string;
  13. autofocus?: boolean;
  14. length?: number;
  15. disabled?: boolean;
  16. inputType?: ClInputType;
  17. };