{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFortuneTellerBall/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 IconFortuneTellerBall: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconFortuneTellerBall\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 11.0357C3 13.72 4.16641 16.1313 6.01723 17.786L4.61255 22H19.3874L17.9827 17.786C19.8336 16.1313 21 13.72 21 11.0357C21 6.04963 16.9748 2 12 2C7.02524 2 3 6.04963 3 11.0357ZM7.72073 19L7.3874 20H16.6125L16.2792 19H7.72073ZM12.375 7.375C12.8116 6.93838 13 6 13 6C13 6 13.1884 6.93838 13.625 7.375C14.0616 7.81162 15 8 15 8C15 8 14.0616 8.18838 13.625 8.625C13.1884 9.06162 13 10 13 10C13 10 12.8116 9.06162 12.375 8.625C11.9384 8.18838 11 8 11 8C11 8 11.9384 7.81162 12.375 7.375ZM15.5 9C15.5 9 15.2645 10.173 14.7188 10.7188C14.173 11.2645 13 11.5 13 11.5C13 11.5 14.173 11.7355 14.7188 12.2812C15.2645 12.827 15.5 14 15.5 14C15.5 14 15.7355 12.827 16.2812 12.2812C16.827 11.7355 18 11.5 18 11.5C18 11.5 16.827 11.2645 16.2812 10.7188C15.7355 10.173 15.5 9 15.5 9Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFortuneTellerBall;\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,EAA0E,EAAM,KAAK,CAAC,IAAU,CAC3G,OAAO,gBAAk6B,EAAl6B,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kwBAAkwB,KAAK,eAAc,CAAI,EAC16B,EAEc",
  "debugId": "BF5856853EEEA47464756E2164756E21",
  "names": []
}