react-native-svg
Version:
SVG library for react-native
21 lines (17 loc) • 546 B
JavaScript
import {Component, PropTypes} from 'react';
import {numberProp} from '../lib/props';
export default class extends Component{
static displayName = 'Pattern';
static propTypes = {
x1: numberProp,
x2: numberProp,
y1: numberProp,
y2: numberProp,
patternTransform: PropTypes.string,
patternUnits: PropTypes.oneOf(['userSpaceOnUse', 'objectBoundingBox']),
patternContentUnits: PropTypes.oneOf(['userSpaceOnUse', 'objectBoundingBox'])
};
render() {
return null;
}
}