template: wrapDropdownButton()

in src/components/base/button/button.stories.js [158:174]


  template: wrapDropdownButton(`
      <gl-dropdown
        icon="notifications"
        text="Notifications"
        :category="category"
        :variant="variant"
        :size="size"
        :block="block"
        :disabled="disabled"
      >
        <gl-dropdown-item>Dropdown item</gl-dropdown-item>
      </gl-dropdown>
    `),
});
DropdownIconTextButton.args = generateProps();

export const DropdownIconOnlyButton = (args, { argTypes }) => ({