{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWizardHat/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 IconWizardHat: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"wizard-hat, magician, fantasy\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.9593 19.4999H22V20.9999H2.75C2.33579 20.9999 2 20.6641 2 20.2499C2 19.8357 2.33579 19.4999 2.75 19.4999H4.04196L7.16876 11.8446L7.58507 12.0389C7.64053 12.0648 7.68511 12.1093 7.71099 12.1648L8.26389 13.3495C8.35746 13.55 8.64254 13.55 8.73611 13.3495L9.28901 12.1648C9.31489 12.1093 9.35947 12.0648 9.41493 12.0389L10.5996 11.486C10.8001 11.3924 10.8001 11.1073 10.5996 11.0138L9.41493 10.4609C9.35947 10.435 9.31489 10.3904 9.28901 10.335L8.73611 9.15024C8.64845 8.96241 8.39269 8.95056 8.28381 9.11467L10.7267 3.13369C11.2043 1.96451 12.7253 1.67072 13.6039 2.57795L18.753 7.89477C18.9626 8.11111 19.0223 8.43179 18.9049 8.70909C18.7874 8.9864 18.5154 9.16654 18.2143 9.16654H15.4265L19.9593 19.4999ZM12.5139 17.8495C12.6075 18.05 12.8925 18.05 12.9861 17.8495L13.539 16.6648C13.5649 16.6093 13.6095 16.5648 13.6649 16.5389L14.8496 15.986C15.0501 15.8924 15.0501 15.6073 14.8496 15.5138L13.6649 14.9609C13.6095 14.935 13.5649 14.8904 13.539 14.835L12.9861 13.6502C12.8925 13.4498 12.6075 13.4498 12.5139 13.6502L11.961 14.835C11.9351 14.8904 11.8905 14.935 11.8351 14.9609L10.6504 15.5138C10.4499 15.6073 10.4499 15.8924 10.6504 15.986L11.8351 16.5389C11.8905 16.5648 11.9351 16.6093 11.961 16.6648L12.5139 17.8495Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWizardHat;\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,gBAAo1C,EAAp1C,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ysCAAysC,KAAK,eAAc,CAAI,GAG90C",
  "debugId": "96702A372C7AE3A164756E2164756E21",
  "names": []
}