{
  "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-outlined-radius-0-stroke-1-IconFortuneTellerBall\"><Path d=\"M16.5 9C16.5 9 16.2645 10.173 15.7188 10.7188C15.173 11.2645 14 11.5 14 11.5C14 11.5 15.173 11.7355 15.7188 12.2812C16.2645 12.827 16.5 14 16.5 14C16.5 14 16.7355 12.827 17.2812 12.2812C17.827 11.7355 19 11.5 19 11.5C19 11.5 17.827 11.2645 17.2812 10.7188C16.7355 10.173 16.5 9 16.5 9Z\" fill=\"currentColor\"/><Path d=\"M14 6C14 6 13.8116 6.93838 13.375 7.375C12.9384 7.81162 12 8 12 8C12 8 12.9384 8.18838 13.375 8.625C13.8116 9.06162 14 10 14 10C14 10 14.1884 9.06162 14.625 8.625C15.0616 8.18838 16 8 16 8C16 8 15.0616 7.81162 14.625 7.375C14.1884 6.93838 14 6 14 6Z\" fill=\"currentColor\"/><Path d=\"M16.5 19.296C19.1901 17.7398 21 14.8313 21 11.5C21 6.52944 16.9706 2.5 12 2.5C7.02944 2.5 3 6.52944 3 11.5C3 14.8313 4.80989 17.7398 7.5 19.296M6.75 19.5L6 21.5H18L17.25 19.5H6.75Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,2DAA0D,gBAAC,EAAD,CAAM,EAAE,gSAAgS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4PAA4P,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uLAAuL,OAAO,eAAe,cAAc,SAAQ,CAAI,EAC16B,EAEc",
  "debugId": "D4530B7759D08FDC64756E2164756E21",
  "names": []
}