props.ts 246 B

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