@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
13 lines (12 loc) • 451 B
TypeScript
import * as React from 'react';
type IconSlotValue = React.JSXElementConstructor<any>;
export type ChatIconSlotsType = {
sendMessageIcon: IconSlotValue;
stopStreamIcon: IconSlotValue;
messageLikeOutlinedIcon: IconSlotValue;
messageLikeFilledIcon: IconSlotValue;
messageDislikeOutlinedIcon: IconSlotValue;
messageDislikeFilledIcon: IconSlotValue;
};
export declare const chatIconSlots: ChatIconSlotsType;
export {};