mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-05-04 18:19:14 -05:00
12 lines
161 B
Go
12 lines
161 B
Go
package component
|
|
|
|
import "github.com/orsinium-labs/enum"
|
|
|
|
type size enum.Member[string]
|
|
|
|
var (
|
|
SizeSm = size{"sm"}
|
|
SizeMd = size{"md"}
|
|
SizeLg = size{"lg"}
|
|
)
|