react-native-svg
Version:
SVG library for react-native
16 lines (15 loc) • 359 B
TypeScript
import { Component } from 'react';
declare type StopProps = {
parent?: Component;
};
export default class Stop extends Component<StopProps, {}> {
props: StopProps;
static displayName: string;
static defaultProps: {
stopColor: string;
stopOpacity: number;
};
setNativeProps: () => void;
render(): null;
}
export {};