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