react-native-svg
Version:
SVG library for react-native
15 lines • 437 B
TypeScript
import type { ReactNode } from 'react';
import Shape from './Shape';
import type { NumberProp } from '../lib/extract/types';
export interface SymbolProps {
children?: ReactNode;
id?: string;
viewBox?: string;
preserveAspectRatio?: string;
opacity?: NumberProp;
}
export default class Symbol extends Shape<SymbolProps> {
static displayName: string;
render(): JSX.Element;
}
//# sourceMappingURL=Symbol.d.ts.map