UNPKG

expo-svg-uri

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