@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.
21 lines (17 loc) • 694 B
TypeScript
// Type definitions for @kiwicom/orbit-components
// Project: http://github.com/kiwicom/orbit
import React from "react";
import * as Common from "../common/common";
export interface Props extends Common.Global, Common.SpaceAfter {
readonly id?: string;
readonly error?: React.ReactNode;
readonly shown: boolean;
readonly help?: React.ReactNode;
readonly inlineLabel?: boolean;
readonly referenceElement: HTMLElement | null;
readonly inputSize?: "small" | "normal";
readonly helpClosable?: boolean;
readonly onShown?: React.Dispatch<React.SetStateAction<boolean>>;
}
declare const ErrorFormTooltip: React.FC<Props>;
export { ErrorFormTooltip, ErrorFormTooltip as default };