UNPKG

@aotearoan/neon

Version:

Neon is a lightweight design library of Vue 3 components with minimal dependencies.

12 lines (11 loc) 374 B
/** * Describes the horizontal positioning of certain elements in the context of a component. An example would be an icon * in a button or label as well as the label for a checkbox or switch. * @enum */ export declare enum NeonHorizontalPosition { /** Left horizontal positioning. */ Left = "left", /** Right horizontal positioning. */ Right = "right" }