{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFire1/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 IconFire1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconFire1\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1.35938L12.4825 1.62401L12.4848 1.62528L12.4914 1.62896L12.5127 1.64089C12.5304 1.65088 12.5551 1.66493 12.5862 1.68301C12.6485 1.71916 12.7368 1.77146 12.8474 1.83969C13.0684 1.97607 13.3792 2.17651 13.75 2.43914C14.4898 2.96325 15.477 3.74128 16.4669 4.75936C18.435 6.78328 20.5 9.84836 20.5 13.8121C20.5 16.4934 19.4387 18.5705 17.8048 19.9627C16.1923 21.3365 14.0772 21.9992 12.0003 21.9999C9.92346 22.0006 7.80813 21.3395 6.19532 19.9657C4.56102 18.5737 3.5 16.4957 3.5 13.8121C3.5 9.84836 5.565 6.78328 7.53307 4.75936C8.52305 3.74128 9.51024 2.96325 10.25 2.43914C10.6208 2.17651 10.9316 1.97607 11.1526 1.83969C11.2632 1.77146 11.3515 1.71916 11.4138 1.68301C11.4449 1.66493 11.4696 1.65088 11.4873 1.64089L11.5086 1.62896L11.5152 1.62528L11.5175 1.62401L12 1.35938ZM10.7886 13.0602C11.2229 12.6065 11.6593 12.25 12 11.9999C12.3407 12.25 12.7771 12.6065 13.2114 13.0602C14.1495 14.0402 15 15.3879 15 17.0488C15 18.1124 14.6009 18.8222 14.0785 19.2743C13.5364 19.7435 12.7851 19.9996 11.9996 19.9999C11.214 20.0002 10.4631 19.7446 9.92142 19.2759C9.3994 18.8242 9 18.1143 9 17.0488C9 15.3879 9.85051 14.0402 10.7886 13.0602Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFire1;\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,gBAAswC,EAAtwC,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,knCAAknC,KAAK,eAAc,CAAI,EAC9wC,EAEc",
  "debugId": "C994A57577F1197964756E2164756E21",
  "names": []
}