clustvirt/view/components/util.go

15 lines
174 B
Go
Raw Permalink Normal View History

package components
import (
"fmt"
)
type NavItem struct {
Name string
Href string
}
func NoWrapSize(size string) string {
return fmt.Sprintf("%s:flex-nowrap", size)
}