@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.
18 lines (11 loc) • 381 B
Flow
// @flow
import type { ReactComponentStyled } from "styled-components";
import type { Globals } from "../../common/common.js.flow";
type Align = "left" | "center" | "right";
export type Props = {|
+children?: React$Node,
+align?: Align,
...Globals,
|};
declare export default React$ComponentType<Props>;
declare export var StyledTableCell: ReactComponentStyled<Props>;