From 52cbea16faeeb420e0eecf6d6bcf12a8767af318 Mon Sep 17 00:00:00 2001 From: Hadeed Ahmad Date: Thu, 6 Jun 2024 22:54:37 +0400 Subject: [PATCH] Add hover and active states --- src/app.jsx | 110 +++++++++++++++++++++++++--------------------------- 1 file changed, 53 insertions(+), 57 deletions(-) diff --git a/src/app.jsx b/src/app.jsx index 4f6a8ae..38e84c9 100644 --- a/src/app.jsx +++ b/src/app.jsx @@ -1,69 +1,65 @@ import * as RadioGroup from "@radix-ui/react-radio-group"; +const InputField = ({ label, type = "text", required = false, ...props }) => { + return ( + + ); +}; + export default () => { return (
-

Contact Us

+
+

Contact Us

-
-
-
- - * +
+ + + + +
+
+ + * +
+ + + {["General Enquiry", "Support Request"].map((label) => ( + + + + ))} +
-
- -
-
- - * -
- -
- -
-
- - * -
- -
- -
-
- - * -
- - - {["General Enquiry", "Support Request"].map((label) => ( - - - - ))} - -
-
+
);