import { html, nothing } from "lit"; import { CommunicationActionMenu } from "./communication-action-menu"; export const template = (props: CommunicationActionMenu) => { return html`
${props.showText ? html`${props.label}` : ""} ${ !props.showText ? html` ${props.label} ` : nothing }
${props.showText ? html`` : nothing}
`; };