@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
23 lines (22 loc) • 974 B
TypeScript
import React, { ReactNode } from 'react';
import '@vonage/vwc-top-app-bar-fixed';
/** This component is an extension of [<mwc-top-app-bar-fixed>](https://github.com/material-components/material-components-web-components/tree/master/packages/top-app-bar-fixed)
* @param {boolean} alternate attribute: <VwcTopAppBarFixed alternate />
* @param {boolean} prominent
* @param {boolean} dense
* @param {boolean} centerTitle
* @param {HTMLElement | Window} scrollTarget
*/
declare const VwcTopAppBarFixed: (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 VwcTopAppBarFixed;