mirror of https://github.com/portainer/portainer
36 lines
796 B
TypeScript
36 lines
796 B
TypeScript
import clsx from 'clsx';
|
|
import { PropsWithChildren, ReactNode } from 'react';
|
|
|
|
import { Icon } from '@/react/components/Icon';
|
|
|
|
import { useWidgetContext } from './Widget';
|
|
|
|
interface Props {
|
|
title: ReactNode;
|
|
icon: ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export function WidgetTitle({
|
|
title,
|
|
icon,
|
|
className,
|
|
children,
|
|
}: PropsWithChildren<Props>) {
|
|
useWidgetContext();
|
|
|
|
return (
|
|
<div className="widget-header">
|
|
<div className="row">
|
|
<span className={clsx('pull-left vertical-center', className)}>
|
|
<div className="widget-icon">
|
|
<Icon icon={icon} className="space-right" />
|
|
</div>
|
|
<span>{title}</span>
|
|
</span>
|
|
<span className={clsx('pull-right', className)}>{children}</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|