index.tsx 435 B

12345678910111213141516171819202122
  1. type ProgressBarProps = {
  2. percent: number
  3. color: string
  4. }
  5. const ProgressBar = ({
  6. percent = 0,
  7. color = '#2970FF',
  8. }: ProgressBarProps) => {
  9. return (
  10. <div className='bg-[#F2F4F7] rounded-[4px] overflow-hidden'>
  11. <div
  12. className='h-2 rounded-[4px]'
  13. style={{
  14. width: `${Math.min(percent, 100)}%`,
  15. backgroundColor: color,
  16. }}
  17. />
  18. </div>
  19. )
  20. }
  21. export default ProgressBar