refactor: make button stories plain

This commit is contained in:
p-sw 2024-05-24 22:21:38 +09:00
parent 10443da796
commit de68eb45cf
2 changed files with 32 additions and 50 deletions

View File

@ -1,50 +0,0 @@
import type { Meta, StoryObj } from "@storybook/react";
import { Button } from "../components/Button";
const meta: Meta<typeof Button> = {
title: "React/Button",
component: Button,
tags: ["autodocs"],
argTypes: {
size: { options: ["sm", "md", "lg"], control: "select" },
border: { options: ["none", "solid", "outline"], control: "select" },
background: {
options: ["default", "ghost", "link"],
control: "select",
},
decoration: { options: ["none", "link"], control: "select" },
onClick: { table: { disable: true } },
preset: { options: ["default", "ghost", "link"], control: "select" },
},
args: { children: "Button", onClick: () => console.log("clicked") },
};
export default meta;
type Story = StoryObj<typeof Button>;
export const Default: Story = {
args: {
preset: "default",
},
};
export const Ghost: Story = {
args: {
preset: "ghost",
},
};
export const Outline: Story = {
args: {
border: "outline",
background: "ghost",
decoration: "none",
size: "md",
},
};
export const Link: Story = {
args: {
preset: "link",
},
};

View File

@ -0,0 +1,32 @@
import { Button } from "../components/Button";
export default {
title: "React/Button",
};
export const Default = () => {
return <Button preset="default">Button</Button>;
};
export const Ghost = () => {
return <Button preset="ghost">Ghost Button</Button>;
};
export const Outline = () => {
return (
<Button border="outline" background="ghost" decoration="none" size="md">
Outline Button
</Button>
);
};
export const Link = () => {
return <Button preset="link">Link Button</Button>;
};
export const AsChild = () => {
return (
<Button asChild preset="default">
<a href="https://google.com">As Child Button</a>
</Button>
);
};