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.

18 lines (13 loc) 406 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/separator/ */ import * as React from "react"; import type { spaceAfter } from "../common/getSpacingToken"; export type Indent = "none" | "small" | "medium" | "large" | "XLarge" | "XXLarge"; export type Props = {| ...spaceAfter, indent?: Indent, align?: "left" | "right" | "center", |}; declare export default React.ComponentType<Props>;