{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAt/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAt: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAt\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C13.5465 20 14.9876 19.5622 16.2098 18.8042L17.0596 18.2772L18.1137 19.9768L17.2639 20.5039C15.7343 21.4525 13.9296 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.1044 21.7294 14.3102 21.051 15.2429C20.3349 16.2275 19.202 16.8431 17.7196 16.7084C16.5162 16.599 15.4815 15.9967 14.7903 15.1228C13.8495 16.3323 12.4017 17.0622 10.805 16.8378C8.27559 16.4823 6.76534 13.9275 7.12331 11.3804C7.48128 8.83335 9.63723 6.79377 12.1667 7.14926C13.0709 7.27634 13.8449 7.6845 14.4499 8.2729L14.5815 7.36665L16.5607 7.65412L15.902 12.1893C15.902 12.1897 15.9019 12.1901 15.9019 12.1905C15.7227 13.4492 16.6343 14.6015 17.9006 14.7166C18.6508 14.7848 19.1129 14.5073 19.4336 14.0665C19.792 13.5737 20 12.8218 20 12C20 7.58172 16.4183 4 12 4ZM11.8883 9.12979C10.6929 8.96178 9.34417 9.94883 9.10385 11.6588C8.86353 13.3687 9.8879 14.6893 11.0834 14.8573C12.2788 15.0253 13.6275 14.0383 13.8678 12.3283C14.1082 10.6184 13.0838 9.29781 11.8883 9.12979Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAt;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA2D,EAAM,KAAK,CAAC,IAAU,CAC5F,OAAO,gBAAqqC,EAArqC,IAAqB,EAAO,OAAO,0CAAyC,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ohCAAohC,KAAK,eAAc,CAAI,EAC7qC,EAEc",
  "debugId": "3EEFBBAF7967410464756E2164756E21",
  "names": []
}