import { CircularProgressbar, buildStyles } from "react-circular-progressbar"; interface ProgressPieProps { value: number; } function ProgressPie({ value }: ProgressPieProps) { return ( ); } export default ProgressPie;