Revert "Storybook created"

This reverts commit acc572e6be.
This commit is contained in:
adilallo
2025-08-11 12:00:34 -06:00
parent acc572e6be
commit 4ef658a355
37 changed files with 13 additions and 4880 deletions
-42
View File
@@ -1,42 +0,0 @@
import HeaderTab from "../app/components/HeaderTab";
export default {
title: "Components/HeaderTab",
component: HeaderTab,
parameters: {
layout: "centered",
},
tags: ["autodocs"],
argTypes: {
stretch: {
control: { type: "boolean" },
},
},
args: {
children: "Header Tab Content",
stretch: false,
},
};
export const Default = {
args: {},
};
export const Stretched = {
args: {
stretch: true,
children: "Stretched Header Tab",
},
};
export const WithContent = {
render: () => (
<div className="w-full max-w-2xl">
<HeaderTab>
<div className="flex items-center h-full">
<span className="text-white font-medium">Tab Content</span>
</div>
</HeaderTab>
</div>
),
};