{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBalloon/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 IconBalloon: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"balloon, birthday\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.66796 3.24354C7.31747 1.77658 9.56558 1 12 1C14.4344 1 16.6825 1.77658 18.332 3.24354C19.9911 4.71902 21 6.85505 21 9.46679C21 12.7516 19.6127 15.3641 17.8133 17.1487C16.7863 18.1672 15.6035 18.936 14.4416 19.4034L14.9146 20.6124C15.3637 21.7601 14.5173 23 13.2849 23H10.7153C9.48292 23 8.6366 21.7602 9.08551 20.6125L9.55844 19.4034C8.39651 18.936 7.21374 18.1672 6.18671 17.1487C4.38732 15.3641 3 12.7516 3 9.46679C3 6.85505 4.00886 4.71902 5.66796 3.24354ZM11.0024 19.8297L10.4824 21.1589C10.4183 21.3229 10.5392 21.5 10.7153 21.5H13.2849C13.461 21.5 13.5819 21.3229 13.5177 21.1589L12.9977 19.8297C12.6543 19.8927 12.32 19.925 12 19.925C11.68 19.925 11.3457 19.8927 11.0024 19.8297ZM11.3281 6.54926L12.0528 6.49814C12.4557 6.46971 12.7638 6.12728 12.7495 5.72359C12.7353 5.31991 12.4039 5 12 5C11.7082 5 11.4209 5.02036 11.1402 5.06077C9.01151 5.36729 7.26856 6.84397 7.02792 9.17521C6.98539 9.58724 7.28492 9.95572 7.69695 9.99825C8.10897 10.0408 8.47746 9.74125 8.51999 9.32923C8.67852 7.79342 9.78586 6.78077 11.3281 6.54926Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBalloon;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA6oC,EAA7oC,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8gCAA8gC,KAAK,eAAc,CAAI,GAGvoC",
  "debugId": "2E67E71A5302CC1664756E2164756E21",
  "names": []
}