import { html, nothing } from "lit"; import { PrimariaNavItem } from "./primaria-nav-item"; import { classMap } from "lit/directives/class-map.js"; export const template = (props: PrimariaNavItem) => { return html`
${props.showText ? html`${props.config.label}` : ""}
${props.showText && props.config.showArrow ? html`` : ""} ${ !props.showText ? html` ${props.config.label} ` : nothing }
`; };