mirror of https://github.com/portainer/portainer
42 lines
904 B
TypeScript
42 lines
904 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;
|
|
featherIcon?: boolean;
|
|
className?: string;
|
|
}
|
|
|
|
export function WidgetTitle({
|
|
title,
|
|
icon,
|
|
className,
|
|
children,
|
|
featherIcon,
|
|
}: PropsWithChildren<Props>) {
|
|
useWidgetContext();
|
|
|
|
return (
|
|
<div className="widget-header">
|
|
<div className="row">
|
|
<span className={clsx('pull-left', className)}>
|
|
<div className="widget-icon">
|
|
<Icon
|
|
icon={icon}
|
|
feather={featherIcon}
|
|
className="space-right feather"
|
|
/>
|
|
</div>
|
|
<span>{title}</span>
|
|
</span>
|
|
<span className={clsx('pull-right', className)}>{children}</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|