UNPKG

@vonage/vivid-react

Version:

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

19 lines (18 loc) 696 B
import React, { ReactNode } from 'react'; import '@vonage/vwc-text'; /** * @param {VVDFontFace | undefined} fontFace attribute: &lt;VwcText font-face /> * @param {TextConnotation | undefined} connotation attribute: &lt;VwcText connotation /> * @param {boolean} tight attribute: &lt;VwcText tight /> */ declare const VwcText: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined; fontFace?: any; connotation?: any; tight?: boolean | undefined; }) => JSX.Element; export default VwcText;