@cantoo/rn-svg
Version:
SVG library for react-native
17 lines • 457 B
TypeScript
import React from 'react';
import Shape from './Shape';
import { NumberProp } from '../lib/extract/types';
export default class Polygon extends Shape<{
points?: number[];
}> {
static displayName: string;
static defaultProps: {
points: string;
};
setNativeProps: (props: Object & {
points?: string | NumberProp[];
d?: string;
}) => void;
render(): React.JSX.Element;
}
//# sourceMappingURL=Polygon.d.ts.map