{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStarWand/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 IconStarWand: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"star-wand, magic\"><path d=\"M6.56679 2.10154C6.31557 1.97375 6.01392 1.9976 5.7859 2.16327C5.55788 2.32894 5.44199 2.60847 5.48591 2.88688L6.42955 8.86914L2.14955 13.1543C1.95036 13.3537 1.8798 13.648 1.9669 13.916C2.054 14.1841 2.28404 14.3807 2.5624 14.425L7.64749 15.2337L3.4723 20.8C3.22376 21.1314 3.29089 21.6015 3.62225 21.85C3.95361 22.0985 4.42371 22.0314 4.67226 21.7001L8.89693 16.0677L11.2972 20.7706C11.4253 21.0217 11.6833 21.1797 11.9652 21.1797C12.247 21.1797 12.5051 21.0217 12.6332 20.7706L15.3864 15.3762L21.368 14.425C21.6464 14.3807 21.8764 14.1841 21.9635 13.916C22.0506 13.648 21.98 13.3537 21.7808 13.1543L17.5008 8.86914L18.4445 2.88688C18.4884 2.60847 18.3725 2.32895 18.1445 2.16327C17.9165 1.9976 17.6148 1.97375 17.3636 2.10154L11.9652 4.84758L6.56679 2.10154Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconStarWand;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAo1B,EAAp1B,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,4vBAA4vB,KAAK,eAAc,CAAI,GAG90B",
  "debugId": "C3FDFEA9D45444D364756E2164756E21",
  "names": []
}