import React from "react"; import { Meta, StoryObj } from "@storybook/react"; import Input from "./Input"; const meta: Meta = { component: Input, title: "Marbella/InputField", argTypes: {}, }; export default meta; type Story = StoryObj; export const Primary: Story = (args) => ( ); Primary.args = { error: false, disabled: false, label: "Primary", }; export const Success: Story = (args) => ( ); Success.args = { error: false, success: true, disabled: false, label: "Success", }; export const Error: Story = (args) => ( ); Error.args = { error: true, disabled: false, message: "Error", }; export const Disabled: Story = (args) => ( ); Disabled.args = { disabled: true, label: "Disabled", };