Files
DefinitelyTyped/types/react-native-svg-uri/react-native-svg-uri-tests.tsx
2017-06-28 21:34:49 -04:00

14 lines
309 B
TypeScript

import * as React from 'react';
import { View } from 'react-native';
import SvgUri from 'react-native-svg-uri';
const TestSvgUri = () => (
<View>
<SvgUri
width="200"
height="200"
source={{ uri: 'http://thenewcode.com/assets/images/thumbnails/homer-simpson.svg' }}
/>
</View>
);