Skip to content

Instantly share code, notes, and snippets.

@krystalcampioni
Created June 8, 2022 14:58
Show Gist options
  • Save krystalcampioni/451649e8445779467fe636ebcb14b326 to your computer and use it in GitHub Desktop.
Save krystalcampioni/451649e8445779467fe636ebcb14b326 to your computer and use it in GitHub Desktop.
import React from 'react';
import Svg, {
Circle,
Rect
} from 'react-native-svg';
function SomeComponent() {
return (
<Svg viewBox='0 0 100 100'>
<Circle
cx='50'
cy='50'
r='45'
/>
<Rect
x='15'
y='15'
width='70'
height='70'
/>
</Svg>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment