UNPKG

react-native-svg

Version:
12 lines (11 loc) 340 B
/// <reference types="react" /> import Shape from './Shape'; import { 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(): JSX.Element; }