UNPKG

@moderntribe/wme-ui

Version:

Components and hooks to build the best UX/UI admin wizards

9 lines 312 B
import React from 'react'; import { InputBaseProps } from '@mui/material'; interface ChipsInputProps extends InputBaseProps { tags: string[]; selectedTags: (arg: string[]) => void; } declare const ChipsInput: React.FC<ChipsInputProps>; export default ChipsInput; //# sourceMappingURL=chips-input.d.ts.map