mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
22 lines
377 B
JavaScript
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;
|
|
|