UNPKG

@vonage/vivid-react

Version:

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

20 lines (19 loc) 710 B
import React, { ReactNode } from 'react'; import '@vonage/vwc-media-controller'; import '@vonage/vwc-media-controller/vwc-scrub-bar'; /** * @param trackEl * @param {MDCFloatingLabelFoundation | undefined} floatingLabelFoundation * @param {MDCLineRippleFoundation | undefined} lineRippleFoundation */ declare const VwcScrubBar: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined; trackEl?: any; floatingLabelFoundation?: any; lineRippleFoundation?: any; }) => JSX.Element; export default VwcScrubBar;