mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
21 lines
421 B
JavaScript
21 lines
421 B
JavaScript
import { Component } from "react";
|
|
import PropTypes from "prop-types";
|
|
import { numberProp } from "../lib/props";
|
|
|
|
export default class extends Component {
|
|
static displayName = "Stop";
|
|
static propTypes = {
|
|
stopColor: PropTypes.string,
|
|
stopOpacity: numberProp
|
|
};
|
|
|
|
static defaultProps = {
|
|
stopColor: "#000",
|
|
stopOpacity: 1
|
|
};
|
|
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|