{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCherryOnTop/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 IconCherryOnTop: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cherry-on-top, cake, birthday\"><path d=\"M22 20.0003C21.9998 20.5524 21.5522 21.0003 21 21.0003H3C2.44783 21.0003 2.00018 20.5524 2 20.0003V17.5003H15.25C15.6641 17.5003 15.9998 17.1643 16 16.7503C16 16.3361 15.6642 16.0003 15.25 16.0003H2V12.5003H22V20.0003Z\" fill=\"currentColor\"/><path d=\"M13.5254 2.12039C13.7995 1.97247 14.1303 1.95984 14.418 2.09207C18.3455 3.89756 20.6735 6.58296 21.9551 10.7034C21.9853 10.8006 21.999 10.9009 21.999 11.0003H2C2.00027 10.6865 2.14862 10.3834 2.41211 10.1917L6.23438 7.41043C6.91232 8.65534 8.2327 9.50028 9.75 9.50028C11.959 9.50028 13.7498 7.70926 13.75 5.50028C13.75 4.43257 13.3301 3.4637 12.6484 2.74637L13.4121 2.19168L13.5254 2.12039Z\" fill=\"currentColor\"/><path d=\"M9.75 3.00028C11.1307 3.00028 12.25 4.11956 12.25 5.50028C12.2498 6.88083 11.1306 8.00028 9.75 8.00028C8.3694 8.00028 7.25018 6.88083 7.25 5.50028C7.25 4.11956 8.36929 3.00028 9.75 3.00028Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCherryOnTop;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAq8B,EAAr8B,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,6NAA6N,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yYAAyY,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gMAAgM,KAAK,eAAc,CAAI,GAG/7B",
  "debugId": "8B4210C413D7E95A64756E2164756E21",
  "names": []
}