diff --git a/packages/react/stories/Input.stories.tsx b/packages/react/stories/Input.stories.tsx
deleted file mode 100644
index 167d108..0000000
--- a/packages/react/stories/Input.stories.tsx
+++ /dev/null
@@ -1,115 +0,0 @@
-import React from "react";
-import { Input, InputFrame } from "../components/Input";
-import { Button } from "../components/Button";
-
-export default {
- title: "React/Input",
-};
-
-export const TextInput = () => {
- return ;
-};
-
-export const PasswordInput = () => {
- return ;
-};
-
-export const InvalidInput = () => {
- return ;
-};
-
-export const DisabledInput = () => {
- return ;
-};
-
-export const InputWithFrame = () => {
- const [passwordState, setPasswordState] = React.useState({ visible: false });
-
- return (
-
-
-
-
- );
-};
-
-export const InputWithFrameInvalid = () => {
- const [passwordState, setPasswordState] = React.useState({ visible: false });
-
- return (
-
-
-
-
- );
-};