{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconUfo/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 IconUfo: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconUfo\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.03067 6.44307C6.14148 6.61284 5.323 6.82772 4.59858 7.08127C3.63251 7.41939 2.77943 7.84498 2.14832 8.36721C1.52358 8.88418 1 9.59983 1 10.5C1 11.8211 2.09809 12.7401 3.20273 13.3213C4.05652 13.7704 5.13069 14.1383 6.34526 14.414L2.62052 20.3115L4.3115 21.3795L10.6119 11.4038C11.5504 11.2517 12.4496 11.2517 13.3881 11.4038L19.6885 21.3795L21.3795 20.3115L17.6547 14.414C18.8693 14.1383 19.9435 13.7704 20.7973 13.3213C21.9019 12.7401 23 11.8211 23 10.5C23 9.59983 22.4764 8.88418 21.8517 8.36721C21.2206 7.84498 20.3675 7.41939 19.4014 7.08127C18.677 6.82772 17.8585 6.61284 16.9693 6.44307C16.6923 3.94376 14.5732 2 12 2C9.42683 2 7.30765 3.94376 7.03067 6.44307ZM9.12461 6.14158C10.0428 6.04895 11.0076 6 12 6C12.9924 6 13.9572 6.04895 14.8754 6.14158C14.5062 4.90302 13.3585 4 12 4C10.6415 4 9.49383 4.90302 9.12461 6.14158Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconUfo;\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,EAA4D,EAAM,KAAK,CAAC,IAAU,CAC7F,OAAO,gBAAq9B,EAAr9B,IAAqB,EAAO,OAAO,2CAA0C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m0BAAm0B,KAAK,eAAc,CAAI,EAC79B,EAEc",
  "debugId": "40A34C079FA0D0A064756E2164756E21",
  "names": []
}