From 7a8a889d6347d0b67e0a961ae4b4a7e7da8dce0f Mon Sep 17 00:00:00 2001 From: G Date: Mon, 27 May 2024 16:55:54 +0000 Subject: [PATCH] ErrorIcons -> ErrorIcon --- src/components/icons/ErrorIcon.tsx | 16 ++++++++++++++++ src/components/icons/ErrorIcons.tsx | 16 ---------------- src/components/modals/ErrorModal.tsx | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) create mode 100644 src/components/icons/ErrorIcon.tsx delete mode 100644 src/components/icons/ErrorIcons.tsx diff --git a/src/components/icons/ErrorIcon.tsx b/src/components/icons/ErrorIcon.tsx new file mode 100644 index 0000000..c3dc64e --- /dev/null +++ b/src/components/icons/ErrorIcon.tsx @@ -0,0 +1,16 @@ +import Box from "@components/bases/Box"; +import { images } from "@styles/Commons"; +import { Image } from "react-native"; + +const ErrorIcon = () => { + return ( + + + + ); +}; + +export default ErrorIcon; diff --git a/src/components/icons/ErrorIcons.tsx b/src/components/icons/ErrorIcons.tsx deleted file mode 100644 index c3dc64e..0000000 --- a/src/components/icons/ErrorIcons.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import Box from "@components/bases/Box"; -import { images } from "@styles/Commons"; -import { Image } from "react-native"; - -const ErrorIcon = () => { - return ( - - - - ); -}; - -export default ErrorIcon; diff --git a/src/components/modals/ErrorModal.tsx b/src/components/modals/ErrorModal.tsx index f68483a..524f7fd 100644 --- a/src/components/modals/ErrorModal.tsx +++ b/src/components/modals/ErrorModal.tsx @@ -1,6 +1,6 @@ import Button from "@components/Button"; import Box from "@components/bases/Box"; -import ErrorIcon from "@components/icons/ErrorIcons"; +import ErrorIcon from "@components/icons/ErrorIcon"; import { Text } from "react-native"; const ErrorModal = () => { -- libgit2 0.27.1