{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLetterACircle/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLetterACircle: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"letter-a-circle\"><path d=\"M12 9.03906L13.2012 12.6484H10.7695L11.959 9.03906H12Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11.9883 7.44531C11.4375 7.44531 11.0977 7.70312 10.8926 8.26562L8.4375 14.9395C8.36719 15.1211 8.33789 15.2852 8.33789 15.4023C8.33789 15.8301 8.63672 16.0996 9.09961 16.0996C9.49219 16.0996 9.71484 15.9062 9.85547 15.4492L10.4121 13.8438H13.5703L14.127 15.4609C14.2617 15.9121 14.4902 16.0996 14.9004 16.0996C15.3398 16.0996 15.6562 15.8125 15.6562 15.4023C15.6562 15.2676 15.627 15.1328 15.5566 14.9395L13.0957 8.25977C12.8848 7.69141 12.5449 7.44531 11.9883 7.44531Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLetterACircle;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA4xB,EAA5xB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,yDAAyD,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ykBAAykB,KAAK,eAAc,CAAI,GAGtxB",
  "debugId": "A1F6454CD2989C9764756E2164756E21",
  "names": []
}