@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) • 469 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";
interface Image {
"*"?: string;
jpg?: string;
webp?: string;
}
export interface Props {
readonly placeholder?: Image;
readonly original: Image;
readonly name: Common.Translation;
}
declare const LazyImage: React.FunctionComponent<Props>;
export { LazyImage, LazyImage as default };