@holokit/core
Version:
Core styles & components
15 lines (14 loc) • 411 B
TypeScript
import * as React from 'react';
/**
* The HorizontalTable component is a one-row table with label/value pairs.
*/
interface HorizontalTableItem {
label: string;
value: string;
}
interface HorizontalTableProps {
className?: string;
items?: HorizontalTableItem[];
}
declare function HorizontalTable({ className, items }: HorizontalTableProps): React.JSX.Element;
export default HorizontalTable;