@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
23 lines (22 loc) • 1.07 kB
TypeScript
import { NeonLayoutSize } from '@/model/common/layout/NeonLayoutSize';
/**
* 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<import("vue").ExtractPropTypes<{
/** Size of the gap between items */
gap: {
type: () => NeonLayoutSize;
default: () => NeonLayoutSize;
};
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
/** Size of the gap between items */
gap: {
type: () => NeonLayoutSize;
default: () => NeonLayoutSize;
};
}>> & Readonly<{}>, {
gap: NeonLayoutSize;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;