UNPKG

@nexusui/components

Version:

These are custom components specially-developed for NexusUI applications. They will make your life easier by giving you out-of-the-box implementations for various high-level UI elements that you can drop directly into your application.

12 lines (11 loc) 645 B
import { ICommentCard } from './CommentCard.container'; import { TranslateFuncType } from '../../util/models'; type ICommentCardContent = Pick<ICommentCard, 'maxLines' | 'message' | 'attachments' | 'tags' | 'metadata' | 'tagging' | 'onTagCancel' | 'highlight' | 'selected' | 'replies' | 'mode' | 'richTextConfig' | 'onEditSave' | 'onLayoutChange'> & { multiRowRef?: React.RefObject<HTMLSpanElement>; expanded?: boolean; expandable?: boolean; onExpandClick: (e: any) => void; t: TranslateFuncType; }; export declare const CommentCardContent: (props: ICommentCardContent) => import("react/jsx-runtime").JSX.Element; export {};