mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 14:29:40 +02:00
* refactor(azure): migrate module to react [EE-2782] * fix(azure): remove optional chain * feat(azure): apply new icons in dashboard * feat(azure): apply new icons in dashboard * feat(ui): allow single string for breadcrumbs * refactor(azure/containers): use Table.content * feat(azure/containers): implement new ui [EE-3538] * fix(azure/containers): use correct icon * chore(tests): mock svg as component * fix(azure): fix tests Co-authored-by: matias.spinarolli <matias.spinarolli@portainer.io>
33 lines
609 B
TypeScript
33 lines
609 B
TypeScript
import { PropsWithChildren } from 'react';
|
|
|
|
import { Icon, IconProps } from '@@/Icon';
|
|
|
|
import { useTableContext } from './TableContainer';
|
|
|
|
interface Props extends IconProps {
|
|
label: string;
|
|
}
|
|
|
|
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>
|
|
);
|
|
}
|