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.
HTML
Icon Button — CometChat documentation.
import '@cometchat/uikit-elements';//import the web component package. import { IconButtonAlignment } from '@cometchat/uikit-resources'; const text = "Large button"; const hoverText = "This is a large button"; const alignment = IconButtonAlignment.right const iconURL = "https://img.icons8.com/?size=24&id=uooD0BINPxNE&format=svg"; const clickHandler = event => { //Perform appropriate action } <cometchat-icon-button :text="text" :alignment="alignment" :hoverText="hoverText" :iconURL="iconURL" @cc-button-clicked="clickHandler"> </cometchat-icon-button>
Was this page helpful?