UNPKG

@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.

9 lines (8 loc) 342 B
import * as React from "react"; import type { Props } from "../types"; interface WrapperProps extends Props { viewBox: string; children: React.ReactNode; } declare const IllustrationWrapper: ({ size, viewBox, title, description, ariaLabelledby, dataTest, children, }: WrapperProps) => JSX.Element; export default IllustrationWrapper;