UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

25 lines (19 loc) 707 B
// Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import * as React from "react"; import * as Common from "../common/common"; export interface SharedProps extends Common.Global { readonly children: React.ReactNode; } interface Props extends SharedProps { readonly type?: "primary" | "secondary"; readonly striped?: boolean; readonly compact?: boolean; } declare const Table: React.FunctionComponent<Props>; export { Table, Table as default }; export { TableBody } from "./TableBody"; export { TableCell } from "./TableCell"; export { TableHead } from "./TableHead"; export { TableRow } from "./TableRow"; export { TableFooter } from "./TableFooter";