@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.
11 lines • 434 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from "react";
import { SIZE_OPTIONS } from "../primitives/IllustrationPrimitive/consts";
import IllustrationPrimitive from "../primitives/IllustrationPrimitive";
const Illustration = ({
size = SIZE_OPTIONS.MEDIUM,
...props
}) => /*#__PURE__*/React.createElement(IllustrationPrimitive, _extends({}, props, {
size: size
}));
export default Illustration;