import type { StoryObj, Meta } from '@storybook/react'
import { Box, Text, TextArea, TextAreaProps } from '@vinioliver-ignite-ui/react'
export default {
title: 'Typography/Text Area',
component: TextArea,
args:{},
decorators:[
(Story) =>{
return (
Observations
{Story()}
)
}
],
} as Meta
export const Primary: StoryObj ={
args: {
placeholder: 'Add any observation...',
}
}
export const Disabled: StoryObj ={
args:{
disabled: true,
},
}