{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAt/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 IconAt: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"at, handle, @\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C13.6426 20.5 15.1743 20.0348 16.4731 19.2293C16.8251 19.011 17.2875 19.1194 17.5058 19.4714C17.7241 19.8234 17.6157 20.2857 17.2637 20.504C15.7344 21.4525 13.93 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 13.0958 21.7306 14.2721 21.0778 15.1696C20.3967 16.106 19.3255 16.6918 17.9036 16.5625C16.612 16.4451 15.5224 15.7374 14.8683 14.7351C13.9689 16.0897 12.4624 16.9293 10.8105 16.6971C8.39607 16.3578 6.91135 13.9034 7.26292 11.4019C7.61449 8.90031 9.71821 6.95026 12.1326 7.28959C13.1979 7.4393 14.0821 8.00071 14.7076 8.79624L14.7804 8.29498C14.8399 7.88507 15.2205 7.60103 15.6304 7.66057C16.0403 7.7201 16.3243 8.10067 16.2648 8.51058L15.7354 12.1553C15.7354 12.1557 15.7353 12.1561 15.7353 12.1564C15.5286 13.6075 16.5795 14.936 18.0394 15.0687C18.9121 15.148 19.4802 14.8159 19.8647 14.2872C20.2775 13.7197 20.5 12.8838 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM11.9239 8.77499C10.5099 8.57627 9.01166 9.73692 8.74832 11.6106C8.48499 13.4844 9.6053 15.013 11.0192 15.2117C12.4332 15.4105 13.9315 14.2498 14.1948 12.3761C14.4581 10.5024 13.3378 8.97371 11.9239 8.77499Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAt;\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,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAuyC,EAAvyC,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4qCAA4qC,KAAK,eAAc,CAAI,GAGjyC",
  "debugId": "1F904F446E6D7B7B64756E2164756E21",
  "names": []
}