{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSankeyChart/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 IconSankeyChart: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"sankey-chart\"><path d=\"M20.25 5C20.6642 5 21 5.33579 21 5.75C21 6.16421 20.6642 6.5 20.25 6.5C18.5432 6.5 17.2383 7.17622 16.083 8.25195C15.3273 8.9557 14.6514 9.81489 13.9824 10.7568C15.8176 12.3139 17.6847 13.5 20.25 13.5C20.6642 13.5 21 13.8358 21 14.25C21 14.6642 20.6642 15 20.25 15C17.2331 15 15.0338 13.602 13.127 12C13.0328 12.1392 12.9371 12.2788 12.8418 12.4199C12.499 12.9272 12.1453 13.4452 11.7764 13.959C11.9895 14.0973 12.2014 14.2348 12.4111 14.3721C14.9177 16.0128 17.2206 17.5 20.25 17.5C20.6642 17.5 21 17.8358 21 18.25C21 18.6642 20.6642 19 20.25 19C16.7097 19 14.0474 17.2372 11.5889 15.6279C11.3459 15.4689 11.1043 15.3122 10.8643 15.1572C9.1541 17.2574 7.00683 19 3.75 19C3.33579 19 3 18.6642 3 18.25C3 17.8358 3.33579 17.5 3.75 17.5C6.31113 17.5 8.04507 16.2027 9.5791 14.3564C7.7818 13.2918 5.95936 12.5 3.75 12.5C3.33579 12.5 3 12.1642 3 11.75C3 11.3358 3.33579 11 3.75 11C6.39802 11 8.55517 11.9857 10.5029 13.1562C10.8689 12.651 11.2321 12.1226 11.5986 11.5801C11.7281 11.3885 11.859 11.1958 11.9902 11.002C11.8242 10.8518 11.6584 10.7033 11.4951 10.5547C9.13156 8.40341 7.00074 6.5 3.75 6.5C3.33579 6.5 3 6.16421 3 5.75C3 5.33579 3.33579 5 3.75 5C7.66051 5 10.1991 7.34659 12.5049 9.44531C12.6205 9.55058 12.7369 9.65392 12.8516 9.75781C13.5264 8.81713 14.2476 7.91128 15.0605 7.1543C16.4222 5.88636 18.0764 5 20.25 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSankeyChart;\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,gBAAm4C,EAAn4C,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,+yCAA+yC,KAAK,eAAc,CAAI,GAG73C",
  "debugId": "AE9AFF038DB9C94C64756E2164756E21",
  "names": []
}