@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
19 lines (18 loc) • 601 B
TypeScript
import React, { ReactNode } from 'react';
import '@vonage/vwc-note';
/**
* @param {NoteConnotation | undefined} connotation
* @param {string | undefined} icon
* @param {string | undefined} header
*/
declare const VwcNote: (props: {
children?: ReactNode;
slot?: string | undefined;
id?: string | undefined;
style?: React.CSSProperties | undefined;
ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined;
connotation?: any;
icon?: string | undefined;
header?: string | undefined;
}) => JSX.Element;
export default VwcNote;