@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.
28 lines (21 loc) • 801 B
TypeScript
// @flow
// Type definitions for @kiwicom/orbit-components
// Project: http://github.com/kiwicom/orbit
import * as React from "react";
import * as Common from "../common/common";
declare module "@kiwicom/orbit-components/lib/Table";
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/index";
export { TableCell } from "./TableCell/index";
export { TableHead } from "./TableHead/index";
export { TableRow } from "./TableRow/index";
export { TableFooter } from "./TableFooter/index";