export interface AvatarProps {
  dataTestId?: string;
  id?: string;
  border?: boolean;
  children?: React.ReactNode;
  className?: string;
  fillMode?: null | "outline" | "solid";
  rounded?: null | "small" | "medium" | "full" | "large";
  size?: null | "small" | "medium" | "large";
  style?: React.CSSProperties;
  themeColor?:
    | null
    | "error"
    | "inverse"
    | "base"
    | "success"
    | "dark"
    | "light"
    | "primary"
    | "secondary"
    | "tertiary"
    | "info"
    | "warning";
  type?: string;
}
