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