{
  "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=\"M7.88527 2.20529C6.59207 1.54777 5.09642 2.63226 5.32279 4.06671L6.0366 8.58986C6.0504 8.67734 6.02156 8.76623 5.9588 8.82904L2.72124 12.069C1.69472 13.0963 2.26664 14.8529 3.7 15.0808L7.62472 15.7046L3.80115 20.7999C3.55253 21.1312 3.61956 21.6013 3.95086 21.8499C4.28217 22.0985 4.75229 22.0315 5.0009 21.7002L8.78856 16.6528L10.5113 20.0267C11.1713 21.3193 13.0188 21.3193 13.6788 20.0267L15.7614 15.9481C15.8017 15.8691 15.8775 15.814 15.9654 15.8L20.4901 15.0808C21.9234 14.8529 22.4954 13.0963 21.4688 12.069L18.2313 8.82904C18.1685 8.76623 18.1397 8.67734 18.1535 8.58986L18.8673 4.06671C19.0937 2.63226 17.598 1.54777 16.3048 2.20529L12.2213 4.28153C12.142 4.32185 12.0481 4.32185 11.9688 4.28153L7.88527 2.20529Z\" 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,gBAA4yB,EAA5yB,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,otBAAotB,KAAK,eAAc,CAAI,GAGtyB",
  "debugId": "6FC217B7765255C364756E2164756E21",
  "names": []
}