expo-svg-uri
Version:
Render an SVG Image
12 lines • 463 B
TypeScript
import React from "react";
import { ImageSourcePropType } from "react-native";
import { SvgProps } from "react-native-svg";
import { AdditionalProps } from "react-native-svg/lib/typescript/xml";
export type SvgUriProps = SvgProps & AdditionalProps & {
source?: ImageSourcePropType | null;
xml?: string | null;
loading?: React.JSX.Element;
};
declare const SvgUri: (props: SvgUriProps) => any;
export default SvgUri;
//# sourceMappingURL=index.d.ts.map