UNPKG

@vonage/vivid-react

Version:

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

23 lines (22 loc) 879 B
import React, { ReactNode } from 'react'; import '@vonage/vwc-icon'; /** * @param {IconConnotation | undefined} connotation attribute: &lt;VwcIcon connotation /> * @param {string | undefined} type attribute: &lt;VwcIcon type /> * @param {boolean | undefined} inline attribute: &lt;VwcIcon inline /> * @param {IconSize | undefined} size attribute: &lt;VwcIcon size /> * @param {string} ariaLabel attribute: &lt;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;