@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.
22 lines (17 loc) • 461 B
Flow
// @flow
import * as React from "react";
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>;