diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx
index a0f5ba0..7815c00 100644
--- a/packages/react/components/Button.tsx
+++ b/packages/react/components/Button.tsx
@@ -79,6 +79,24 @@ const [buttonVariants, resolveVariants] = vcn({
decoration: "link",
size: "md",
},
+ success: {
+ border: "success",
+ background: "success",
+ decoration: "none",
+ size: "md",
+ },
+ warning: {
+ border: "warning",
+ background: "warning",
+ decoration: "none",
+ size: "md",
+ },
+ danger: {
+ border: "danger",
+ background: "danger",
+ decoration: "none",
+ size: "md",
+ },
},
});
diff --git a/packages/react/stories/Button.stories.tsx b/packages/react/stories/Button.stories.tsx
index 41d82dd..4932ca3 100644
--- a/packages/react/stories/Button.stories.tsx
+++ b/packages/react/stories/Button.stories.tsx
@@ -16,27 +16,15 @@ export const Link = () => {
};
export const Success = () => {
- return (
-
- );
+ return ;
};
export const Warning = () => {
- return (
-
- );
+ return ;
};
export const Danger = () => {
- return (
-
- );
+ return ;
};
export const AsChild = () => {