Cleanup pass 2

This commit is contained in:
adilallo
2026-05-22 13:30:47 -06:00
parent b7c804bac8
commit 753220f97b
76 changed files with 1338 additions and 1020 deletions
+18
View File
@@ -0,0 +1,18 @@
import Shapes from "../../app/components/asset/Shapes";
export default {
title: "Components/Asset/Shapes",
component: Shapes,
parameters: { layout: "centered" },
argTypes: {
variant: {
control: { type: "select" },
options: ["yellow", "purple", "green", "orange"],
},
},
};
export const Yellow = { args: { variant: "yellow" } };
export const Purple = { args: { variant: "purple" } };
export const Green = { args: { variant: "green" } };
export const Orange = { args: { variant: "orange" } };