@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
11 lines (10 loc) • 339 B
TypeScript
import * as React from 'react';
import { RatingType } from '../../../../models/MessageModel';
type Props = {
type: RatingType;
activeType: RatingType | undefined;
onClick: (type: RatingType) => void;
tooltip?: string;
};
declare const MessageFeedbackButton: React.FC<Props>;
export default MessageFeedbackButton;