2024-03-15 03:56:49 +00:00
|
|
|
package components
|
|
|
|
|
2024-03-15 22:48:11 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
2024-03-15 03:56:49 +00:00
|
|
|
|
2024-03-16 04:50:24 +00:00
|
|
|
type NavItem struct {
|
|
|
|
Name string
|
|
|
|
Href string
|
|
|
|
}
|
|
|
|
|
2024-03-15 03:56:49 +00:00
|
|
|
func NoWrapSize(size string) string {
|
|
|
|
return fmt.Sprintf("%s:flex-nowrap", size)
|
|
|
|
}
|