props.ts 265 B

1234567891011121314
  1. import type { ClIconProps } from "../cl-icon/props";
  2. export type ClAvatarPassThrough = {
  3. className?: string;
  4. icon?: ClIconProps;
  5. };
  6. export type ClAvatarProps = {
  7. className?: string;
  8. pt?: ClAvatarPassThrough;
  9. src?: string;
  10. size?: any;
  11. rounded?: boolean;
  12. };