template: wrapDropdownButton()

in src/components/base/button/button.stories.js [138:155]


  template: wrapDropdownButton(`
      <gl-dropdown
        icon="download"
        text="Download"
        :text-sr-only="true"
        :category="category"
        :variant="variant"
        :size="size"
        :block="block"
        :disabled="disabled"
      >
        <gl-dropdown-item>Dropdown item</gl-dropdown-item>
      </gl-dropdown>
    `),
});
DropdownIconButton.args = generateProps();

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