Geral
Textarea
Componente de Textarea
O Textarea
permite a captura de texto de múltiplas linhas, com opções de personalização e validação de erros.
Como importar
import { Textarea } from '@/app/shared/@JustLaunch/components';
Exemplo de uso
<Textarea.Root>
<Textarea.Label>Label</Textarea.Label>
<Textarea.PlaceHolder placeholder='Type your text here...' />
</Textarea.Root>
Com Erro
<Textarea.Root>
<Textarea.Label>Label</Textarea.Label>
<Textarea.PlaceHolder
placeholder='Type your text here...'
error={{ message: 'This field is required' }}
/>
</Textarea.Root>
Com Estilos Customizados
<Textarea.Root>
<Textarea.Label>Label</Textarea.Label>
<Textarea.PlaceHolder placeholder='Custom styles applied...' className='border-blue-500' />
</Textarea.Root>