Files
shadcn-ui/apps/v4/examples/base/textarea-button.tsx
shadcn 64b88b6cdb feat: refactor styles handling across v4 (#10176)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 09:50:58 +04:00

12 lines
309 B
TypeScript

import { Button } from "@/styles/base-nova/ui/button"
import { Textarea } from "@/styles/base-nova/ui/textarea"
export function TextareaButton() {
return (
<div className="grid w-full gap-2">
<Textarea placeholder="Type your message here." />
<Button>Send message</Button>
</div>
)
}