diff --git a/src/components/Buttons/Button.stories.tsx b/src/components/Buttons/Button.stories.tsx deleted file mode 100644 index 6fc779b2e62..00000000000 --- a/src/components/Buttons/Button.stories.tsx +++ /dev/null @@ -1,136 +0,0 @@ -import * as React from "react" -import { MdChevronRight, MdExpandMore, MdNightlight } from "react-icons/md" -import { HStack, Text, ThemingProps, VStack } from "@chakra-ui/react" -import { Meta, StoryObj } from "@storybook/react" - -import { getThemingArgTypes } from "../../../.storybook/types" -import theme from "../../@chakra-ui/theme" -import Translation from "../Translation" - -import Button from "./Button" -import ButtonLink from "./ButtonLink" -import IconButton from "./IconButton" - -const meta = { - title: "Atoms / Form / Buttons", - component: Button, - args: { - children: "What is Ethereum?", - }, - argTypes: { - isSecondary: { - defaultValue: false, - type: "boolean", - name: "Is a secondary color?", - if: { arg: "variant", neq: "solid" }, - }, - }, -} satisfies Meta - -export default meta - -type Story = StoryObj - -const variants: ThemingProps<"Button">["variant"][] = [ - "solid", - "outline", - "ghost", - "link", -] - -export const StyleVariants: Story = { - argTypes: { - size: { - ...getThemingArgTypes(theme, "Button")?.size, - defaultValue: "md", - }, - }, - render: (args) => ( - - {variants.map((variant, idx) => ( - -