From 32a20e583ece883d2eae6da07c6ef7f5f1f0b6e1 Mon Sep 17 00:00:00 2001 From: Vrunda Kansara Date: Fri, 6 Sep 2024 17:46:35 +0530 Subject: [PATCH] removed unwanted code --- .../input-field/input-field.stories.js | 57 ------------------- 1 file changed, 57 deletions(-) diff --git a/src/molecules/input-field/input-field.stories.js b/src/molecules/input-field/input-field.stories.js index 7d515578..721c6f2e 100644 --- a/src/molecules/input-field/input-field.stories.js +++ b/src/molecules/input-field/input-field.stories.js @@ -54,65 +54,8 @@ export const InputFileField = { export default { title: 'Molecules/Input Field', component: InputField, - render: () => ( - <> - - - - ), parameters: { layout: 'centered', }, tags: [ 'autodocs' ], - // argTypes: { - // variant: { - // name: 'Variant', - // description: 'Defines the style variant of the badge.', - // control: 'select', - // options: [ 'neutral', 'red', 'yellow', 'green', 'blue', 'inverse' ], - // table: { - // type: { summary: 'string' }, - // defaultValue: { summary: 'neutral' }, - // }, - // }, - // size: { - // name: 'Size', - // description: 'Defines the size of the badge.', - // control: 'select', - // options: [ 'xs', 'sm', 'md', 'lg' ], - // table: { - // type: { summary: 'string' }, - // defaultValue: { summary: 'md' }, - // }, - // }, - // type: { - // name: 'Type', - // description: 'Defines the type of the badge.', - // control: 'select', - // options: [ 'pill', 'rounded' ], - // table: { - // type: { summary: 'string' }, - // defaultValue: { summary: 'pill' }, - // }, - // }, - // disabled: { - // name: 'Disabled', - // description: 'Defines if the badge is disabled.', - // control: 'boolean', - // table: { - // type: { summary: 'boolean' }, - // defaultValue: { summary: 'false' }, - // }, - // }, - // closable: { - // name: 'Clasable', - // description: 'Defines if the badge is closable.', - // control: 'boolean', - // table: { - // type: { summary: 'boolean' }, - // defaultValue: { summary: 'true' }, - // }, - // }, - // label: { control: 'text', defaultValue: 'Badge' }, - // }, };