{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRainy/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 IconRainy: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconRainy\"><Path d=\"M10.0385 20.3031L9.84157 20.7626L10.7607 21.1565L10.9577 20.697L10.0385 20.3031ZM5.03853 20.3031L4.84157 20.7626L5.76072 21.1565L5.95768 20.697L5.03853 20.3031ZM15.0385 20.3031L14.8416 20.7626L15.7607 21.1565L15.9577 20.697L15.0385 20.3031ZM14.7892 5.66477L14.3487 5.90138L14.538 6.25382L14.9234 6.14641L14.7892 5.66477ZM11.5385 16.8031L10.0385 20.3031L10.9577 20.697L12.4577 17.197L11.5385 16.8031ZM6.53853 16.8031L5.03853 20.3031L5.95768 20.697L7.45768 17.197L6.53853 16.8031ZM16.5385 16.8031L15.0385 20.3031L15.9577 20.697L17.4577 17.197L16.5385 16.8031ZM9.5 15H16V14H9.5V15ZM16 5C15.5347 5 15.0835 5.06369 14.655 5.18313L14.9234 6.14641C15.2654 6.05111 15.6263 6 16 6V5ZM21 10C21 7.23858 18.7614 5 16 5V6C18.2091 6 20 7.79086 20 10H21ZM16 15C18.7614 15 21 12.7614 21 10H20C20 12.2091 18.2091 14 16 14V15ZM3 8.5C3 12.0899 5.91015 15 9.5 15V14C6.46243 14 4 11.5376 4 8.5H3ZM9.5 2C5.91015 2 3 4.91015 3 8.5H4C4 5.46243 6.46243 3 9.5 3V2ZM15.2297 5.42816C14.1341 3.38857 11.9796 2 9.5 2V3C11.5968 3 13.4204 4.17321 14.3487 5.90138L15.2297 5.42816Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRainy;\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,EAA8D,EAAM,KAAK,CAAC,IAAU,CAC/F,OAAO,gBAA0oC,EAA1oC,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,0hCAA0hC,KAAK,eAAc,CAAI,EAClpC,EAEc",
  "debugId": "9D263F04DA724CDE64756E2164756E21",
  "names": []
}