UNPKG

@hypothesis/frontend-shared

Version:

Shared components, styles and utilities for Hypothesis projects

25 lines (24 loc) 667 B
/** * Fixture-like "sample" HTML-cased components for filling out pattern and * component examples. */ /** * <li> elements for examples. The international NATO phonetic (radio) alphabet. */ export function SampleListElements(): import("preact").JSX.Element; export function SampleTableBody(): import("preact").JSX.Element; /** * Provide Lorem Ipsum text. * * TODO: This can be extended to return different lengths of lorem. */ export function LoremIpsum(): import("preact").JSX.Element; export function sampleTableContent(): { tableHeaders: { label: string; }[]; items: { displayName: string; updated: string; }[]; };