{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSunburstChart2/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 IconSunburstChart2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"sunburst-chart-2\"><path d=\"M17.6745 18.3425C17.9832 18.0662 18.4579 18.0924 18.7341 18.4011C19.0099 18.7096 18.9837 19.1835 18.6755 19.4597C17.1662 20.8105 15.2415 21.7112 13.1169 21.946C12.7055 21.9912 12.3354 21.6943 12.2898 21.2829C12.2443 20.8712 12.5411 20.5003 12.9529 20.4548C14.7564 20.2554 16.3904 19.4917 17.6745 18.3425ZM7.11594 15.8356C7.40881 15.5431 7.88369 15.543 8.17648 15.8356C9.1577 16.8168 10.5113 17.4225 12.0075 17.4225C12.4215 17.4227 12.7574 17.7586 12.7575 18.1725C12.7575 18.5866 12.4216 18.9224 12.0075 18.9225C10.0977 18.9225 8.36694 18.148 7.11594 16.8972C6.82304 16.6043 6.82304 16.1285 7.11594 15.8356ZM2.73019 12.2878C3.14168 12.2425 3.51176 12.5394 3.55734 12.9509C3.74039 14.6063 4.39877 16.1191 5.39426 17.3493C5.65473 17.6713 5.60489 18.1435 5.28293 18.404C4.96094 18.6641 4.48868 18.6145 4.22824 18.2927C3.0579 16.8464 2.28269 15.0654 2.06711 13.1159C2.02159 12.7042 2.31849 12.3333 2.73019 12.2878ZM17.4245 12.0056C17.4245 10.631 16.9135 9.37709 16.07 8.42157C15.7962 8.11103 15.826 7.63701 16.1364 7.36297C16.447 7.08894 16.9209 7.11887 17.195 7.42938C18.271 8.64839 18.9245 10.2516 18.9245 12.0056C18.9244 13.7594 18.271 15.3628 17.195 16.5817C16.9209 16.8921 16.4469 16.9212 16.1364 16.6472C15.826 16.373 15.796 15.8991 16.07 15.5886C16.9134 14.6331 17.4244 13.38 17.4245 12.0056ZM8.17355 12.0056C8.17355 10.9471 8.60364 9.98758 9.2966 9.29461C9.69608 8.89514 10.1837 8.58217 10.7292 8.38934C11.1197 8.25133 11.5482 8.45682 11.6862 8.84735C11.8241 9.2378 11.6197 9.66638 11.2292 9.80438C10.8986 9.92126 10.6014 10.1109 10.3571 10.3552C9.93399 10.7783 9.67355 11.3609 9.67355 12.0056C9.67364 12.6501 9.93406 13.2329 10.3571 13.6559C10.7803 14.0789 11.363 14.3386 12.0075 14.3386C12.6521 14.3385 13.2348 14.079 13.6579 13.6559C13.902 13.4118 14.0918 13.1143 14.2087 12.7839C14.3468 12.3933 14.7752 12.1878 15.1657 12.3259C15.5562 12.464 15.7608 12.8934 15.6228 13.2839C15.4299 13.8292 15.1178 14.3172 14.7185 14.7165C14.0256 15.4094 13.0659 15.8385 12.0075 15.8386C10.9492 15.8386 9.98954 15.4093 9.2966 14.7165C8.60371 14.0236 8.17364 13.0639 8.17355 12.0056ZM5.08957 12.0056C5.08957 10.0955 5.86491 8.36497 7.11594 7.11395C7.40883 6.82107 7.88359 6.82106 8.17648 7.11395C8.46919 7.40685 8.46931 7.88166 8.17648 8.1745C7.19526 9.15572 6.58957 10.5093 6.58957 12.0056C6.58939 12.4196 6.25367 12.7555 5.83957 12.7556C5.42546 12.7556 5.08974 12.4196 5.08957 12.0056ZM18.403 5.27899C18.7116 5.00284 19.1854 5.02917 19.4616 5.33758C20.8124 6.84689 21.7132 8.77069 21.948 10.8952C21.9934 11.3068 21.6964 11.6777 21.2849 11.7233C20.8733 11.7688 20.5024 11.4718 20.4568 11.0602C20.2574 9.25652 19.4938 7.62181 18.3445 6.33758C18.0684 6.02892 18.0944 5.55517 18.403 5.27899ZM10.8972 2.06512C11.3088 2.01978 11.6788 2.3166 11.7243 2.72821C11.7697 3.13978 11.4728 3.50986 11.0612 3.55536C9.25766 3.75481 7.62369 4.51932 6.33957 5.66864C6.03103 5.94454 5.55719 5.91828 5.28098 5.61004C5.00473 5.3014 5.03092 4.82672 5.33957 4.55047C6.84883 3.19972 8.77274 2.29997 10.8972 2.06512Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSunburstChart2;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAggG,EAAhgG,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,w6FAAw6F,KAAK,eAAc,CAAI,GAG1/F",
  "debugId": "179DE2416D991BCD64756E2164756E21",
  "names": []
}