UNPKG

z-react-ui

Version:

z-react-ui,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。

9 lines (8 loc) 292 B
import React, { MouseEvent } from 'react'; import { EmojiArrType } from '@/_config/emoji'; interface EmojiProps { onClick?: (emoji: EmojiArrType) => void; onEmojiBtnClick?: (e?: MouseEvent<HTMLImageElement>) => void; } declare const Emoji: React.FC<EmojiProps>; export default Emoji;