@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 (19 loc) • 777 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";
export interface Props extends Common.Global {
readonly name?: Common.Translation;
readonly price?: Common.Translation;
readonly mobileDescription?: Common.Translation;
readonly priceBadge?: React.ReactNode;
readonly featureIcon?: React.ReactNode;
readonly badge?: string | React.ReactNode;
readonly children?: React.ReactNode;
readonly active?: boolean;
readonly action?: React.ReactNode;
readonly onClick?: Common.Callback;
readonly compact?: boolean;
}
declare const PricingTableItem: React.FunctionComponent<Props>;
export { PricingTableItem, PricingTableItem as default };