@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
23 lines (22 loc) • 879 B
TypeScript
import React, { ReactNode } from 'react';
import '@vonage/vwc-icon';
/**
* @param {IconConnotation | undefined} connotation attribute: <VwcIcon connotation />
* @param {string | undefined} type attribute: <VwcIcon type />
* @param {boolean | undefined} inline attribute: <VwcIcon inline />
* @param {IconSize | undefined} size attribute: <VwcIcon size />
* @param {string} ariaLabel attribute: <VwcIcon aria-label />
*/
declare const VwcIcon: (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;
type?: string | undefined;
inline?: any;
size?: any;
ariaLabel?: string | undefined;
}) => JSX.Element;
export default VwcIcon;