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;