@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 (18 loc) • 739 B
TypeScript
// @flow
// 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/index";
declare module "@kiwicom/orbit-components/lib/CallOutBanner";
export interface Props {
readonly tabIndex?: string | number;
readonly onClick?: Common.Callback;
readonly title: Common.Translation;
readonly description?: Common.Translation;
readonly illustration?: React.ElementType<typeof Illustration>;
readonly actions?: React.ReactNode;
readonly children?: React.ReactNode;
}
declare const CallOutBanner: React.FunctionComponent<Props>;
export { CallOutBanner, CallOutBanner as default };