UNPKG

weavify

Version:

````markdown # **Weavify - Reusable UI Components**

22 lines (21 loc) 572 B
import React, { SyntheticEvent } from 'react'; interface Person { id: number; name: string; email: string; avatar?: string; } interface MultiPeoplePickerProps { options: Person[]; value: Person[]; onChange: (event: SyntheticEvent<Element, Event>, value: Person[]) => void; label?: string; placeholder?: string; required?: boolean; isLabelRequired?: boolean; wrapperStyle?: string; id: string; disabled?: boolean; } declare const _default: React.NamedExoticComponent<MultiPeoplePickerProps>; export default _default;