import '@cometchat/uikit-elements';//import the web component package.
import { layoutType } from '@cometchat/uikit-elements';
const action = new CometChatActionItem({id: "attach-file",
iconURL: "https://img.icons8.com/?size=24&id=37897&format=svg",
title: "Attach file",
iconTint: "#e1eb77"});
const actions = [action];//array of actions
const title = "Add to chat";
const layoutModeIconURL = "https://img.icons8.com/?size=24&id=103980&format=svg";
//use the component
<cometchat-action-sheet
actions={actions}
hideLayoutMode={false}
layoutMode={layoutType.grid}
title={title}
layoutModeIconURL={layoutModeIconURL}>
</cometchat-action-sheet>