@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.
23 lines (15 loc) • 656 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/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";
export * from "./CardSection";