react-native-svg
Version:
A <Svg /> element for react-native that renders Svg images using SVGKit
31 lines (24 loc) • 444 B
JavaScript
/**
* @providesModule Path
* @flow
*/
'use strict';
var React = require('react-native');
var {
View,
PropTypes,
} = React;
var Path = React.createClass({
propTypes: {
fill: PropTypes.string,
stroke: PropTypes.string,
strokeWidth: PropTypes.string,
strokeMiterLimit: PropTypes.string,
d: PropTypes.string,
transform: PropTypes.string,
},
render() {
return <View />;
},
});
module.exports = Path;