| 3 | import chalk from 'chalk'; |
| 4 | |
| 5 | export interface StatProps { |
| 6 | value: string | number; |
| 7 | label: string; |
| 8 | sublabel?: string; |
| 9 | } |
| 10 | |
| 11 | export function createStat(props: StatProps): Component { |
| 12 | const container = new Container(); |
nothing calls this directly
no outgoing calls
no test coverage detected