@pagopa/mui-italia
Version:
[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).
17 lines (16 loc) • 514 B
TypeScript
interface Props<T> {
selectedOptions: Array<T>;
getOptionLabel: (option: T) => string;
disabled?: boolean;
handleChipDelete: (option: T) => void;
slotProps: {
list?: {
'aria-label'?: string;
};
chip?: {
'aria-label'?: string;
};
};
}
declare const MultiSelectChips: <T>({ selectedOptions, getOptionLabel, disabled, handleChipDelete, slotProps, }: Props<T>) => import("react/jsx-runtime").JSX.Element;
export default MultiSelectChips;