styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 945 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var DoughnutChart = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M17.96 10.949H22C21.529 6.232 17.768 2.471 13.051 2v4.04a6.004 6.004 0 014.909 4.909z", key: "k0" }),
React.createElement("path", { d: "M12.051 17.949c-3.309 0-6-2.691-6-6 0-2.967 2.167-5.432 5-5.909V2c-5.046.504-9 4.773-9 9.949 0 5.514 4.486 10 10 10 5.176 0 9.445-3.954 9.949-9h-4.04c-.478 2.833-2.942 5-5.909 5z", key: "k1" })));
});
DoughnutChart.displayName = 'DoughnutChart';
export var DoughnutChartDimensions = { height: 24, width: 24 };