{
  "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=\"square-filled-radius-0-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=\"M9.689 1.67729L14.5405 2.8869L13.6938 6.28294L17.0898 7.12966L13.34 22.1692L1.69645 19.2662L5.44624 4.2266L8.84228 5.07333L9.689 1.67729ZM10.2977 5.43621L12.2383 5.92005L12.7222 3.97946L10.7816 3.49562L10.2977 5.43621ZM8.39173 10.0517L9.64 12.2077L11.7544 10.8901L12.5477 12.1631L10.4127 13.4936L11.7011 15.5586L10.4285 16.3526L9.12674 14.2663L6.99793 15.4973L6.24703 14.1988L8.35408 12.9803L7.09361 10.8033L8.39173 10.0517Z\" 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,gBAA0jD,EAA1jD,IAAqB,EAAO,OAAO,kDAAiD,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,2aAA2a,KAAK,eAAc,CAAI,CAClkD,EAEc",
  "debugId": "A416D5FC40FB876064756E2164756E21",
  "names": []
}