{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHatBunny/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 IconHatBunny: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"hat-bunny, surprise, magic hat\"><path d=\"M19 12V18C19 19.6569 17.6569 21 16 21H8C6.34315 21 5 19.6569 5 18V12\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M3 12H21\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16.5 12.0001C17.5 10.5001 17.7838 9.12132 18 8.00011L19.999 8.25011C23.499 8.75011 17.5 2.25013 15.499 4.25011C13.504 6.24406 13.5025 8.48652 13.5 11.9685L13.5 12.0001\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><path d=\"M6.74526 12C6.53864 11.219 6.36319 10.3557 6.23274 9.44016C5.68297 5.58195 6.14046 2.25719 7.25456 2.01409C8.36867 1.771 9.7175 4.70163 10.2673 8.55984C10.4423 9.78802 10.5152 10.9621 10.4974 12\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconHatBunny;\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,gBAAg1B,EAAh1B,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,uEAAuE,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,2KAA2K,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qMAAqM,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAG10B",
  "debugId": "2F1C832436D64BC164756E2164756E21",
  "names": []
}