{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFinderFace/index.tsx"],
  "sourcesContent": [
    "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\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\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={maskId}\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(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "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=\"square-filled-radius-0-stroke-2-IconFinderFace\"><Path d=\"M14.9033 2.42969C13.2541 5.89853 12.063 8.54155 11.2441 12H14.1992L13.9834 13.1797C13.7142 14.6503 13.5801 16.0824 13.5811 17.5146C15.1206 17.2099 16.7137 16.4566 18.4023 15.1982L19.5977 16.8018C17.634 18.265 15.6695 19.1935 13.6719 19.5293C13.7387 20.2861 13.842 21.0479 13.9834 21.8203L12.0166 22.1797C11.8615 21.3325 11.748 20.4958 11.6758 19.6641C9.21014 19.5838 6.80592 18.5929 4.40234 16.8018L5.59766 15.1982C7.7151 16.7761 9.68205 17.5609 11.582 17.6611C11.574 16.4459 11.6553 15.2315 11.8262 14H8.7793L9.01953 12.8027C9.88941 8.47456 11.251 5.45232 13.0967 1.57031L14.9033 2.42969Z\" fill=\"currentColor\"/><Path d=\"M8 10.5H6V6.5H8V10.5Z\" fill=\"currentColor\"/><Path d=\"M18 10.5H16V6.5H18V10.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFinderFace;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,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,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAgzB,EAAhzB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,glBAAglB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wBAAwB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2BAA2B,KAAK,eAAc,CAAI,EACxzB,EAEc",
  "debugId": "A692CA16BCFAB27064756E2164756E21",
  "names": []
}