primevue-mirror/api-generator/components/toolbar.js

19 lines
417 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const ToolbarSlots = [
{
name: "left",
2021-05-12 09:35:29 +00:00
description: "Custom content for the component's left side"
},
{
name: "right",
2021-05-12 09:35:29 +00:00
description: "Custom content for the component's right side"
}
];
module.exports = {
toolbar: {
name: "Toolbar",
description: "Toolbar is a grouping component for buttons and other content.",
slots: ToolbarSlots
}
};