import React, {
Component
} from 'react';
import Svg, {
Image,
Defs,
Circle,
ClipPath,
Rect,
Text
} from 'react-native-svg';
class ImageExample extends Component{
static title = 'Draw Image with preserveAspectRatio prop';
render() {
return ;
}
}
class ClipImage extends Component{
static title = 'Clip Image';
render() {
return ;
}
}
const icon = ;
const samples = [ImageExample, ClipImage];
export {
icon,
samples
};