{
  "version": 3,
  "sources": ["src/IconFinderFace/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 IconFinderFace: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconFinderFace\"><Path d=\"M13.4216 2.05093C13.5399 1.80168 13.8382 1.69469 14.0876 1.81265C14.3369 1.93095 14.443 2.22924 14.3249 2.47866C12.6423 6.02557 11.4287 8.76979 10.6149 12.5001H11.7995C12.7423 12.5001 13.4287 13.349 13.3053 14.2521C13.1276 15.5506 13.0552 16.8279 13.0885 18.1095C15.0774 17.8879 17.0997 17.0609 19.2145 15.59C19.4412 15.4327 19.7523 15.4884 19.9098 15.715C20.0674 15.9416 20.0112 16.2526 19.7848 16.4103C17.5466 17.967 15.3477 18.877 13.1364 19.1105C13.1975 19.9998 13.3089 20.8945 13.4714 21.8029C13.5198 22.0746 13.3388 22.3344 13.0671 22.383C12.7954 22.4313 12.5356 22.2503 12.487 21.9787C12.3176 21.0316 12.2019 20.0979 12.1384 19.1691C12.0921 19.1697 12.0459 19.173 11.9997 19.173C9.40275 19.173 6.83601 18.2335 4.21453 16.4103C3.98785 16.2526 3.93192 15.9417 4.08953 15.715C4.24725 15.4886 4.55824 15.4325 4.78484 15.59C7.28684 17.3301 9.6585 18.173 11.9997 18.173C12.03 18.173 12.0602 18.1704 12.0905 18.1701C12.0534 16.8235 12.1274 15.4808 12.3141 14.1164C12.3595 13.7827 12.1051 13.5001 11.7995 13.5001H10.61C9.98021 13.5 9.49927 12.9199 9.63542 12.2951L9.79851 11.5851C10.6343 8.08737 11.8373 5.39066 13.4216 2.05093Z\" fill=\"currentColor\"/><Path d=\"M7.49968 7.00015C7.7756 7.00032 7.99956 7.22421 7.99968 7.50015V9.50015C7.99968 9.77618 7.77568 9.99998 7.49968 10.0001C7.22354 10.0001 6.99968 9.77629 6.99968 9.50015V7.50015C6.9998 7.22411 7.22361 7.00015 7.49968 7.00015Z\" fill=\"currentColor\"/><Path d=\"M16.4997 7.00015C16.7756 7.00032 16.9996 7.22421 16.9997 7.50015V9.50015C16.9997 9.77618 16.7757 9.99997 16.4997 10.0001C16.2235 10.0001 15.9997 9.77629 15.9997 9.50015V7.50015C15.9998 7.22411 16.2236 7.00015 16.4997 7.00015Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFinderFace;\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,gBAA4tD,EAA5tD,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,0mCAA0mC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kOAAkO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oOAAoO,KAAK,eAAc,CAAI,CACpuD,EAEc",
  "debugId": "3AC19A9437C177A664756E2164756E21",
  "names": []
}