>>>>>>> bc9dcea8 (fix: 🐛 change path to raw)A DEMO application to demonstrate how to use
svgr/cli
to make React Native Components from SVG files.
import React from "react";
import { StyleSheet, ScrollView } from "react-native";
import { AlienGun, RoboticHand, VrProgram } from "./src/components/icons";
export default function App() {
return (
<ScrollView>
<VrProgram color={"red"} />
<RoboticHand color={"blue"} />
<AlienGun color={"green"} />
</ScrollView>
);
}