Commit c438e080 by G

Component rendering an information icon

parent ef0ae23e
import Box from "@components/bases/Box";
import { images } from "@styles/Commons";
import { Image } from "react-native";
const InformationIcon = () => {
return (
<Box width={50} height={50}>
<Image
source={require("../../../assets/icon_alert_information.png")}
style={images.contain}
/>
</Box>
);
};
export default InformationIcon;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment