{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCloudySun/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 IconCloudySun: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCloudySun\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.3608 8.13237C9.92008 8.04548 9.46501 8 9 8C5.13401 8 2 11.134 2 15C2 18.866 5.13401 22 9 22H16.5C19.5376 22 22 19.5376 22 16.5C22 14.612 21.0489 12.9478 19.6019 11.9578C19.8581 11.3561 20 10.694 20 10C20 7.23858 17.7614 5 15 5C12.8984 5 11.1007 6.29596 10.3608 8.13237ZM12.2499 8.79875C13.3326 9.36718 14.2475 10.2104 14.9027 11.2358C15.4088 11.0824 15.9453 11 16.5 11C16.9374 11 17.3636 11.0512 17.7727 11.1482C17.9192 10.795 18 10.4075 18 10C18 8.34315 16.6569 7 15 7C13.7708 7 12.7131 7.73998 12.2499 8.79875Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16 1V3.5H14V1H16ZM9.69531 2.78244L11.4631 4.55021L10.0489 5.96442L8.2811 4.19666L9.69531 2.78244ZM21.715 4.19666L19.9472 5.96442L18.533 4.55021L20.3008 2.78244L21.715 4.19666ZM21.5 8.5H24V10.5H21.5V8.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCloudySun;\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,gBAAg7B,EAAh7B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ugBAAugB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8MAA8M,KAAK,eAAc,CAAI,EACx7B,EAEc",
  "debugId": "E7D7C3A156463D3A64756E2164756E21",
  "names": []
}