{"version":3,"sources":["../src/IconDiscoBall/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDiscoBall: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"disco-ball, music, dance, party\">\n      <path\n        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\"\n        fill=\"currentColor\"\n      />\n      <path\n        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        d=\"M12.75 3.14551C13.166 3.31002 13.5272 3.59985 13.8281 3.94238C14.2988 4.47839 14.6888 5.21129 15.001 6.05176C15.3331 6.94605 15.5929 8.00727 15.7646 9.17676H20.9199L21.082 9.70605C21.3537 10.5903 21.5 11.5289 21.5 12.5C21.5 17.7467 17.2467 22 12 22C11.2571 22 10.6414 21.5921 10.1719 21.0576C9.70118 20.5216 9.3112 19.7887 8.99902 18.9482C8.66686 18.0539 8.40706 16.9927 8.23535 15.8232H3.08008L2.91797 15.2939C2.64626 14.4097 2.5 13.4711 2.5 12.5C2.5 7.50577 6.35396 3.41371 11.25 3.03125V1H12.75V3.14551ZM15.7646 15.8232C15.5929 16.9927 15.3331 18.0539 15.001 18.9482C14.8464 19.3645 14.6716 19.7538 14.4785 20.1064C16.6126 19.4109 18.3522 17.8434 19.2764 15.8232H15.7646ZM9.57422 10.6768C9.5265 11.2617 9.5 11.8717 9.5 12.5C9.5 13.1283 9.5265 13.7383 9.57422 14.3232H14.4258C14.4735 13.7383 14.5 13.1283 14.5 12.5C14.5 11.8717 14.4735 11.2617 14.4258 10.6768H9.57422ZM9.52051 4.89258C7.38673 5.58821 5.64768 7.15681 4.72363 9.17676H8.23535C8.40706 8.00727 8.66686 6.94605 8.99902 6.05176C9.15368 5.63537 9.3273 5.2453 9.52051 4.89258Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        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\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconDiscoBall;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,mCACpCC,EAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ghCACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconDiscoBall","props","React","CentralIconBase","IconDiscoBall_default"]}