props.ts 273 B

1234567891011121314
  1. import type { ClIconProps } from "../cl-icon/props";
  2. export type ClLoadingPassThrough = {
  3. className?: string;
  4. icon?: ClIconProps;
  5. };
  6. export type ClLoadingProps = {
  7. className?: string;
  8. pt?: ClLoadingPassThrough;
  9. loading?: boolean;
  10. size?: number;
  11. color?: string;
  12. };