UNPKG

@vonage/vivid-react

Version:

Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings

17 lines (16 loc) 573 B
import React, { ReactNode, SyntheticEvent } from 'react'; import '@vonage/vwc-chips'; import '@vonage/vwc-chips/vwc-chip-set'; /** * @param {ChipType | undefined} type */ declare const VwcChipSet: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined; onSelection?: ((event: SyntheticEvent) => void) | undefined; type?: any; }) => JSX.Element; export default VwcChipSet;