@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.
24 lines (17 loc) • 705 B
Flow
// @flow
import * as React from "react";
import type { StyledComponent } from "styled-components";
import type { Globals, Translation } from "../../common/common.js.flow";
import type { Size } from "..";
import type { Theme } from "../../defaultTheme";
export type Props = {|
+children: React.Node,
+label?: Translation,
+icon?: React.Element<any>,
...Globals,
|};
declare export default React.ComponentType<Props>;
declare export var Item: StyledComponent<any, any, HTMLElement>;
declare export var IconContainer: StyledComponent<any, any, HTMLElement>;
export type GetLineHeightToken = ({| theme: Theme, size: Size |}) => string;
declare export var getLineHeightToken: GetLineHeightToken;