react-native-svg
Version:
SVG library for react-native
12 lines • 385 B
TypeScript
import * as React from 'react';
import Shape from './Shape';
import type { CommonPathProps, NumberProp } from '../lib/extract/types';
export interface PathProps extends CommonPathProps {
d?: string;
opacity?: NumberProp;
}
export default class Path extends Shape<PathProps> {
static displayName: string;
render(): React.JSX.Element;
}
//# sourceMappingURL=Path.d.ts.map