@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 (16 loc) • 405 B
Flow
// @flow
import * as React from "react";
export type Props = {|
children: React.Node,
onClick?: () => void | Promise<any>,
bottomBorder?: boolean,
roundedBottom?: boolean,
roundedTop?: boolean,
expanded?: boolean,
noPadding?: boolean,
dataTest?: string,
noBorderTop?: boolean,
expandable?: boolean,
initialExpanded?: boolean,
|};
declare export default React.ComponentType<Props>;