{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGhost2/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 IconGhost2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconGhost2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.0015 2C16.4729 2.00025 19.9453 5.66301 20.0318 10.0635C20.0912 13.0887 20.3276 16.0264 21.0015 18.957C21.343 20.4424 19.9566 21.8753 18.4077 21.3838L15.8159 20.5605L12.7398 21.7832C12.2659 21.9714 11.7371 21.9713 11.2632 21.7832L8.18606 20.5605L5.59524 21.3838C4.04617 21.8757 2.65991 20.4425 3.00149 18.957C3.67532 16.0265 3.91178 13.0887 3.97121 10.0635C4.05766 5.66286 7.52982 2 12.0015 2ZM9.70071 7.5C8.98284 7.50018 8.4009 8.39554 8.4009 9.5C8.4009 10.6045 8.98284 11.4998 9.70071 11.5C10.4187 11.5 11.0005 10.6046 11.0005 9.5C11.0005 8.39543 10.4187 7.5 9.70071 7.5ZM14.3013 7.5C13.5833 7.5 13.0015 8.39543 13.0015 9.5C13.0015 10.6046 13.5833 11.5 14.3013 11.5C15.0191 11.4998 15.6011 10.6044 15.6011 9.5C15.6011 8.39557 15.0191 7.50022 14.3013 7.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGhost2;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA+4B,EAA/4B,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0vBAA0vB,KAAK,eAAc,CAAI,EACv5B,EAEc",
  "debugId": "146AE663ECEF31E164756E2164756E21",
  "names": []
}