@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.
21 lines (16 loc) • 662 B
TypeScript
// Type definitions for @kiwicom/orbit-components
// Project: http://github.com/kiwicom/orbit
import * as React from "react";
import * as Common from "../common/common";
import Illustration from "../Illustration";
export interface Props {
readonly tabIndex?: string | number;
readonly onClick?: Common.Callback;
readonly title: Common.Translation;
readonly description?: Common.Translation;
readonly illustration?: React.ReactElement<typeof Illustration>;
readonly actions?: React.ReactNode;
readonly children?: React.ReactNode;
}
declare const CallOutBanner: React.FunctionComponent<Props>;
export { CallOutBanner, CallOutBanner as default };