@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
16 lines (15 loc) • 547 B
TypeScript
import React, { ReactNode, SyntheticEvent } from 'react';
import '@vonage/vwc-tab-bar';
/**
* @param {number} activeIndex
*/
declare const VwcTabBar: (props: {
children?: ReactNode;
slot?: string | undefined;
id?: string | undefined;
style?: React.CSSProperties | undefined;
ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined;
onActivated?: ((event: SyntheticEvent) => void) | undefined;
activeIndex?: number | undefined;
}) => JSX.Element;
export default VwcTabBar;