{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMagicWand/index.tsx"],
  "sourcesContent": [
    "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",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMagicWand: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"magic-wand, magic stick, star\"><path d=\"M12.7659 3.58101C12.0887 3.00431 11.0521 3.53251 11.1206 4.41936L11.4103 8.17032L8.20542 10.1407C7.44767 10.6066 7.62968 11.7557 8.49429 11.9646L11.2969 12.6418L4.21967 19.719C3.92678 20.0118 3.92678 20.4867 4.21967 20.7796C4.51256 21.0725 4.98743 21.0725 5.28033 20.7796L12.3576 13.7024L13.0348 16.5051C13.2437 17.3697 14.3928 17.5517 14.8587 16.794L16.8291 13.5891L20.58 13.8788C21.4669 13.9473 21.9951 12.9106 21.4184 12.2334L18.9792 9.36912L20.4139 5.89128C20.7531 5.06899 19.9304 4.24631 19.1081 4.5855L15.6302 6.02013L12.7659 3.58101Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicWand;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,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,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAooB,EAApoB,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,+hBAA+hB,KAAK,eAAc,CAAI,GAG9nB",
  "debugId": "9C946305A5AB3A5564756E2164756E21",
  "names": []
}