import { Color } from "@/types/colors";
export interface SvgIconProps {
  dataTestId?: string;
  className?: string;
  flip?: "default" | "horizontal" | "vertical" | "both";
  icon?: {
    name: string;
    content: string;
    viewBox: string;
  };
  id?: string;
  size?:
    | "default"
    | "xsmall"
    | "small"
    | "medium"
    | "large"
    | "xlarge"
    | "xxlarge"
    | "xxxlarge";
  style?: React.CSSProperties;
  svgClassName?: string;
  svgStyle?: React.CSSProperties;
  tabIndex?: number;
  themeColor?: Color;
  viewBox?: string;
}
