public render()

in components/RuiHeroBanner/src/RuiHeroBanner.ts [43:53]


	public render(): TemplateResult {
		return html`
			<div class="hero-banner" style="--rui-hero-banner__background-image: url(${this.img})">
				${this.img || this.overlay ? html`<div class="overlay"></div>` : html``}
				<div class="hero-banner-content">
					<slot></slot>
					<slot name="actions"></slot>
				</div>
			</div>
			`;
	}