From 9b891c83faa54124087499e8e04960a97d611758 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 1 Nov 2024 12:11:12 +0100 Subject: [PATCH] Delete unused FormText component --- src/utils/forms/FormText.tsx | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 src/utils/forms/FormText.tsx diff --git a/src/utils/forms/FormText.tsx b/src/utils/forms/FormText.tsx deleted file mode 100644 index f80b5094..00000000 --- a/src/utils/forms/FormText.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import type { FC, PropsWithChildren } from 'react'; - -export const FormText: FC> = ({ children }) => ( - {children} -);