import React from 'react'; import './ProgressVariants.css'; const R = 42; const CIRC = 2 * Math.PI * R; const COLORS = { success: '#52C41A', warning: '#FA8C16', error: '#F5222D', normal: '#2F54EB' }; export default function ProgressVariants({ type = 'line', percent = 0, status = 'normal', showInfo = true }) { const color = COLORS[status] || COLORS.normal; if (type === 'line') { return (