{
  "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.6812 4.36077C11.6654 3.49572 10.1104 4.28802 10.2132 5.6183L10.4103 8.17068L8.2295 9.51145C7.09288 10.2102 7.36588 11.9339 8.66281 12.2473L10.2969 12.6421L3.21967 19.7193C2.92678 20.0122 2.92678 20.4871 3.21967 20.78C3.51256 21.0729 3.98743 21.0729 4.28033 20.78L11.3576 13.7028L11.7524 15.3369C12.0658 16.6338 13.7895 16.9069 14.4883 15.7702L15.8291 13.5895L18.3814 13.7866C19.7117 13.8893 20.504 12.3344 19.639 11.3185L17.9792 9.36949L18.9554 7.00295C19.4642 5.76952 18.2302 4.53549 16.9968 5.04429L14.6302 6.0205L12.6812 4.36077Z\" 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,gBAAgoB,EAAhoB,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,2hBAA2hB,KAAK,eAAc,CAAI,GAG1nB",
  "debugId": "DCF4F85E62B8AEF864756E2164756E21",
  "names": []
}