UNPKG

@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.

36 lines (35 loc) 670 B
export const 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: [] } }; export default manifest;