react-native-svg
Version:
A <Svg /> element for react-native that renders Svg images using SVGKit
32 lines (24 loc) • 401 B
JavaScript
/**
* @providesModule Line
* @flow
*/
;
var React = require('react-native');
var {
View,
PropTypes,
StyleSheet,
} = React;
var Line = React.createClass({
propTypes: {
x1: PropTypes.string,
y1: PropTypes.string,
x2: PropTypes.string,
y2: PropTypes.string,
style: PropTypes.string,
},
render() {
return <View />;
},
});
module.exports = Path;