react-native-ui-lib
Version:
[](https://stand-with-ukraine.pp.ua)
15 lines (14 loc) • 368 B
TypeScript
import React from 'react';
export interface SvgImageProps {
/**
* the asset tint
*/
tintColor?: string | null;
data: any;
}
declare function SvgImage(props: SvgImageProps): React.JSX.Element | null;
declare namespace SvgImage {
var displayName: string;
var isSvg: typeof import("../../utils/imageUtils").isSvg;
}
export default SvgImage;