{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDiscoBall/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 IconDiscoBall: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconDiscoBall\"><Path d=\"M6.0498 18.9502L8 19.7002V20.2998L6.0498 21.0498L5.2998 23H4.7002L3.9502 21.0498L2 20.2998V19.7002L3.9502 18.9502L4.7002 17H5.2998L6.0498 18.9502Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13 3.24902C13.369 3.4404 13.6815 3.72293 13.9355 4.02734C14.3988 4.58247 14.7712 5.32638 15.0645 6.15723C15.3552 6.98111 15.5861 7.94415 15.7461 9H20.8652L21.082 9.70605C21.3538 10.5906 21.5 11.5293 21.5 12.5C21.5 17.7467 17.2467 22 12 22C11.1724 22 10.523 21.5222 10.0645 20.9727C9.60124 20.4175 9.22879 19.6736 8.93555 18.8428C8.6448 18.0189 8.41389 17.0559 8.25391 16H3.13477L2.91797 15.2939C2.64618 14.4094 2.5 13.4707 2.5 12.5C2.5 7.59103 6.22332 3.55144 11 3.05176V1H13V3.24902ZM15.7461 16C15.5861 17.0559 15.3552 18.0189 15.0645 18.8428C14.9913 19.05 14.9123 19.2514 14.8291 19.4463C16.4655 18.7788 17.8137 17.5511 18.6338 16H15.7461ZM10.0508 11C10.019 11.4841 10 11.9853 10 12.5C10 13.0147 10.019 13.5159 10.0508 14H13.9492C13.981 13.5159 14 13.0147 14 12.5C14 11.9853 13.981 11.4841 13.9492 11H10.0508ZM9.16992 5.55273C7.53371 6.22025 6.18618 7.44908 5.36621 9H8.25391C8.41389 7.94415 8.6448 6.98111 8.93555 6.15723C9.00875 5.94981 9.08667 5.74773 9.16992 5.55273Z\" fill=\"currentColor\"/><Path d=\"M19.8496 1L20.7246 3.27539L23 4.15039V4.84961L20.7246 5.72461L19.8496 8H19.1504L18.2754 5.72461L16 4.84961V4.15039L18.2754 3.27539L19.1504 1H19.8496Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDiscoBall;\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,gBAAg9C,EAAh9C,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i9BAAi9B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,CAAI,EACx9C,EAEc",
  "debugId": "D9F8555F2578DCAD64756E2164756E21",
  "names": []
}