@inkline/inkline
Version:
Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.
35 lines (34 loc) • 764 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.manifest = exports.default = void 0;
const manifest = exports.manifest = {
name: "INav",
props: [{
name: "color",
type: ["light", "dark"],
default: "",
description: "The color variant of the nav"
}, {
name: "size",
type: ["sm", "md", "lg"],
default: "",
description: "The size variant of the nav"
}, {
name: "vertical",
type: ["Boolean"],
default: "false",
description: "Display the nav with vertical orientation"
}],
events: [],
slots: [{
name: "default",
description: "Slot for default nav content "
}],
css: {
selector: ".nav",
variables: []
}
};
var _default = exports.default = manifest;