@formant/ava-react
Version:
React components of AVA.
9 lines (8 loc) • 353 B
TypeScript
import React from 'react';
import { type ParagraphProps } from '../paragraph';
import type { NestedParagraphSpec } from '@formant/ava';
type NestedParagraphProps = Omit<ParagraphProps, 'spec'> & {
spec: NestedParagraphSpec;
};
export declare function NestedParagraph({ spec, ...paragraphProps }: NestedParagraphProps): React.JSX.Element;
export {};