-
- setValues(value),
- }}
- type="email"
- intent={select("Intent", Object.keys(IntentColors), "success")}
- />
-
-
- );
- });
-
-withDynamicProps.story = {
- name: "Dynamic Props",
- parameters: {
- design: {
- type: "figma",
- url:
- "https://www.figma.com/file/dcpKM4JTxsa7rd5MTcyJiT/Untitled?node-id=10%3A2",
- },
- },
-};
diff --git a/app/client/src/stories/TextInput.stories.tsx b/app/client/src/stories/TextInput.stories.tsx
deleted file mode 100644
index 0048ba75d0..0000000000
--- a/app/client/src/stories/TextInput.stories.tsx
+++ /dev/null
@@ -1,53 +0,0 @@
-import React from "react";
-import TextInputComponent from "components/designSystems/appsmith/TextInputComponent";
-import { withKnobs, text, boolean, select } from "@storybook/addon-knobs";
-import { IconNames } from "@blueprintjs/icons";
-import { withDesign } from "storybook-addon-designs";
-import Centered from "components/designSystems/appsmith/CenteredWrapper";
-
-export default {
- title: "TextInput",
- component: TextInputComponent,
- decorators: [withKnobs, withDesign],
-};
-
-const mandatoryProps = {
- widgetId: "abc",
-};
-
-const iconNames = Object.values({ ...IconNames });
-iconNames.unshift();
-export const withDynamicProps = () => (
-