UNPKG

@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) 551 B
// @flow import * as React from "react"; import type { StyledComponent } from "styled-components"; import type { Globals } from "../../common/common.js.flow"; export type Props = {| +id?: string | number, +children?: React.Node, +actions?: React.Node, +expanded?: boolean, +expandable?: boolean, +onExpand?: () => void | Promise<any>, +header?: React.Node, +footer?: React.Node, ...Globals, |}; declare export var StyledAccordionSection: StyledComponent<any, any, HTMLElement>; declare export default React.ComponentType<Props>;