(props: { className?: string; children: ReactNode })
| 2 | import { cn } from '@/lib/utils' |
| 3 | |
| 4 | export function ToolHeader(props: { className?: string; children: ReactNode }) { |
| 5 | return ( |
| 6 | <div |
| 7 | className={cn( |
| 8 | 'flex items-center gap-1 text-muted-foreground mb-1 font-semibold', |
| 9 | props.className |
| 10 | )} |
| 11 | > |
| 12 | {props.children} |
| 13 | </div> |
| 14 | ) |
| 15 | } |