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.

19 lines (14 loc) 409 B
// @flow import * as React from "react"; import type { StyledComponent } from "styled-components"; export type Props = {| children: React.Node, expanded?: boolean, expandable?: boolean, visible?: boolean, |}; export type State = {| contentHeight: number, |}; declare export var StyledCardSectionContent: StyledComponent<any, any, HTMLElement>; declare export default React.ComponentType<Props>;