portainer/app/react/components/datatables/TableTitle.tsx

36 lines
637 B
TypeScript
Raw Normal View History

import { PropsWithChildren } from 'react';
import { Icon } from '@/react/components/Icon';
import { useTableContext } from './TableContainer';
interface Props {
icon: string;
label: string;
featherIcon?: boolean;
}
export function TableTitle({
icon,
featherIcon,
label,
children,
}: PropsWithChildren<Props>) {
useTableContext();
return (
<div className="toolBar">
<div className="toolBarTitle">
<Icon
icon={icon}
feather={featherIcon}
className="icon-nested-blue icon-primary space-right"
/>
{label}
</div>
{children}
</div>
);
}