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.

24 lines (16 loc) 677 B
// @flow // Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import * as React from "react"; import * as Common from "../../common/common"; declare module "@kiwicom/orbit-components/lib/deprecated/Card"; interface Props extends Common.Global, Common.SpaceAfter { readonly children: React.ReactNode; readonly closable: React.ReactNode; readonly onClose?: Common.Event<React.SyntheticEvent<HTMLButtonElement>>; } export const DeprecatedCard: React.FunctionComponent<Props>; declare const StyledCard: React.ComponentType<Props>; export { StyledCard }; export * from "./CardHeader/index"; export * from "./CardSection/index";