UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

19 lines (18 loc) 448 B
import React from 'react'; export interface SvgImageProps { /** * the asset tint */ tintColor?: string | null; data: any; style?: object[]; height?: number; width?: number; id?: string; } 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;