We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa6fd4 commit 9e872dfCopy full SHA for 9e872df
preview/components/textarea-style-default.tsx
@@ -1,9 +1,11 @@
1
+import { Textarea } from "@/components/retroui/Textarea";
2
+
3
export default function TextareaStyleDefault() {
4
return (
- <textarea
5
+ <Textarea
6
rows={4}
7
placeholder="type something..."
- className="px-4 py-2 w-full border-2 border-black shadow-md transition focus:outline-hidden focus:shadow-xs"
8
+ className="px-4 py-2 w-full border-2 shadow-md transition focus:outline-hidden focus:shadow-xs"
9
/>
10
);
11
}
0 commit comments