@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.
19 lines (15 loc) • 454 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/primitives/illustrationprimitive/
*/
import * as React from "react";
import type { Globals } from "../../common/common.js.flow";
import type { spaceAfter } from "../../common/getSpacingToken";
export type Props = {|
+size?: "extraSmall" | "small" | "medium" | "large" | "display",
+name: string,
+alt?: string,
...Globals,
...spaceAfter,
|};
declare export default React.ComponentType<Props>;