| 176 | } |
| 177 | |
| 178 | interface CircularUIProps { |
| 179 | label: string; |
| 180 | circles: CircleConfig[]; |
| 181 | className?: string; |
| 182 | } |
| 183 | |
| 184 | const CircularUI = ({ label, circles, className }: CircularUIProps) => ( |
| 185 | <div className={className}> |
nothing calls this directly
no outgoing calls
no test coverage detected