15 lines
452 B
Vue
15 lines
452 B
Vue
<script setup lang="ts">
|
|
import { Label } from '@/lib/registry/new-york/ui/label'
|
|
import { Textarea } from '@/lib/registry/new-york/ui/textarea'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="grid w-full gap-1.5">
|
|
<Label for="message-2">Your message</Label>
|
|
<Textarea id="message-2" placeholder="Type your message here." />
|
|
<p class="text-sm text-muted-foreground">
|
|
Your message will be copied to the support team.
|
|
</p>
|
|
</div>
|
|
</template>
|