import React from 'react'; import { ViewStyle, Image, Platform, StyleProp, ImageStyle } from 'react-native'; import { SvgCssUri } from 'react-native-svg/css'; type SvgContainerProps = { url: string; onReady?: () => void; style?: ViewStyle; }; export const SvgContainer = ({ url, onReady, style }: SvgContainerProps) => { if (Platform.OS === 'web') { return ( } /> ); } return ( ); };