@boxyhq/react-ui
Version:
React UI components from BoxyHQ
14 lines (13 loc) • 422 B
TypeScript
type ItemListProps = {
label: string;
inputType: "text" | "url" | "number" | "password";
classNames?: {
label?: string;
input?: string;
};
currentlist: string | string[];
fieldName: string;
handleItemListUpdate: (fieldName: string, newList: string[]) => void;
};
declare function ItemList(props: ItemListProps): import("react/jsx-runtime").JSX.Element;
export default ItemList;