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