godash/components/application.templ
2024-03-12 15:49:08 +01:00

12 lines
412 B
Text

package components
import (
"gitlab.unjx.de/flohoss/godash/services"
)
templ Application(application services.Application) {
<a href={ templ.URL(application.URL) } class="flex items-center hover-effect">
<img class={ "rounded w-8 h-8 opacity-90", templ.KV("backgroundColor",application.Background !="") } src={ application.Icon }/>
<div class="uppercase truncate ml-2">{ application.Name }</div>
</a>
}