aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/InputText.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/InputText.tsx')
-rw-r--r--frontend/app/components/InputText.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/app/components/InputText.tsx b/frontend/app/components/InputText.tsx
index 9b57a74..76ca860 100644
--- a/frontend/app/components/InputText.tsx
+++ b/frontend/app/components/InputText.tsx
@@ -3,10 +3,10 @@ import React from "react";
type InputProps = React.InputHTMLAttributes<HTMLInputElement>;
export default function InputText(props: InputProps) {
- return (
- <input
- {...props}
- className="p-2 block w-full border border-brand-600 rounded-md transition duration-300 focus:ring-3 focus:ring-brand-400 focus:outline-hidden"
- />
- );
+ return (
+ <input
+ {...props}
+ className="p-2 block w-full border border-brand-600 rounded-md transition duration-300 focus:ring-3 focus:ring-brand-400 focus:outline-hidden"
+ />
+ );
}