mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
- Move stores/utils/types to their relative directories (i.e chat stores in chat directory) - Move utility files to shared/utils - Move component files to shared/components - Move type definitions to shared/types - Move stores to shared/stores - Update import paths across the project
21 lines
548 B
TypeScript
21 lines
548 B
TypeScript
import { memo } from 'react';
|
|
import { classNames } from '~/shared/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>
|
|
);
|
|
});
|