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