// Copyright 2024 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; export function ProgressCircle({ fractionComplete, width = 24, strokeWidth = 3, }: { fractionComplete: number; width?: number; strokeWidth?: number; }): JSX.Element { const radius = width / 2 - strokeWidth / 2; const circumference = radius * 2 * Math.PI; return ( ); }