{
  "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=\"M17.25 3C19.3211 3 21 4.67893 21 6.75V15.25C21 17.3211 19.3211 19 17.25 19H15.376C15.3178 19 15.2616 19.0205 15.2168 19.0576L13.1182 20.7959C12.4677 21.3348 11.5254 21.3317 10.8779 20.7891L8.8125 19.0586C8.76749 19.0209 8.7101 19 8.65137 19H6.75C4.67893 19 3 17.3211 3 15.25V6.75C3 4.67893 4.67893 3 6.75 3H17.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,gBAAwmC,EAAxmC,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s9BAAs9B,KAAK,eAAc,CAAI,GAGlmC",
  "debugId": "00C2430150869C8864756E2164756E21",
  "names": []
}