Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
React
import "@cometchat/uikit-elements"; //import the web elements package. import { EmojiKeyboardStyle } from "@cometchat/uikit-elements"; //import the EmojiKeyboardStyle class. const clickHandler = event => { console.log(event.detail.id); } //create style object const emojiKeyboardStyle = new EmojiKeyboardStyle({ textFont: "500 14px Inter, sans-serif", textColor: "black", border: "1px solid green", width: "500px", height: "300px" }); <cometchat-emoji-keyboard :emojiKeyboardStyle="emojiKeyboardStyle" @cc-emoji-clicked="clickHandler($event)"></cometchat-emoji-keyboard>
Was this page helpful?