{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBubbleCrossed/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 IconBubbleCrossed: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bubble-crossed, comment, feedback\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3.75C3 3.33579 3.33579 3 3.75 3H20.25C20.6642 3 21 3.33579 21 3.75V18.25C21 18.6642 20.6642 19 20.25 19H15.2858L12.4764 21.3275C12.1976 21.5585 11.7936 21.5574 11.5161 21.3248L8.74274 19H3.75C3.33579 19 3 18.6642 3 18.25V3.75ZM14.6517 9.38346C14.9445 9.09057 14.9445 8.61569 14.6517 8.3228C14.3588 8.02991 13.8839 8.02991 13.591 8.3228L12 9.91379L10.409 8.3228C10.1161 8.02991 9.64124 8.02991 9.34835 8.3228C9.05546 8.61569 9.05546 9.09057 9.34835 9.38346L10.9393 10.9745L9.34835 12.5654C9.05546 12.8583 9.05546 13.3332 9.34835 13.6261C9.64124 13.919 10.1161 13.919 10.409 13.6261L12 12.0351L13.591 13.6261C13.8839 13.919 14.3588 13.919 14.6517 13.6261C14.9445 13.3332 14.9445 12.8583 14.6517 12.5654L13.0607 10.9745L14.6517 9.38346Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBubbleCrossed;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAk3B,EAAl3B,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,muBAAmuB,KAAK,eAAc,CAAI,GAG52B",
  "debugId": "824068490332E5F564756E2164756E21",
  "names": []
}