import { icons } from "@infineon/infineon-icons"; export default { title: "Components/Navbar", args: { applicationName: 'Application name', hideLabel: false, navbarItemTarget: "_blank", navbarItemHref: "", navbarMenuHref: "", navbarMenuTarget: "_blank", searchBarIsOpen: false, searchBarShowCloseButton: true, navbarPositionFixed: false, showLogoAndAppname: true, logoHref: "http://google.com", logoHrefTarget: "_self", }, argTypes: { icon: { options: Object.values(icons).map(i => i['name']), control: { type: 'select' } }, logoHrefTarget: { description: "If not '_self' or '_blank' or '_parent', then set to '_self' by default", options: ["_self", "_blank", "_parent"], control: { type: 'radio' } } } }; const DefaultTemplate = (args) => ` Menu Item 1 Menu Item Menu Item Item 1 Item 2 Item 3 Right One Right Two Tisho `; export const Default = DefaultTemplate.bind({}); //# sourceMappingURL=navbar.stories.js.map