@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
23 lines (22 loc) • 993 B
TypeScript
import { NeonSize } from '@/common/enums/NeonSize';
/**
* A vertical layout component. NeonStack provides a way of laying out it's contents with standard gaps at each
* breakpoint. For cases where the gap needs to be different it is recommended to just use a <em>div</em> & apply a gap
* using CSS. Alternatively, NeonStack could be used by also applying a gap in CSS.
*/
declare const _default: import("vue").DefineComponent<{
/** Size of the gap between items */
gap: {
type: () => NeonSize;
default: () => NeonSize;
};
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/** Size of the gap between items */
gap: {
type: () => NeonSize;
default: () => NeonSize;
};
}>>, {
gap: NeonSize;
}, {}>;
export default _default;