({
label,
value,
mono,
}: {
label: string;
value: string;
mono?: boolean;
})
| 452 | } |
| 453 | |
| 454 | function Field({ |
| 455 | label, |
| 456 | value, |
| 457 | mono, |
| 458 | }: { |
| 459 | label: string; |
| 460 | value: string; |
| 461 | mono?: boolean; |
| 462 | }) { |
| 463 | return ( |
| 464 | <div className="min-w-0"> |
| 465 | <div className="text-[9px] uppercase tracking-[0.15em] text-slate-500"> |
| 466 | {label} |
| 467 | </div> |
| 468 | <div |
| 469 | className={`truncate text-[11px] text-slate-900 ${ |
| 470 | mono ? "font-mono" : "" |
| 471 | }`} |
| 472 | title={value} |
| 473 | > |
| 474 | {value} |
| 475 | </div> |
| 476 | </div> |
| 477 | ); |
| 478 | } |
| 479 | |
| 480 | function SkillCard({ |
| 481 | skill, |
no outgoing calls
no test coverage detected