continue re-design

This commit is contained in:
Developers Digest
2025-09-05 13:06:17 -04:00
parent b96d048dbd
commit 836b085f75
270 changed files with 32269 additions and 5182 deletions
+21
View File
@@ -0,0 +1,21 @@
import { cn } from "@/utils/cn";
export default function Textarea(
textareaProps: React.ComponentPropsWithoutRef<"textarea">,
) {
return (
<label
className={cn(
"py-8 px-12 rounded-8 transition-all w-full block gap-4 cursor-text",
"relative bg-accent-white",
"inside-border before:border-black-alpha-8 hover:before:border-black-alpha-12 hover:bg-black-alpha-2 focus-within:!bg-accent-white focus-within:before:!border-heat-100 focus-within:before:!border-[1.25px]",
"text-body-medium",
)}
>
<textarea
className="outline-none w-full resize-none bg-transparent"
{...textareaProps}
/>
</label>
);
}