{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRoulette1/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 IconRoulette1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconRoulette1\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.06189 11H5.50001V13H4.06189C4.1538 13.737 4.34597 14.443 4.62433 15.1036L5.87083 14.384L6.87083 16.116L5.62576 16.8349C6.06659 17.4152 6.58485 17.9334 7.16514 18.3743L7.88399 17.1292L9.61603 18.1292L8.89637 19.3757C9.55705 19.654 10.263 19.8462 11 19.9381V18.5H13V19.9381C13.737 19.8462 14.4429 19.654 15.1036 19.3757L14.384 18.1292L16.116 17.1292L16.8349 18.3742C17.4152 17.9334 17.9334 17.4152 18.3742 16.8349L17.1292 16.116L18.1292 14.384L19.3757 15.1037C19.654 14.443 19.8462 13.7371 19.9381 13H18.5V11H19.9381C19.8462 10.263 19.654 9.55705 19.3757 8.89635L18.1292 9.61603L17.1292 7.88398L18.3742 7.16513C17.9334 6.58484 17.4152 6.06659 16.8349 5.62576L16.116 6.87085L14.384 5.87085L15.1037 4.62433C14.443 4.34597 13.7371 4.1538 13 4.06189V5.5H11V4.06189C10.263 4.1538 9.55704 4.34597 8.89634 4.62433L9.61602 5.87084L7.88397 6.87084L7.16512 5.62576C6.58483 6.06659 6.06658 6.58485 5.62575 7.16514L6.87084 7.88399L5.87084 9.61604L4.62432 8.89637C4.34597 9.55705 4.1538 10.263 4.06189 11ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM7.5 9C7.5 8.17157 8.17157 7.5 9 7.5C9.82843 7.5 10.5 8.17157 10.5 9C10.5 9.028 10.4992 9.05583 10.4977 9.08346L11.0864 9.67219C11.3694 9.56104 11.6776 9.5 12 9.5C12.3224 9.5 12.6306 9.56104 12.9136 9.67219L13.5023 9.08355C13.5008 9.05589 13.5 9.02804 13.5 9C13.5 8.17157 14.1716 7.5 15 7.5C15.8284 7.5 16.5 8.17157 16.5 9C16.5 9.82843 15.8284 10.5 15 10.5C14.972 10.5 14.9442 10.4992 14.9165 10.4977L14.3278 11.0864C14.439 11.3694 14.5 11.6776 14.5 12C14.5 12.3224 14.439 12.6306 14.3278 12.9136L14.9165 13.5023C14.9442 13.5008 14.972 13.5 15 13.5C15.8284 13.5 16.5 14.1716 16.5 15C16.5 15.8284 15.8284 16.5 15 16.5C14.1716 16.5 13.5 15.8284 13.5 15C13.5 14.972 13.5008 14.9441 13.5023 14.9165L12.9136 14.3278C12.6306 14.439 12.3224 14.5 12 14.5C11.6776 14.5 11.3694 14.439 11.0864 14.3278L10.4977 14.9165C10.4992 14.9442 10.5 14.972 10.5 15C10.5 15.8284 9.82843 16.5 9 16.5C8.17157 16.5 7.5 15.8284 7.5 15C7.5 14.1716 8.17157 13.5 9 13.5C9.02804 13.5 9.05589 13.5008 9.08355 13.5023L9.67219 12.9136C9.56104 12.6306 9.5 12.3224 9.5 12C9.5 11.6776 9.56104 11.3694 9.67219 11.0864L9.08355 10.4977C9.05589 10.4992 9.02804 10.5 9 10.5C8.17157 10.5 7.5 9.82843 7.5 9Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRoulette1;\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,gBAAu3E,EAAv3E,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+tEAA+tE,KAAK,eAAc,CAAI,EAC/3E,EAEc",
  "debugId": "4404802FB941D89564756E2164756E21",
  "names": []
}