UNPKG

@hypothesis/frontend-shared

Version:

Shared components, styles and utilities for Hypothesis projects

10 lines (9 loc) 395 B
import type { JSX } from 'preact'; import type { PresentationalProps } from '../../types'; type HTMLAttributes = JSX.HTMLAttributes<HTMLTableSectionElement>; export type TableFootProps = PresentationalProps & HTMLAttributes; /** * Render a table footer section */ export default function TableFoot({ children, classes, elementRef, ...htmlAttributes }: TableFootProps): JSX.Element; export {};