import type { Meta, StoryObj } from '@storybook/react';
import { Box, Text, TextInput, TextInputProps } from '@neno-ignite-ui/react';
export default {
title: 'Form/TextInput',
component: TextInput,
args: {},
decorators: [
(Story) => (
Username
)
]
} as Meta;
export const Primary: StoryObj = {
args: {
placeholder: 'Type your name'
}
};
export const WithPrefix: StoryObj = {
args: {
prefix: 'cal.com/'
}
};
export const Disabled: StoryObj = {
args: {
disabled: true
}
};