mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
21 lines
344 B
JavaScript
21 lines
344 B
JavaScript
import { Component } from "react";
|
|
|
|
export default class Stop extends Component {
|
|
static displayName = "Stop";
|
|
|
|
static defaultProps = {
|
|
stopColor: "#000",
|
|
stopOpacity: 1,
|
|
};
|
|
setNativeProps = () => {
|
|
const { parent } = this.props;
|
|
if (parent) {
|
|
parent.forceUpdate();
|
|
}
|
|
};
|
|
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|