mirror of https://github.com/portainer/portainer
40 lines
899 B
TypeScript
40 lines
899 B
TypeScript
import { ComponentType, PropsWithChildren, ReactNode } from 'react';
|
|
import clsx from 'clsx';
|
|
|
|
import { Icon } from '@@/Icon';
|
|
|
|
interface Props {
|
|
icon?: ReactNode | ComponentType<unknown>;
|
|
label: string;
|
|
description?: ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export function TableTitle({
|
|
icon,
|
|
label,
|
|
children,
|
|
description,
|
|
className,
|
|
}: PropsWithChildren<Props>) {
|
|
return (
|
|
<>
|
|
<div className={clsx('toolBar flex-col', className)}>
|
|
<div className="flex w-full items-center gap-1 p-0">
|
|
<div className="toolBarTitle">
|
|
{icon && (
|
|
<div className="widget-icon">
|
|
<Icon icon={icon} className="space-right" />
|
|
</div>
|
|
)}
|
|
|
|
{label}
|
|
</div>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
{!!description && <div className="toolBar !pt-0">{description}</div>}
|
|
</>
|
|
);
|
|
}
|