WinterGram/third-party/SwiftSVG/Sources/StylingAttributes.swift
2026-04-24 23:19:15 +04:00

17 lines
354 B
Swift

public protocol StylingAttributes {
var style: String? { get set }
}
enum StylingAttributesKeys: String, CodingKey {
case style
}
public extension StylingAttributes {
var stylingDescription: String {
if let style {
"\(StylingAttributesKeys.style.rawValue)=\"\(style)\""
} else {
""
}
}
}