@heroicons/react
Version:
23 lines (21 loc) • 676 B
JavaScript
const React = require("react");
function ChartPieIcon(props) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
stroke: "currentColor",
"aria-hidden": "true"
}, props), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2,
d: "M11 3.055A9.001 9.001 0 1020.945 13H11V3.055z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2,
d: "M20.488 9H15V3.512A9.025 9.025 0 0120.488 9z"
}));
}
module.exports = ChartPieIcon;