| 3 | import { StyleSheet, View } from "react-native"; |
| 4 | |
| 5 | interface DarkModeSvgProps { |
| 6 | children: ReactElement; |
| 7 | width?: number; |
| 8 | height?: number; |
| 9 | style?: any; |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * DarkModeSvg - Wraps SVG illustrations with proper dark mode support. |
nothing calls this directly
no outgoing calls
no test coverage detected