| 2 | import { motion } from 'framer-motion' |
| 3 | |
| 4 | interface CircularProgressProps { |
| 5 | value: number |
| 6 | size?: number |
| 7 | strokeWidth?: number |
| 8 | fontSize?: number |
| 9 | } |
| 10 | |
| 11 | const CircularProgress: React.FC<CircularProgressProps> = ({ |
| 12 | value = 80, |
nothing calls this directly
no outgoing calls
no test coverage detected