Files
react-native-svg/elements/Stop.js
Horcrux 6a0c47a898 refactor clipPath native code
refactor clipPath native code
add strokeMiterlimit prop support
2016-05-21 19:58:49 +08:00

22 lines
377 B
JavaScript

import {Component, PropTypes} from 'react';
import {numberProp} from '../lib/props';
class Stop extends Component{
static displayName = 'Stop';
static propTypes = {
stopColor: PropTypes.string,
stopOpacity: numberProp
};
static defaultProps = {
stopOpacity: 1
};
render() {
return null;
}
}
export default Stop;