NK
circular: (props: IProgressProps): Object => {
const { calculateRatio, mode, value } = props;
if (mode !== ProgressModes.Indeterminate) return {};
const xScale = 2 * Math.PI * 25;
const x = xScale * calculateRatio(value);
const y = 400;
return { strokeDasharray: ${x}, ${y} };
},


