mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 22:05:14 +00:00
18 lines
346 B
JavaScript
18 lines
346 B
JavaScript
import React, {
|
|
Component,
|
|
PropTypes
|
|
} from 'react-native';
|
|
class Stop extends Component{
|
|
static displayName = 'Stop';
|
|
static propTypes = {
|
|
stopColor: PropTypes.string,
|
|
stopOpacity: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
};
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default Stop;
|
|
|