Skip to content

Commit 9e872df

Browse files
committed
fix: use custom Textarea component instead of native textarea
1 parent 7fa6fd4 commit 9e872df

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
import { Textarea } from "@/components/retroui/Textarea";
2+
13
export default function TextareaStyleDefault() {
24
return (
3-
<textarea
5+
<Textarea
46
rows={4}
57
placeholder="type something..."
6-
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"
79
/>
810
);
911
}

0 commit comments

Comments
 (0)