@formant/ava-react
Version:
React components of AVA.
9 lines (8 loc) • 428 B
TypeScript
import React from 'react';
import type { TextParagraphSpec } from '@formant/ava';
import type { ThemeStylesProps, ExtensionProps, PhraseEvents } from '../types';
type TextLineProps = ThemeStylesProps & Pick<ExtensionProps, 'pluginManager'> & PhraseEvents & {
spec: TextParagraphSpec;
};
export declare function TextLine({ spec, size, theme, palette, pluginManager, ...events }: TextLineProps): React.JSX.Element;
export {};