{
  "version": 3,
  "sources": ["src/IconBugFace/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 IconBugFace: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconBugFace\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.60006 3.22728C4.02963 2.63498 4.76948 2 5.92308 2C7.71257 2 8.84739 3.41563 9.57012 4.90696C9.6282 5.02682 9.68429 5.14847 9.73845 5.27146C10.4624 5.09421 11.2208 5 12.0013 5C12.781 5 13.5386 5.094 14.2618 5.27088C14.3159 5.14808 14.3719 5.02663 14.4299 4.90696C15.1526 3.41563 16.2874 2 18.0769 2C19.2305 2 19.9704 2.63498 20.3999 3.22728C20.6136 3.52185 20.7574 3.81339 20.8478 4.02999C20.8933 4.139 20.9261 4.23094 20.948 4.29739C20.959 4.33068 20.9673 4.35772 20.9731 4.37749L20.9801 4.40161L20.9822 4.40938L20.9829 4.41215L20.9835 4.41416C21.0539 4.68117 20.8945 4.95472 20.6275 5.02514C20.361 5.09542 20.088 4.93682 20.017 4.67077L20.0165 4.66918L20.0139 4.66C20.0109 4.64986 20.0058 4.63304 19.9983 4.61049C19.9834 4.56529 19.9594 4.49773 19.925 4.41533C19.8556 4.24912 19.747 4.03023 19.5904 3.81439C19.2796 3.38586 18.8079 3 18.0769 3C16.9049 3 16.0205 3.91772 15.3298 5.34306C15.2946 5.41556 15.2603 5.48885 15.2266 5.56282C18.5931 6.78392 21.0027 9.86141 21.0027 13.5C21.0027 18.2226 16.9436 22 12.0013 22C7.0591 22 3 18.2226 3 13.5C3 9.86224 5.40843 6.78532 8.77373 5.56365C8.73998 5.4894 8.70549 5.41583 8.67022 5.34306C7.97948 3.91772 7.09508 3 5.92308 3C5.19206 3 4.72037 3.38586 4.40956 3.81439C4.25302 4.03023 4.14438 4.24912 4.07497 4.41533C4.04056 4.49773 4.01658 4.56529 4.00168 4.61049C3.99425 4.63304 3.98913 4.64986 3.98614 4.66L3.98307 4.67069C3.91201 4.93679 3.639 5.09543 3.37249 5.02514C3.10548 4.95472 2.94635 4.68026 3.01677 4.41325L3.01707 4.41215L3.01781 4.40938L3.01995 4.40161L3.02687 4.37749C3.0327 4.35772 3.04099 4.33067 3.05196 4.29739C3.07387 4.23094 3.10667 4.139 3.15219 4.02999C3.24264 3.81339 3.38641 3.52185 3.60006 3.22728ZM10.5 13.75C10.5 14.7165 9.82843 15.5 9 15.5C8.17157 15.5 7.5 14.7165 7.5 13.75C7.5 12.7835 8.17157 12 9 12C9.82843 12 10.5 12.7835 10.5 13.75ZM13.5 17C13.5 17.5523 12.8284 18 12 18C11.1716 18 10.5 17.5523 10.5 17C10.5 16.4477 11.1716 16 12 16C12.8284 16 13.5 16.4477 13.5 17ZM15 15.5C15.8284 15.5 16.5 14.7165 16.5 13.75C16.5 12.7835 15.8284 12 15 12C14.1716 12 13.5 12.7835 13.5 13.75C13.5 14.7165 14.1716 15.5 15 15.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBugFace;\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,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAAmsE,EAAnsE,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8iEAA8iE,KAAK,eAAc,CAAI,CAC3sE,EAEc",
  "debugId": "AC3DCF49FA32F68664756E2164756E21",
  "names": []
}