@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
27 lines (26 loc) • 1.13 kB
TypeScript
/**
* A side navigation component. This is displayed at the <em>larger-than-tablet</em> breakpoint and hidden at
* <em>tablet</em> and below. Use this to display menus, navigation or other items related to the main page content. A
* side nave had two slots, one for <em>sticky</em> content which remains visible at all times. The other is for
* <em>scrolling content</em> which is allowed to overflow below the bottom of the page.
*/
declare const _default: import("vue").DefineComponent<{
/**
* If true, removes the side nav component's padding.
*/
fullWidth: {
type: BooleanConstructor;
default: boolean;
};
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* If true, removes the side nav component's padding.
*/
fullWidth: {
type: BooleanConstructor;
default: boolean;
};
}>>, {
fullWidth: boolean;
}, {}>;
export default _default;