{
  "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-outlined-radius-0-stroke-1-IconCloudySun\"><Path d=\"M23.5 9.5H22.5M10.5503 4.55025L9.84315 3.84315M20.4504 4.55025L21.1575 3.84314M15.5 2.5V1.5M18.7897 11.7761C19.2376 11.13 19.5 10.3457 19.5 9.5C19.5 7.29086 17.7091 5.5 15.5 5.5C13.4602 5.5 11.777 7.02684 11.5309 9M2.5 14.5V15C2.5 18.5899 5.41015 21.5 9 21.5H16.5C19.2614 21.5 21.5 19.2614 21.5 16.5C21.5 14.504 20.3304 12.7811 18.6391 11.9794C17.9906 11.672 17.2654 11.5 16.5 11.5C15.5993 11.5 14.7543 11.7381 14.0244 12.1549C13.5141 10.9543 12.6239 9.95417 11.5047 9.30539C10.6211 8.79321 9.59478 8.5 8.5 8.5C5.18629 8.5 2.5 11.1863 2.5 14.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,gBAAgrB,EAAhrB,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,miBAAmiB,OAAO,eAAe,cAAc,SAAQ,CAAI,EACxrB,EAEc",
  "debugId": "7578361EC0C1FA1964756E2164756E21",
  "names": []
}