import React from "react";

import { ActionButton } from "../components";

export default {
  title: "Button",
  component: ActionButton,
  argTypes: {
    variant: {
      options: ["primary", "secondary", "white", "tab"],
      control: { type: "radio" },
    },
  },
};

const Template = (args) => <ActionButton {...args} />;

export const ButtonExample = Template.bind({});
ButtonExample.args = {
  text: "Button",
  variant: "primary",
};
