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