first commit
This commit is contained in:
8
ui/app/workspace/logs/views/blockHeader.tsx
Normal file
8
ui/app/workspace/logs/views/blockHeader.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function BlockHeader({ title, icon }: { title: string; icon?: React.ReactNode }) {
|
||||
return (
|
||||
<div className="flex items-center gap-2">
|
||||
{icon && <span className="shrink-0">{icon}</span>}
|
||||
<div className="text-sm font-medium">{title}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user