{
  "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=\"M11.3083 3.19169C11.0777 2.99528 10.7515 2.95691 10.4816 3.09445C10.2116 3.23199 10.051 3.51841 10.0743 3.82046L10.4103 8.1707L6.69338 10.4559C6.4353 10.6146 6.29802 10.9129 6.34542 11.2121C6.39281 11.5113 6.61556 11.7527 6.91003 11.8238L10.2969 12.6422L3.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.7028L12.1759 17.0897C12.2471 17.3842 12.4884 17.6069 12.7876 17.6543C13.0869 17.7017 13.3852 17.5644 13.5439 17.3064L15.8291 13.5895L20.1793 13.9255C20.4813 13.9488 20.7678 13.7881 20.9053 13.5182C21.0428 13.2482 21.0045 12.9221 20.8081 12.6914L17.9792 9.3695L19.6431 5.336C19.7586 5.05595 19.6943 4.73389 19.4801 4.51967C19.2659 4.30546 18.9438 4.24115 18.6637 4.35668L14.6302 6.02052L11.3083 3.19169Z\" 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,gBAA+2B,EAA/2B,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,0wBAA0wB,KAAK,eAAc,CAAI,GAGz2B",
  "debugId": "5FDC89C94AF5E30964756E2164756E21",
  "names": []
}