UNPKG

easemob-chat-uikit

Version:

![Static Badge](https://img.shields.io/badge/platform-React-green) ![Static Badge](https://img.shields.io/badge/language-typescript-green) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/easemob/Easemob-UIKit-web) ![GitHub last c

22 lines (21 loc) 594 B
import React, { ReactNode } from 'react'; export interface GiftProps { prefix?: string; className?: string; style?: React.CSSProperties; image?: ReactNode | string; title?: string; titleIcon?: ReactNode; subTitle?: string | number; subTitleIcon?: ReactNode; selected?: boolean; action?: { visible: boolean; text: string; onClick?: () => void; }; giftId: string | number; onClick?: (giftId: string | number) => void; } declare const Gift: (props: GiftProps) => import("react/jsx-runtime").JSX.Element; export { Gift };