UNPKG

react-native-svg

Version:
12 lines 385 B
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