Skip to content

Commit

Permalink
chore: Create Button example for Figma import
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Dow committed Feb 16, 2024
1 parent e5edcdd commit 7c84a98
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/components/ButtonFigma.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { Button, ButtonProps } from "./Button";
import { Meta } from "@storybook/react";

export default {
component: Button,
} as Meta<ButtonProps>;

export const ForFigma = {
args: {
label: "Test for Figma",
variant: "primary",
size: "md",
icon: undefined,
contrast: false,
disabled: false,
},
};

0 comments on commit 7c84a98

Please sign in to comment.