@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
13 lines • 787 B
TypeScript
import React from 'react';
import { TEXT_SIZES, TEXT_TYPES } from './constants';
import type { ParagraphProps as DefaultParagraphProps } from 'antd/lib/typography/Paragraph';
export type TypographyParagraphProps = Omit<DefaultParagraphProps, 'keyboard' | 'type' | 'editable' | 'copyable' | 'mark' | 'className' | 'prefixCls' | 'style'> & {
type?: typeof TEXT_TYPES[number];
size?: typeof TEXT_SIZES[number];
};
declare const Paragraph: React.ForwardRefExoticComponent<Omit<DefaultParagraphProps, "type" | "className" | "prefixCls" | "style" | "mark" | "keyboard" | "editable" | "copyable"> & {
type?: (typeof TEXT_TYPES)[number];
size?: (typeof TEXT_SIZES)[number];
} & React.RefAttributes<HTMLSpanElement>>;
export { Paragraph, };
//# sourceMappingURL=paragraph.d.ts.map