react-native-svg
Version:
SVG library for react-native
12 lines (11 loc) • 340 B
TypeScript
/// <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;
}