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