@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.
18 lines (13 loc) • 369 B
Flow
// @flow
import type { ReactComponentStyled } from "styled-components";
export type Props = {|
children: React$Node,
expanded?: boolean,
expandable?: boolean,
visible?: boolean,
|};
export type State = {|
contentHeight: number,
|};
declare export var StyledCardSectionContent: ReactComponentStyled<any>;
declare export default React$ComponentType<Props>;