react-native-svg
Version:
SVG library for react-native
16 lines (15 loc) • 400 B
TypeScript
/// <reference types="react" />
import Shape from './Shape';
export default class Polyline extends Shape<{
points?: number[];
}> {
static displayName: string;
static defaultProps: {
points: string;
};
setNativeProps: (props: Object & {
points?: string | (string | number)[] | undefined;
d?: string | undefined;
}) => void;
render(): JSX.Element;
}