styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.07 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.DoughnutChart = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__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" })));
});
exports.DoughnutChart.displayName = 'DoughnutChart';
exports.DoughnutChartDimensions = { height: 24, width: 24 };