UNPKG

@micoblanc/chipster

Version:

A composable and flexible multi-entry input component for React

7 lines (6 loc) 347 B
import React from 'react'; import { ChipsterItemProps } from './types'; export declare const ChipsterItem: ({ item, itemClassName, highlightedClassName, disabledClassName, iconClassName, removeButtonClassName, removeIcon, render, index, }: ChipsterItemProps & { index?: number | undefined; removeIcon?: React.ReactNode; }) => JSX.Element;