package main
// kgCardComponent renders the rounded card override.
templ kgCardComponent(title, body, class string) {
if title != "" {
{ title }
}
if body != "" {
@templ.Raw(body)
}
if title == "" && body == "" {
Add a title or body to fill this card.
}
}