mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +00:00
21 lines
541 B
TypeScript
21 lines
541 B
TypeScript
import { memo } from 'react';
|
|
import { classNames } from '~/utils/classNames';
|
|
|
|
interface PanelHeaderProps {
|
|
className?: string;
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export const PanelHeader = memo(({ className, children }: PanelHeaderProps) => {
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
'flex items-center gap-2 bg-bolt-elements-background-depth-2 text-bolt-elements-textSecondary border-b border-bolt-elements-borderColor px-4 py-1 min-h-[34px] text-sm',
|
|
className,
|
|
)}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
});
|