{
  "version": 3,
  "sources": ["src/IconMagicHands/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMagicHands: React.NamedExoticComponent<CentralIconBaseProps> = React.memo(React.forwardRef<SVGSVGElement, CentralIconBaseProps>((props, ref) => {\n  return <CentralIconBase {...props} ref={ref} ariaLabel={\"magic-hands, rainbow-hands\"} maskId=\"square-filled-radius-0-stroke-1-IconMagicHands\"><path d=\"M4.64344 8.85197C5.86641 5.99787 8.70066 4 12.0004 4C15.3001 4 18.1344 5.99787 19.3574 8.85197L19.5543 9.31155L20.4735 8.91769L20.2765 8.45811C18.9016 5.2494 15.7143 3 12.0004 3C8.28653 3 5.09918 5.2494 3.72427 8.45811L3.52734 8.91769L4.44651 9.31155L4.64344 8.85197Z\" fill=\"currentColor\"/><path d=\"M6.56694 9.44772C7.52656 7.40929 9.59857 6 11.9987 6C14.3989 6 16.4709 7.40929 17.4305 9.44772L17.6435 9.90009L18.5482 9.47416L18.3353 9.02179C17.2169 6.64611 14.8005 5 11.9987 5C9.19691 5 6.78057 6.64611 5.66218 9.02179L5.44922 9.47416L6.35398 9.90009L6.56694 9.44772Z\" fill=\"currentColor\"/><path d=\"M8.4998 10.0616C9.18301 8.831 10.4946 8 11.9997 8C13.5047 8 14.8164 8.831 15.4996 10.0616L15.7423 10.4987L16.6166 10.0133L16.3739 9.57619C15.5215 8.04087 13.8825 7 11.9997 7C10.1169 7 8.4779 8.04087 7.62551 9.57619L7.38281 10.0133L8.25711 10.4987L8.4998 10.0616Z\" fill=\"currentColor\"/><path d=\"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.81068 13.1251L8.16622 13.7236L8.06239 13.4384Z\" fill=\"currentColor\"/><path d=\"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.8345 13.7236L14.19 13.1251L13.4816 15.0716C12.8204 16.888 13.757 18.8965 15.5734 19.5576L16.5131 19.8996C18.3295 20.5608 20.338 19.6242 20.9991 17.8078L21.8114 15.576C22.4017 13.9542 21.5655 12.1609 19.9437 11.5707Z\" fill=\"currentColor\"/></CentralIconBase>;\n}));\n\nexport default IconMagicHands;\n",
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\ntype Props = CentralIconBaseProps & {\n  ariaLabel?: string;\n  /** Internal generated shapes that contain instance-scoped SVG references. */\n  renderShapes?: (instanceId: string) => React.ReactNode;\n};\ntype RenderProps = Props & { svgRef?: React.ForwardedRef<SVGSVGElement> };\n\nconst ModernCentralIconBase: React.FC<RenderProps> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: RenderProps },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return (\n            <CentralIconSvg\n              {...this.props.iconProps}\n              instanceId={this.state.instanceId}\n            />\n          );\n        }\n      };\n\nexport const CentralIconBase = React.forwardRef<SVGSVGElement, Props>(\n  (props, ref) =>\n    LegacyCentralIconBase ? (\n      <LegacyCentralIconBase iconProps={{ ...props, svgRef: ref }} />\n    ) : (\n      <ModernCentralIconBase {...props} svgRef={ref} />\n    ),\n);\nCentralIconBase.displayName = \"CentralIconBase\";\n\nconst CentralIconSvg: React.FC<RenderProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden,\n  \"aria-hidden\": ariaHiddenAttribute,\n  \"aria-label\": ariaLabelAttribute,\n  role,\n  svgRef,\n  renderShapes,\n  style,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\n  const masked = mode !== \"raw\" && !!maskId;\n  const hidden = ariaHiddenAttribute ?? ariaHidden ?? true;\n  const isHidden = hidden === true || hidden === \"true\";\n  const label = ariaLabelAttribute ?? ariaLabel;\n  const shapes = renderShapes\n    ? renderShapes(uniqueMaskId ?? instanceId ?? \"icon\")\n    : children;\n  return (\n    <svg\n      {...props}\n      ref={svgRef}\n      aria-hidden={hidden}\n      aria-label={ariaLabelAttribute}\n      role={role ?? (isHidden ? 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      {label && !isHidden && <title>{label}</title>}\n      {masked ? (\n        <>\n          <mask\n            id={uniqueMaskId}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n              {shapes}\n            </g>\n          </mask>\n          <rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        shapes\n      )}\n    </svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBAiBA,IAAM,EAA+C,CAAC,IAAU,CAC9D,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OACE,gBAAC,EAAD,IACM,KAAK,MAAM,UACf,WAAY,KAAK,MAAM,WACzB,EAGN,EAEO,EAAkB,EAAM,WACnC,CAAC,EAAO,IACN,EACE,gBAAC,EAAD,CAAuB,UAAW,IAAK,EAAO,OAAQ,CAAI,EAAG,EAE7D,gBAAC,EAAD,IAA2B,EAAO,OAAQ,EAAK,CAErD,EACA,EAAgB,YAAc,kBAE9B,IAAM,EAAkE,EACtE,WACA,OAAO,GACP,YACA,QACA,aACA,cAAe,EACf,aAAc,EACd,OACA,SACA,eACA,QACA,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,EAAS,IAAS,OAAS,CAAC,CAAC,EAC7B,EAAS,GAAuB,GAAc,GAC9C,EAAW,IAAW,IAAQ,IAAW,OACzC,EAAQ,GAAsB,EAC9B,EAAS,EACX,EAAa,GAAgB,GAAc,MAAM,EACjD,EACJ,OACE,gBAuCE,MAvCF,IACM,EACJ,IAAK,EACL,cAAa,EACb,aAAY,EACZ,KAAM,IAAS,EAAW,OAAY,OACtC,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAS,CAAC,GAAY,gBAAgB,QAAhB,KAAQ,CAAQ,EACtC,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GD1HC,IAAM,EAAmE,EAAM,KAAK,EAAM,WAAgD,CAAC,EAAO,IAChJ,gBAA8nD,EAA9nD,IAAqB,EAAO,IAAK,EAAK,UAAW,6BAA8B,OAAO,kDAAiD,gBAAC,OAAD,CAAM,EAAE,8QAA8Q,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gRAAgR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yQAAyQ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+RAA+R,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8RAA8R,KAAK,eAAc,CAAI,CACtoD,CAAC,EAEa",
  "debugId": "7F670C5BBE75619F64756E2164756E21",
  "names": []
}