{
  "version": 3,
  "sources": ["src/IconDebugger/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 IconDebugger: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconDebugger\"><Path d=\"M17.5 5C17.5 5.55228 17.0523 6 16.5 6C15.9477 6 15.5 5.55228 15.5 5C15.5 4.44772 15.9477 4 16.5 4C17.0523 4 17.5 4.44772 17.5 5Z\" fill=\"currentColor\"/><Path d=\"M22.5 5C22.5 5.55228 22.0523 6 21.5 6C20.9477 6 20.5 5.55228 20.5 5C20.5 4.44772 20.9477 4 21.5 4C22.0523 4 22.5 4.44772 22.5 5Z\" fill=\"currentColor\"/><Path d=\"M20 3.75C20 4.30228 19.5523 4.75 19 4.75C18.4477 4.75 18 4.30228 18 3.75C18 3.19772 18.4477 2.75 19 2.75C19.5523 2.75 20 3.19772 20 3.75Z\" fill=\"currentColor\"/><Path d=\"M20 6.25C20 6.80228 19.5523 7.25 19 7.25C18.4477 7.25 18 6.80228 18 6.25C18 5.69772 18.4477 5.25 19 5.25C19.5523 5.25 20 5.69772 20 6.25Z\" fill=\"currentColor\"/><Path d=\"M22.5 2.5C22.5 3.05228 22.0523 3.5 21.5 3.5C20.9477 3.5 20.5 3.05228 20.5 2.5C20.5 1.94772 20.9477 1.5 21.5 1.5C22.0523 1.5 22.5 1.94772 22.5 2.5Z\" fill=\"currentColor\"/><Path d=\"M22.5 7.5C22.5 8.05228 22.0523 8.5 21.5 8.5C20.9477 8.5 20.5 8.05228 20.5 7.5C20.5 6.94772 20.9477 6.5 21.5 6.5C22.0523 6.5 22.5 6.94772 22.5 7.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.0544 3.56001C10.9204 3.5266 10.7848 3.60813 10.7514 3.7421L10.328 5.44012L12.2686 5.92396L12.6919 4.22594C12.7254 4.09197 12.6438 3.95629 12.5099 3.92289L11.0544 3.56001ZM13.724 6.28684L14.1474 4.58883C14.3812 3.65104 13.8105 2.70126 12.8727 2.46745L11.4173 2.10456C10.4795 1.87075 9.52973 2.44143 9.29591 3.37922L8.87255 5.07723L8.14483 4.89579C6.67116 4.52837 5.17866 5.42515 4.81123 6.89882L2.33153 16.8444C1.9641 18.318 2.86089 19.8105 4.33456 20.178L10.6415 21.7504C12.1151 22.1179 13.6077 21.2211 13.9751 19.7474L16.4548 9.80188C16.8222 8.32822 15.9254 6.83571 14.4518 6.46829L13.724 6.28684ZM7.77295 10.4314C8.13141 10.2238 8.59026 10.3462 8.7978 10.7047L9.67027 12.2116L11.1481 11.2906C11.4997 11.0716 11.9622 11.179 12.1813 11.5305C12.4004 11.8821 12.293 12.3446 11.9414 12.5637L10.4429 13.4975L11.3344 14.9262C11.5536 15.2776 11.4465 15.7403 11.0951 15.9595C10.7436 16.1788 10.281 16.0716 10.0617 15.7202L9.15701 14.2702L7.67747 15.1257C7.31889 15.3331 6.86011 15.2105 6.65276 14.8519C6.4454 14.4934 6.56799 14.0346 6.92656 13.8272L8.38435 12.9842L7.49968 11.4562C7.29214 11.0978 7.41448 10.6389 7.77295 10.4314Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDebugger;\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,EAAiE,EAAM,KAAK,CAAC,IACjF,gBAAuvE,EAAvvE,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,mIAAmI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mIAAmI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ymCAAymC,KAAK,eAAc,CAAI,CAC/vE,EAEc",
  "debugId": "0B258670A942718C64756E2164756E21",
  "names": []
}