Files
EeveeSpotifyReborn/Sources/EeveeSpotify/Settings/Views/Shared/ChevronRightView.swift
T
2024-10-09 21:38:29 +03:00

10 lines
232 B
Swift

import SwiftUI
struct ChevronRightView: View {
var body: some View {
Image(systemName: "chevron.right")
.font(.subheadline.weight(.semibold))
.foregroundColor(Color(UIColor.systemGray2))
}
}