({ label, children }: { label: string; children: React.ReactNode })
| 111 | } |
| 112 | |
| 113 | function Field({ label, children }: { label: string; children: React.ReactNode }) { |
| 114 | return ( |
| 115 | <div> |
| 116 | <div className="text-[10px] uppercase tracking-wide text-muted-foreground">{label}</div> |
| 117 | <div className="mt-0.5">{children}</div> |
| 118 | </div> |
| 119 | ); |
| 120 | } |
| 121 | |
| 122 | // 翻译 type/status/confidence 字段值(fallback 到原值) |
| 123 | export function tType(value: string | undefined, locale: Locale): string { |
nothing calls this directly
no outgoing calls
no test coverage detected