UNPKG

@hypothesis/frontend-shared

Version:

Shared components, styles and utilities for Hypothesis projects

8 lines (7 loc) 347 B
import type { JSX } from 'preact'; import type { PresentationalProps } from '../../types'; export type TableBodyProps = PresentationalProps & Omit<JSX.HTMLAttributes<HTMLElement>, 'size' | 'rows'>; /** * Render a table body */ export default function TableBody({ children, classes, elementRef, ...htmlAttributes }: TableBodyProps): JSX.Element;