@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
22 lines (21 loc) • 679 B
JavaScript
import { defineComponent as e } from "vue";
import { NeonSize as o } from "../../../common/enums/NeonSize.es.js";
import { NeonResponsive as n } from "../../../common/enums/NeonResponsive.es.js";
const p = e({
name: "NeonInline",
props: {
/**
* Size of the gap between items
*/
gap: { type: String, default: () => o.Large },
/**
* Breakpoint at which to layout switches to vertical. TIP: Pass <em>breakpoint=""</em> to override the default
* breakpoint & prevent switching to a vertical layout.
*/
breakpoint: { type: String, default: () => n.MobileLarge }
}
});
export {
p as default
};
//# sourceMappingURL=NeonInline.es.js.map