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.

21 lines (16 loc) 429 B
// @flow import { ReactComponentStyled } from "styled-components"; export type State = {| maxHeight: number | null, transitionFinished: boolean, visible: boolean, |}; export type Props = {| +children: React$Node, +maxHeight: ?number, +expanded?: boolean, +ariaLabelledBy?: string, +id?: string, |}; declare export var StyledSlide: ReactComponentStyled<any>; declare export default React$ComponentType<Props>;