UNPKG

@redocly/theme

Version:

Shared UI components lib

15 lines (14 loc) 406 B
export type CommentProps = { onSubmit: (value: { comment: string; }) => void; onCancel?: () => unknown; settings?: { label?: string; submitText?: string; }; standAlone?: boolean; isDialog?: boolean; className?: string; }; export declare function Comment({ settings, onSubmit, onCancel, className, standAlone, isDialog, }: CommentProps): JSX.Element;