UNPKG

@aotearoan/neon

Version:

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

18 lines (17 loc) 519 B
/** * Represents the different levels of headers that can be used in a Neon page. */ export declare enum NeonHeaderLevel { /** * The top level header for a page. This is the equivalent of an H1 and can also include breadcrumbs. */ Page = "page", /** * A header that is used to page sections. This is the equivalent of an H2. */ Section = "section", /** * A header that is used in page subsections. This is the equivalent of an H3. */ SubSection = "sub-section" }