@activecollab/components
Version:
ActiveCollab Components
17 lines • 611 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["radius"];
import React from "react";
import { ProgressCircle } from "../ProgressRing";
export const ProgressPie = _ref => {
let {
radius = 20
} = _ref,
rest = _objectWithoutPropertiesLoose(_ref, _excluded);
return /*#__PURE__*/React.createElement(ProgressCircle, _extends({}, rest, {
stroke: radius,
radius: radius
}));
};
ProgressPie.displayName = "ProgressPie";
//# sourceMappingURL=ProgressPie.js.map