mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
18 lines
417 B
JavaScript
18 lines
417 B
JavaScript
const ToolbarSlots = [
|
|
{
|
|
name: "left",
|
|
description: "Custom content for the component's left side"
|
|
},
|
|
{
|
|
name: "right",
|
|
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
|
|
}
|
|
};
|