{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRoulette2/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 IconRoulette2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconRoulette2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8 1H16V2.83238C19.5307 4.37506 22 7.89803 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 7.89803 4.46929 4.37506 8 2.83239V1ZM9.11969 4.5339C8.38608 4.8171 7.7048 5.20528 7.09421 5.67998L9.17157 7.75729L7.75738 9.17152L5.68008 7.09428C4.81987 8.20104 4.24404 9.53958 4.06191 11H7V13H4.06189C4.24404 14.4607 4.81998 15.7991 5.68014 16.9056L7.75734 14.8284L9.17157 16.2426L7.09435 18.3199C8.20087 19.18 9.53929 19.756 11 19.9381V17H13V19.9381C14.4607 19.756 15.7991 19.18 16.9057 18.3199L14.8284 16.2426L16.2427 14.8284L18.3199 16.9056C19.18 15.7991 19.756 14.4607 19.9381 13H17V11H19.9381C19.756 9.53958 19.1801 8.20103 18.3199 7.09428L16.2426 9.17152L14.8284 7.75729L16.9058 5.67998C16.2952 5.20528 15.6139 4.8171 14.8803 4.5339L12 7.41421L9.11969 4.5339ZM9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRoulette2;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAA8gC,EAA9gC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s3BAAs3B,KAAK,eAAc,CAAI,EACthC,EAEc",
  "debugId": "B4B256740B3AC92964756E2164756E21",
  "names": []
}