From c438e0804359c1216aa30d21265a2f3573d14ad1 Mon Sep 17 00:00:00 2001 From: G Date: Tue, 28 May 2024 15:24:47 +0000 Subject: [PATCH] Component rendering an information icon --- src/components/icons/InformationIcon.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/components/icons/InformationIcon.tsx diff --git a/src/components/icons/InformationIcon.tsx b/src/components/icons/InformationIcon.tsx new file mode 100644 index 0000000..429b096 --- /dev/null +++ b/src/components/icons/InformationIcon.tsx @@ -0,0 +1,16 @@ +import Box from "@components/bases/Box"; +import { images } from "@styles/Commons"; +import { Image } from "react-native"; + +const InformationIcon = () => { + return ( + + + + ); +}; + +export default InformationIcon; -- libgit2 0.27.1