{
  "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-IconDebugger\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.3301 3.08724C11.06 3.02982 10.7945 3.20225 10.7371 3.47236L10.4252 4.93958L12.3815 5.3554L12.6934 3.88818C12.7508 3.61807 12.5784 3.35256 12.3083 3.29515L11.3301 3.08724ZM13.3596 5.56331L13.6715 4.09609C13.8438 3.28577 13.3265 2.48924 12.5162 2.317L11.538 2.10909C10.7277 1.93685 9.93117 2.45412 9.75893 3.26444L9.44706 4.73167L7.97984 4.4198C6.6293 4.13273 5.30175 4.99485 5.01469 6.34539L2.6237 17.5941C2.33664 18.9446 3.19875 20.2722 4.54929 20.5592L11.3963 22.0146C12.7469 22.3017 14.0744 21.4396 14.3615 20.089L16.7525 8.84033C17.0395 7.48979 16.1774 6.16225 14.8269 5.87518L13.3596 5.56331ZM7.87529 10.4258C8.10688 10.2754 8.41655 10.3412 8.56695 10.5728L9.8351 12.5256L11.7879 11.2574C12.0195 11.107 12.3291 11.1728 12.4795 11.4044C12.6299 11.636 12.5641 11.9457 12.3325 12.0961L10.3797 13.3642L11.6479 15.317C11.7983 15.5486 11.7325 15.8583 11.5009 16.0087C11.2693 16.1591 10.9596 16.0932 10.8092 15.8616L9.54107 13.9089L7.58828 15.177C7.35669 15.3274 7.04703 15.2616 6.89663 15.03C6.74623 14.7984 6.81205 14.4887 7.04364 14.3383L8.99643 13.0702L7.72828 11.1174C7.57788 10.8858 7.6437 10.5762 7.87529 10.4258Z\" fill=\"currentColor\"/><Path d=\"M17 4.25C17 4.66421 16.6642 5 16.25 5C15.8358 5 15.5 4.66421 15.5 4.25C15.5 3.83579 15.8358 3.5 16.25 3.5C16.6642 3.5 17 3.83579 17 4.25Z\" fill=\"currentColor\"/><Path d=\"M19.5 3C19.5 3.41421 19.1642 3.75 18.75 3.75C18.3358 3.75 18 3.41421 18 3C18 2.58579 18.3358 2.25 18.75 2.25C19.1642 2.25 19.5 2.58579 19.5 3Z\" fill=\"currentColor\"/><Path d=\"M19.5 5.5C19.5 5.91421 19.1642 6.25 18.75 6.25C18.3358 6.25 18 5.91421 18 5.5C18 5.08579 18.3358 4.75 18.75 4.75C19.1642 4.75 19.5 5.08579 19.5 5.5Z\" fill=\"currentColor\"/><Path d=\"M22 6.75C22 7.16421 21.6642 7.5 21.25 7.5C20.8358 7.5 20.5 7.16421 20.5 6.75C20.5 6.33579 20.8358 6 21.25 6C21.6642 6 22 6.33579 22 6.75Z\" fill=\"currentColor\"/><Path d=\"M22 1.75C22 2.16421 21.6642 2.5 21.25 2.5C20.8358 2.5 20.5 2.16421 20.5 1.75C20.5 1.33579 20.8358 1 21.25 1C21.6642 1 22 1.33579 22 1.75Z\" fill=\"currentColor\"/><Path d=\"M22 4.25C22 4.66421 21.6642 5 21.25 5C20.8358 5 20.5 4.66421 20.5 4.25C20.5 3.83579 20.8358 3.5 21.25 3.5C21.6642 3.5 22 3.83579 22 4.25Z\" 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,gBAAgwE,EAAhwE,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,omCAAomC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iJAAiJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uJAAuJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,CAAI,CACxwE,EAEc",
  "debugId": "A20C7A736CA762A364756E2164756E21",
  "names": []
}