import { Color } from "@/types/colors";

export interface BadgeProps {
  dataTestId?: string;
  align?: { horizontal: "end" | "start"; vertical: "top" | "bottom" };
  children?: React.ReactNode;
  className?: string;
  cutoutBorder?: boolean;
  dir?: string;
  fillMode?: null | "outline" | "solid";
  position?: "inside" | "outside" | "edge";
  rounded?: null | "small" | "medium" | "full" | "large";
  size?: null | "small" | "medium" | "large";
  style?: React.CSSProperties;
  themeColor?: Color;
}
