import type { SVGProps } from "react"; export interface AlphabetICircleIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function AlphabetICircleIcon({ className = "", size = 24, color = "currentColor", ...props }: AlphabetICircleIconProps) { return ( ); }