diff --git a/packages/react/stories/Button.stories.tsx b/packages/react/stories/Button.stories.tsx
deleted file mode 100644
index 4932ca3..0000000
--- a/packages/react/stories/Button.stories.tsx
+++ /dev/null
@@ -1,36 +0,0 @@
-import { Button } from "../components/Button";
-
-export default {
- title: "React/Button",
-};
-
-export const Default = () => {
- return ;
-};
-export const Ghost = () => {
- return ;
-};
-
-export const Link = () => {
- return ;
-};
-
-export const Success = () => {
- return ;
-};
-
-export const Warning = () => {
- return ;
-};
-
-export const Danger = () => {
- return ;
-};
-
-export const AsChild = () => {
- return (
-
- );
-};
diff --git a/packages/react/stories/Checkbox.stories.tsx b/packages/react/stories/Checkbox.stories.tsx
deleted file mode 100644
index 688515f..0000000
--- a/packages/react/stories/Checkbox.stories.tsx
+++ /dev/null
@@ -1,95 +0,0 @@
-import React from "react";
-import { Checkbox } from "../components/Checkbox";
-import { Label } from "../components/Label";
-import { Toaster, useToast } from "../components/Toast";
-
-export default {
- title: "React/Checkbox",
-};
-
-export const Default = () => {
- return ;
-};
-
-export const DefaultChecked = () => {
- return ;
-};
-
-export const Controlled = () => {
- const [state, setState] = React.useState(false);
- const { toast } = useToast();
-
- React.useEffect(() => {
- toast({
- title: "Checkbox Toggled",
- description: `Checkbox state changed to ${state}`,
- status: state ? "success" : "error",
- });
- }, [state]);
-
- return (
- <>
-
- {
- setState(e.currentTarget.checked);
- }}
- />
- >
- );
-};
-
-export const UsingWithLabel = () => {
- return (
-
- );
-};
-
-export const Disabled = () => {
- return (
-
- );
-};
-
-export const DisabledChecked = () => {
- return (
-
- );
-};
-
-export const BaseSize = () => {
- return (
-
- );
-};
-
-export const MediumSize = () => {
- return (
-
- );
-};
-
-export const LargeSize = () => {
- return (
-
- );
-};