@ant-design/pro-chat
Version:
a solution for ai chat
16 lines (15 loc) • 393 B
TypeScript
/// <reference types="react" />
import { DivProps } from '../types';
export interface EmojiProps extends DivProps {
/**
* @description The emoji character to be rendered
*/
emoji: string;
/**
* @description Size of the emoji
* @default 40
*/
size?: number;
}
declare const Emoji: import("react").NamedExoticComponent<EmojiProps>;
export default Emoji;