Skip to content

Instantly share code, notes, and snippets.

@trooperandz
Created October 18, 2020 23:30
Show Gist options
  • Select an option

  • Save trooperandz/041da36ed0ec0d9b797c22a4bccc0ae5 to your computer and use it in GitHub Desktop.

Select an option

Save trooperandz/041da36ed0ec0d9b797c22a4bccc0ae5 to your computer and use it in GitHub Desktop.
React Native svg usage example
import React from 'react';
import { View } from 'react-native';
import MyIcon from 'src/assets/my-svg-icon.svg';
export default ExampleIcon = () => (
<View>
<MyIcon width={48} height={48} fill="#000" />
</View>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment