{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBubbleHeart/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 IconBubbleHeart: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bubble-heart, comment, feedback\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.75 3C3.33579 3 3 3.33579 3 3.75V18.25C3 18.6642 3.33579 19 3.75 19H8.74274L11.5161 21.3248C11.7936 21.5574 12.1976 21.5585 12.4764 21.3275L15.2858 19H20.25C20.6642 19 21 18.6642 21 18.25V3.75C21 3.33579 20.6642 3 20.25 3H3.75ZM11.9994 14.2801C12.2703 14.2801 15.2507 12.7448 15.2507 10.6675C15.2507 9.22252 14.3475 8.5 13.4444 8.5C12.5412 8.5 11.9994 9.04189 11.9994 9.04189C11.9994 9.04189 11.4575 8.5 10.5543 8.5C9.65119 8.5 8.74805 9.22252 8.74805 10.6675C8.74805 12.7448 11.7284 14.2801 11.9994 14.2801Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBubbleHeart;\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,gBAA8oB,EAA9oB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,igBAAigB,KAAK,eAAc,CAAI,GAGxoB",
  "debugId": "459664B0B33C8E4464756E2164756E21",
  "names": []
}