import Menu from "../../app/components/navigation/Menu"; import MenuItem from "../../app/components/navigation/MenuItem"; export default { title: "Components/Navigation/Menu", component: Menu, parameters: { layout: "centered", docs: { description: { component: "Navigation Menu (`role=\"menubar\"`) groups MenuItem children. Consistent spacing and layout for horizontal nav clusters with multiple size variants.", }, }, }, argTypes: { size: { control: { type: "select" }, options: ["X Small", "Small", "Medium", "Large", "X Large"], description: "The size of the menu and its children", }, className: { control: { type: "text" }, description: "Additional CSS classes", }, }, tags: ["autodocs"], }; export const Default = { args: { size: "Small", }, render: (args) => (
), }; export const Sizes = { args: {}, render: () => (