{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageCloud/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 IconPageCloud: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPageCloud\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 22V2H20V13.1678C18.8872 12.1353 17.3932 11.5 15.75 11.5C12.2982 11.5 9.5 14.2982 9.5 17.75C9.5 19.3913 10.1326 20.8848 11.1674 22H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.5 17.75C11.5 20.0972 13.4028 22 15.75 22H18.5C20.433 22 22 20.433 22 18.5C22 16.7446 20.7077 15.291 19.0225 15.0387C18.2436 14.0992 17.068 13.5 15.75 13.5C13.4028 13.5 11.5 15.4028 11.5 17.75ZM18.5 17C18.4168 17 18.3352 17.0068 18.2558 17.0198C18.1353 17.0395 18.0197 17.0736 17.9107 17.1202C17.8597 16.9451 17.7881 16.7789 17.6986 16.6243C17.3095 15.9522 16.5825 15.5 15.75 15.5C14.5074 15.5 13.5 16.5074 13.5 17.75C13.5 18.9926 14.5074 20 15.75 20H18.5C19.3284 20 20 19.3284 20 18.5C20 17.6716 19.3284 17 18.5 17Z\" fill=\"currentColor\"/><Path d=\"M13.5 17.75C13.5 18.9926 14.5074 20 15.75 20H18.5C19.3284 20 20 19.3284 20 18.5C20 17.6716 19.3284 17 18.5 17C18.2908 17 18.0916 17.0428 17.9107 17.1202C17.6383 16.1841 16.774 15.5 15.75 15.5C14.5074 15.5 13.5 16.5074 13.5 17.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageCloud;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAonC,EAApnC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0IAA0I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0gBAA0gB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wOAAwO,KAAK,eAAc,CAAI,EAC5nC,EAEc",
  "debugId": "AC66F29754F09B8664756E2164756E21",
  "names": []
}