mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 05:55:10 +00:00
26 lines
477 B
JavaScript
26 lines
477 B
JavaScript
import React, {
|
|
Component,
|
|
PropTypes
|
|
} from 'react-native';
|
|
|
|
let propType = PropTypes.oneOfType([PropTypes.string, PropTypes.number]);
|
|
|
|
class Image extends Component{
|
|
static displayName = 'Image';
|
|
static propTypes = {
|
|
x1: propType,
|
|
x2: propType,
|
|
y1: propType,
|
|
y2: propType,
|
|
href: PropTypes.string
|
|
//preserveAspectRatio: PropTypes.string
|
|
};
|
|
|
|
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default Image;
|