declare type IconCircleProps = { aria?: { [key: string]: string; }; className?: string; dark?: boolean; data?: { [key: string]: string; }; icon: string; id?: string; size?: "base" | "xs" | "sm" | "md" | "lg" | "xl"; variant?: "default" | "royal" | "blue" | "purple" | "teal" | "red" | "yellow" | "orange" | "green"; }; declare const IconCircle: (props: IconCircleProps) => JSX.Element; export default IconCircle;