UNPKG

@hypothesis/frontend-shared

Version:

Shared components, styles and utilities for Hypothesis projects

8 lines (7 loc) 346 B
import type { JSX } from 'preact'; import type { PresentationalProps } from '../../types'; export type TableHeadProps = PresentationalProps & Omit<JSX.HTMLAttributes<HTMLElement>, 'size'>; /** * Render a table head section */ export default function TableHead({ children, classes, elementRef, ...htmlAttributes }: TableHeadProps): JSX.Element;