{
  "version": 3,
  "sources": ["src/IconBurnTokens/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBurnTokens: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconBurnTokens\"><Path d=\"M15.9434 9.02637C16.0992 8.97409 16.2708 9.00104 16.4023 9.09961C17.4988 9.92211 18.2425 10.8156 18.6455 11.8457C18.8898 12.4703 18.9997 13.1268 19.001 13.8223C19.3562 13.3675 19.7069 12.9044 19.8496 12.7041L19.9209 12.624C19.9999 12.5524 20.1009 12.5075 20.209 12.4971C20.353 12.4832 20.4956 12.5323 20.6006 12.6318C21.4602 13.4471 21.8145 14.4874 21.9443 15.5117L21.9766 15.8164C22.2382 18.9286 20.3012 21.0635 17.9785 21.7549C15.5912 22.4654 12.7329 21.6633 11.4492 18.8447C10.6798 17.1498 10.9299 15.465 11.9609 13.9717C12.3085 13.4686 12.7339 13.0212 13.1504 12.623C14.2722 11.5529 15.2026 10.8271 15.6221 9.3623L15.6689 9.25C15.7292 9.1456 15.8265 9.06562 15.9434 9.02637Z\" fill=\"currentColor\"/><Path d=\"M10.75 2C14.9462 2 18.4515 4.95343 19.3027 8.89453C19.361 9.16428 19.1896 9.4298 18.9199 9.48828C18.65 9.54658 18.3835 9.37539 18.3252 9.10547C17.5713 5.6151 14.4655 3 10.75 3C6.46979 3 3 6.46979 3 10.75C3 14.6306 5.85265 17.8453 9.5752 18.4111C9.8482 18.4526 10.0356 18.7084 9.99414 18.9814C9.95245 19.2542 9.69767 19.4419 9.4248 19.4004C5.22101 18.7614 2 15.1322 2 10.75C2 5.91751 5.91751 2 10.75 2Z\" fill=\"currentColor\"/><Path d=\"M9.95605 6.88086C10.455 6.59298 11.0758 6.61591 11.5518 6.94043L13.7822 8.46191C14.0098 8.6174 14.0689 8.92829 13.9141 9.15625C13.7586 9.38429 13.4469 9.44336 13.2188 9.28809L10.9883 7.76758C10.8297 7.65946 10.6223 7.65126 10.4561 7.74707L8.25293 9.01953C8.09834 9.10883 8.003 9.27363 8.00293 9.45215V12.0479C8.003 12.2264 8.09834 12.3912 8.25293 12.4805L10.1885 13.5986C10.4272 13.7367 10.5097 14.0423 10.3721 14.2812C10.2341 14.5203 9.92757 14.6016 9.68848 14.4639L7.75293 13.3467C7.28889 13.0788 7.003 12.5837 7.00293 12.0479V9.45215C7.003 8.91633 7.28889 8.42124 7.75293 8.15332L9.95605 6.88086Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBurnTokens;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAAm0D,EAAn0D,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,yqBAAyqB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oZAAoZ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0lBAA0lB,KAAK,eAAc,CAAI,CAC30D,EAEc",
  "debugId": "CAC5B93385AD93D364756E2164756E21",
  "names": []
}