UNPKG

@vonage/vivid-react

Version:

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

23 lines (22 loc) 737 B
import React, { ReactNode } from 'react'; import '@vonage/vwc-top-app-bar'; /** * @param {boolean} alternate * @param {boolean} prominent * @param {boolean} dense * @param {boolean} centerTitle * @param {HTMLElement | Window} scrollTarget */ declare const VwcTopAppBar: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined; alternate?: boolean | undefined; prominent?: boolean | undefined; dense?: boolean | undefined; centerTitle?: boolean | undefined; scrollTarget?: any; }) => JSX.Element; export default VwcTopAppBar;