{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBubbleSparkle/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 IconBubbleSparkle: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bubble-sparkle, message, like, heart\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.25 3C20.6642 3 21 3.33579 21 3.75V18.25C21 18.6642 20.6642 19 20.25 19H15.2861L12.4766 21.3271C12.1979 21.558 11.7941 21.5574 11.5166 21.3252L8.74316 19H3.75C3.33579 19 3 18.6642 3 18.25V3.75C3 3.33579 3.33579 3 3.75 3H20.25ZM11.999 7C11.7581 7 11.5416 7.14825 11.4551 7.37305L10.7588 9.18555C10.6572 9.44956 10.4476 9.65821 10.1836 9.75977L8.37207 10.4561C8.14715 10.5426 7.99902 10.759 7.99902 11C7.99902 11.241 8.14715 11.4574 8.37207 11.5439L10.1836 12.2402C10.4476 12.3418 10.6572 12.5504 10.7588 12.8145L11.4551 14.627C11.5416 14.8518 11.7581 15 11.999 15C12.2398 14.9999 12.4554 14.8516 12.542 14.627L13.2393 12.8145C13.3409 12.5505 13.5495 12.3418 13.8135 12.2402L15.625 11.5439C15.8499 11.4574 15.999 11.241 15.999 11C15.999 10.759 15.8499 10.5426 15.625 10.4561L13.8135 9.75977C13.5495 9.65823 13.3409 9.44947 13.2393 9.18555L12.542 7.37305C12.4554 7.14841 12.2398 7.0001 11.999 7Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBubbleSparkle;\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,gBAAohC,EAAphC,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k4BAAk4B,KAAK,eAAc,CAAI,GAG9gC",
  "debugId": "AA21383083D42B0764756E2164756E21",
  "names": []
}