jsx-readme
Version:
Generate Readme files with a React-like syntax and package.json-aware helpers.
15 lines (14 loc) • 412 B
TypeScript
import { Component } from "jsx-md";
/** @internal */
interface Props {
contributors: Contributor[];
itemsPerRow?: number;
avatarSize?: number;
}
export interface Contributor {
id: number;
name: string;
}
/** Displays a contributors table with avatar. This component returns raw HTML for a more complex layout structure. */
export declare const ContributorsTable: Component<Props>;
export {};