@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
27 lines (26 loc) • 639 B
JavaScript
import { defineComponent as e } from "vue";
const n = e({
name: "NeonLabelledContent",
props: {
/**
* The label to render.
*/
label: { type: String, required: !0 },
/**
* A single line value to render. NOTE: for more complex content use the default slot instead.
*/
value: { type: String },
/**
* Apply an "important" style to the label.
*/
important: { type: Boolean, default: !1 },
/**
* Apply the "neon-number" style to the value.
*/
numeric: { type: Boolean, default: !1 }
}
});
export {
n as default
};
//# sourceMappingURL=NeonLabelledContent.es.js.map