{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHatSparkle/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 IconHatSparkle: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"hat-sparkle, magic hat\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 8.00024C9.67486 8.00024 7.54288 8.25645 5.96903 8.68568C5.18748 8.89883 4.50079 9.16598 3.99189 9.49412C3.51657 9.8006 3 10.2924 3 11.0002C3 11.7081 3.51657 12.1999 3.99189 12.5064C4.28416 12.6948 4.63508 12.8632 5.02892 13.0127C5.00994 13.079 5 13.1484 5 13.219V19.573C5 20.2626 5.41379 20.9402 6.13364 21.1784C7.69968 21.6966 9.86448 22.0003 12 22.0003C14.1355 22.0003 16.3003 21.6966 17.8664 21.1784C18.5862 20.9402 19 20.2626 19 19.573V13.219C19 13.1484 18.9901 13.079 18.9711 13.0127C19.3649 12.8632 19.7158 12.6948 20.0081 12.5064C20.4834 12.1999 21 11.7081 21 11.0002C21 10.2924 20.4834 9.8006 20.0081 9.49412C19.4992 9.16598 18.8125 8.89883 18.031 8.68568C16.4571 8.25645 14.3251 8.00024 12 8.00024ZM4.80476 11.2457C4.62021 11.1267 4.54481 11.0424 4.51514 11.0002C4.54481 10.9581 4.62021 10.8738 4.80476 10.7548C5.13081 10.5445 5.6523 10.3268 6.36371 10.1328C7.77577 9.74772 9.76879 9.50024 12 9.50024C14.2312 9.50024 16.2242 9.74772 17.6363 10.1328C18.3477 10.3268 18.8692 10.5445 19.1952 10.7548C19.3798 10.8738 19.4552 10.9581 19.4849 11.0002C19.4552 11.0424 19.3798 11.1267 19.1952 11.2457C18.8692 11.456 18.3477 11.6736 17.6363 11.8677C16.2242 12.2528 14.2312 12.5002 12 12.5002C9.76879 12.5002 7.77577 12.2528 6.36371 11.8677C5.6523 11.6736 5.13081 11.456 4.80476 11.2457Z\" fill=\"currentColor\"/><path d=\"M13.0747 2.85106L13.5529 1.89456C13.7372 1.52603 14.2631 1.52603 14.4473 1.89456L14.9256 2.85106C14.974 2.94782 15.0524 3.02628 15.1492 3.07467L16.1057 3.55292C16.4742 3.73718 16.4742 4.26308 16.1057 4.44734L15.1492 4.92559C15.0524 4.97398 14.974 5.05244 14.9256 5.1492L14.4473 6.1057C14.2631 6.47423 13.7372 6.47423 13.5529 6.1057L13.0747 5.1492C13.0263 5.05244 12.9478 4.97398 12.8511 4.92559L11.8946 4.44734C11.526 4.26308 11.526 3.73718 11.8946 3.55292L12.8511 3.07467C12.9478 3.02628 13.0263 2.94782 13.0747 2.85106Z\" fill=\"currentColor\"/><path d=\"M8.2265 4.04761L8.64243 3.21574C8.78984 2.92092 9.21056 2.92092 9.35797 3.21574L9.77391 4.04761C9.81261 4.12502 9.87538 4.18779 9.95279 4.2265L10.7847 4.64243C11.0795 4.78984 11.0795 5.21056 10.7847 5.35797L9.95279 5.77391C9.87538 5.81261 9.81261 5.87538 9.77391 5.95279L9.35797 6.78466C9.21056 7.07948 8.78984 7.07948 8.64243 6.78466L8.2265 5.95279C8.18779 5.87538 8.12502 5.81261 8.04761 5.77391L7.21574 5.35797C6.92092 5.21056 6.92092 4.78984 7.21574 4.64243L8.04761 4.2265C8.12502 4.18779 8.18779 4.12502 8.2265 4.04761Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHatSparkle;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAs+E,EAAt+E,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6wCAA6wC,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4gBAA4gB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+gBAA+gB,KAAK,eAAc,CAAI,GAGh+E",
  "debugId": "EEC064F7545BEF1B64756E2164756E21",
  "names": []
}