UNPKG

@pablo-amberflo/ui-kit-test

Version:

Amberflo UI Kit

23 lines (18 loc) 444 B
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", };