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.

20 lines (13 loc) 494 B
// @flow import type { ReactComponentStyled } from "styled-components"; import type { Globals, Translation } from "../../common/common.js.flow"; export type Props = {| +children: React$Node, +label?: Translation, +icon?: React$Element<any>, ...Globals, |}; declare export default React$ComponentType<Props>; declare export var IconContainer: ReactComponentStyled<any>; declare export var StyledLabel: ReactComponentStyled<any>; declare export var Item: ReactComponentStyled<any>;