@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
7 lines (6 loc) • 403 B
TypeScript
import { Props } from "./MultiInput.types";
/**
* MultiInput is a component that allows the user to add and remove multiple values.
* Any type of input can be used, passed in via the `input` prop.
*/
export declare const MultiInput: <T = any>({ values, disabled, label, description, renderInput, addDisabled, onAdd, onRemove, required, error, }: Props<T>) => import("react/jsx-runtime").JSX.Element;