{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPieChart3/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 IconPieChart3: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pie-chart-3, graph, statistics\"><path d=\"M11.25 12C11.25 12.0197 11.2533 12.0391 11.2549 12.0586C11.2568 12.0832 11.2573 12.1082 11.2617 12.1328L11.2646 12.1475C11.2652 12.1504 11.266 12.1533 11.2666 12.1562C11.2754 12.1972 11.2876 12.2381 11.3037 12.2783C11.307 12.2866 11.3109 12.2946 11.3145 12.3027C11.3523 12.3886 11.4042 12.4641 11.4668 12.5273L18.5186 19.5791C16.7678 21.0863 14.4914 22 12 22C6.47715 22 2 17.5228 2 12C2 6.72951 6.07754 2.41389 11.25 2.03027V12Z\" fill=\"currentColor\"/><path d=\"M21.5391 8.99121C21.8383 9.94084 22 10.9515 22 12C22 14.4914 21.0863 16.7678 19.5791 18.5186L13.334 12.2734L21.5391 8.99121Z\" fill=\"currentColor\"/><path d=\"M12.75 2.03027C16.3725 2.29894 19.4567 4.49565 20.9805 7.59961L12.75 10.8916V2.03027Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPieChart3;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAsyB,EAAtyB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,+aAA+a,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wFAAwF,KAAK,eAAc,CAAI,GAGhyB",
  "debugId": "23C24D30960C3DA164756E2164756E21",
  "names": []
}