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