@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.
15 lines (10 loc) • 320 B
Flow
// @flow
import type { Interpolation } from "styled-components";
import type { Position } from "../index";
import type { ThemeProps } from "../../../defaultTheme";
export type Props = {|
...Position,
...ThemeProps,
|};
type TooltipArrowStyle = Props => Interpolation[];
declare export default TooltipArrowStyle;