{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCloudSync2/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 IconCloudSync2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconCloudSync2\"><Path d=\"M8 15.4999C8 13.2908 9.79081 11.5 11.9999 11.5M15.9998 15.4999C15.9998 17.709 14.209 19.4998 11.9999 19.4998\" stroke=\"currentColor\" strokeWidth=\"1.12497\"/><Path d=\"M14.5 11.5L12 13.5V11V9.39014L14.5 11.5Z\" fill=\"currentColor\"/><Path d=\"M9.5 19.5L12 17.5V19V21.5L9.5 19.5Z\" fill=\"currentColor\"/><Path d=\"M7 18.5H6.85714C3.89847 18.5 1.5 16.1015 1.5 13.1429C1.5 10.4292 3.51767 8.18681 6.13466 7.83402C7.00338 5.31198 9.39723 3.5 12.2143 3.5C15.7647 3.5 18.6429 6.37817 18.6429 9.92857C21.0098 9.92857 22.9286 11.8474 22.9286 14.2143C22.9286 16.5812 21.0098 18.5 18.6429 18.5H18.5\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCloudSync2;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA4rB,EAA5rB,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,+GAA+G,OAAO,eAAe,YAAY,UAAS,EAAE,gBAAC,EAAD,CAAM,EAAE,2CAA2C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sCAAsC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sRAAsR,OAAO,eAAc,CAAI,EACpsB,EAEc",
  "debugId": "7AE06B47BFAB99C864756E2164756E21",
  "names": []
}