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