{
  "version": 3,
  "sources": ["src/IconDeepSearch/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 IconDeepSearch: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconDeepSearch\"><Path d=\"M15.5 20.2939C15.7543 20.1867 16.0478 20.3063 16.1553 20.5605C16.2625 20.8148 16.1429 21.1084 15.8887 21.2158C14.6927 21.7211 13.3782 22 12 22C10.7941 22 9.63705 21.7864 8.56543 21.3945L8.11133 21.2158L8.02246 21.167C7.8306 21.0355 7.75085 20.7832 7.84473 20.5605C7.93876 20.338 8.1753 20.2189 8.40332 20.2646L8.5 20.2939L8.9082 20.4551C9.8718 20.8075 10.9129 21 12 21C13.2423 21 14.4248 20.7482 15.5 20.2939Z\" fill=\"currentColor\"/><Path d=\"M12 9C13.6569 9 15 10.3431 15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 7C14.7614 7 17 9.23858 17 12C17 13.2006 16.5764 14.3021 15.8711 15.1641L17.8535 17.1465L17.918 17.2246C18.0461 17.4187 18.0244 17.6827 17.8535 17.8535C17.6827 18.0244 17.4187 18.0461 17.2246 17.918L17.1465 17.8535L15.1641 15.8711C14.3021 16.5764 13.2006 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8Z\" fill=\"currentColor\"/><Path d=\"M2.83301 8.02246C2.96451 7.8306 3.21684 7.75085 3.43945 7.84473C3.69374 7.95216 3.81334 8.24569 3.70605 8.5C3.25178 9.57519 3 10.7577 3 12C3 13.0871 3.19245 14.1282 3.54492 15.0918L3.70605 15.5L3.73535 15.5967C3.78107 15.8247 3.66202 16.0612 3.43945 16.1553C3.21684 16.2492 2.96451 16.1694 2.83301 15.9775L2.78418 15.8887L2.60547 15.4346C2.21359 14.363 2 13.2059 2 12C2 10.6218 2.27893 9.30734 2.78418 8.11133L2.83301 8.02246Z\" fill=\"currentColor\"/><Path d=\"M20.5605 7.84473C20.7832 7.75085 21.0355 7.8306 21.167 8.02246L21.2158 8.11133L21.3945 8.56543C21.7864 9.63705 22 10.7941 22 12C22 13.3782 21.7211 14.6927 21.2158 15.8887C21.1084 16.1429 20.8148 16.2625 20.5605 16.1553C20.3063 16.0478 20.1867 15.7543 20.2939 15.5C20.7482 14.4248 21 13.2423 21 12C21 10.9129 20.8075 9.8718 20.4551 8.9082L20.2939 8.5L20.2646 8.40332C20.2189 8.1753 20.338 7.93876 20.5605 7.84473Z\" fill=\"currentColor\"/><Path d=\"M12 2C13.2059 2 14.363 2.21359 15.4346 2.60547L15.8887 2.78418L15.9775 2.83301C16.1694 2.96451 16.2492 3.21684 16.1553 3.43945C16.0612 3.66202 15.8247 3.78107 15.5967 3.73535L15.5 3.70605L15.0918 3.54492C14.1282 3.19245 13.0871 3 12 3C10.7577 3 9.57519 3.25178 8.5 3.70605C8.24569 3.81334 7.95216 3.69374 7.84473 3.43945C7.73749 3.18516 7.85706 2.89161 8.11133 2.78418C9.30734 2.27893 10.6218 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDeepSearch;\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,gBAAw8E,EAAx8E,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mHAAmH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ibAAib,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6aAA6a,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+ZAA+Z,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mZAAmZ,KAAK,eAAc,CAAI,CACh9E,EAEc",
  "debugId": "90BE6D041C5C4ECC64756E2164756E21",
  "names": []
}