All files / src/components/common WidgetHeader.tsx

100% Statements 19/19
100% Branches 3/3
100% Functions 1/1
100% Lines 19/19

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33                    1x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x   6x 6x 6x 6x 6x 6x   6x   1x  
import React, { ReactNode } from "react";
 
interface WidgetHeaderProps {
  title: string;
  icon?: ReactNode;
  actions?: ReactNode;
  className?: string;
  [x: string]: any; // For spreading additional props like data-testid
}
 
const WidgetHeader: React.FC<WidgetHeaderProps> = ({
  title,
  icon,
  actions,
  className = "",
  ...rest
}) => {
  return (
    <div
      className={`widget-header bg-gray-50 dark:bg-gray-800 px-4 py-3 border-b border-gray-200 dark:border-gray-700 rounded-t-lg flex justify-between items-center ${className}`}
      {...rest}
    >
      <h3 className="text-lg font-medium text-gray-800 dark:text-gray-200 flex items-center">
        {icon && <span className="mr-2">{icon}</span>}
        {title}
      </h3>
      {actions && <div className="flex items-center">{actions}</div>}
    </div>
  );
};
 
export default WidgetHeader;