import React from 'react'; import { cn } from '../../utils/cn'; export interface TableHeadRowProps extends React.HTMLAttributes { /** * Additional CSS classes for the header row */ className?: string; } /** * TableHeadRow component - Row container for header cells */ export const TableHeadRow: React.FC = ({ children, className, ...props }) => { return ( {children} ); }; export default TableHeadRow;