package ui type EmptyStateProps struct { Title string Description string Icon templ.Component Action templ.Component } templ EmptyState(props EmptyStateProps) {
if props.Icon != nil {
@props.Icon
}

{ props.Title }

if props.Description != "" {

{ props.Description }

} if props.Action != nil {
@props.Action
}
}