mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-07 23:37:35 +08:00
14 lines
309 B
TypeScript
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>
|
|
);
|