type ProgressBarProps = { percent: number color: string } const ProgressBar = ({ percent = 0, color = '#2970FF', }: ProgressBarProps) => { return (