@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
17 lines (16 loc) • 633 B
TypeScript
/**
* Describes the available sizing options for <a href="/presentation/badge">NeonBadge</a>.
* @enum
*/
export declare enum NeonBadgeSize {
/** A small badge size, typically has a default of 32 rem. */
Small = "s",
/** A medium badge size, usually the default size. Which typically has a default of 40 rem. */
Medium = "m",
/** A large badge size, typically has a default of 48 rem. */
Large = "l",
/** An extra large badge size, typically has a default of 64 rem. */
ExtraLarge = "xl",
/** An extra, extra large badge size, typically has a default of 80 rem. */
ExtraExtraLarge = "xxl"
}