@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 (16 loc) • 660 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";
declare module "@kiwicom/orbit-components/lib/deprecated/TileHeader";
interface Props {
readonly icon?: React.ReactNode;
readonly title?: React.ReactNode;
readonly description?: React.ReactNode;
readonly external?: boolean;
readonly onClick?: Common.Event<React.SyntheticEvent<HTMLDivElement>>;
readonly isExpandable?: boolean;
readonly isExpanded?: boolean;
}
declare const TileHeader: React.FunctionComponent<Props>;
export { TileHeader, TileHeader as default };