@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
11 lines (10 loc) • 344 B
TypeScript
/**
* Describes the available <a href="/user-input/switch">NeonSwitch</a> styles.
* @enum
*/
export declare enum NeonSwitchStyle {
/** Switch style - styles component as a switch button with on/off states. */
Switch = "switch",
/** Checkbox style - styles component as a traditional HTML checkbox. */
Checkbox = "checkbox"
}