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