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