@boxyhq/react-ui
Version:
React UI components from BoxyHQ
17 lines (16 loc) • 513 B
TypeScript
type ItemRowProps = {
inputType: "text" | "url" | "number" | "password";
item: string;
index: number;
handleItemUpdate: (newItem: string, index: number) => void;
handleItemDelete: (index: number) => void;
handleBlur: (index: number) => void;
isDuplicateItem?: boolean;
disableDelete?: boolean;
disabled?: boolean;
classNames: {
input: string;
};
};
declare function ItemRow(props: ItemRowProps): import("react/jsx-runtime").JSX.Element;
export default ItemRow;