@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
15 lines (14 loc) • 502 B
TypeScript
import React, { ReactNode } from 'react';
import '@vonage/vwc-accordion';
/**
* @param {boolean} multi attribute: <VwcAccordion multi />
*/
declare const VwcAccordion: (props: {
children?: ReactNode;
slot?: string | undefined;
id?: string | undefined;
style?: React.CSSProperties | undefined;
ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined;
multi?: boolean | undefined;
}) => JSX.Element;
export default VwcAccordion;