@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.
12 lines (11 loc) • 491 B
TypeScript
/// <reference types="react" />
import defaultTheme from "../../defaultTheme";
import type { Props } from "./types";
export declare const StyledImage: import("styled-components").StyledComponent<"img", any, {
theme: typeof defaultTheme;
illustrationName: string;
margin: Props["margin"];
size: Props["size"];
}, never>;
declare const IllustrationPrimitive: ({ name, alt, margin, size, dataTest, id, spaceAfter, }: Props) => JSX.Element;
export default IllustrationPrimitive;