16 lines
354 B
Swift
16 lines
354 B
Swift
import SwiftUI
|
|
// Deprecated: SVG runtime rendering removed. This view is a no-op placeholder to keep API compatibility.
|
|
struct SVGImage: View {
|
|
let svgName: String
|
|
var contentMode: ContentMode = .fit
|
|
var tintColor: Color?
|
|
|
|
var body: some View {
|
|
Color.clear
|
|
}
|
|
|
|
enum ContentMode {
|
|
case fit
|
|
case fill
|
|
}
|
|
} |