@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) • 401 B
Flow
// @flow
import * as React from "react";
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>;