props.ts 290 B

123456789101112131415
  1. import type { PassThroughProps, Type } from "../../types";
  2. export type ClBadgePassThrough = {
  3. className?: string;
  4. text?: PassThroughProps;
  5. };
  6. export type ClBadgeProps = {
  7. className?: string;
  8. pt?: ClBadgePassThrough;
  9. type?: Type;
  10. dot?: boolean;
  11. value?: any;
  12. position?: boolean;
  13. };