Files
EeveeSpotifyReborn/Sources/EeveeSpotify/Settings/Shared/Views/ChevronRightView.swift
T

10 lines
236 B
Swift

import SwiftUI
struct ChevronRightView: View {
var body: some View {
Image(systemName: "chevron.right")
.font(.system(size: 14, weight: .bold))
.foregroundColor(Color(UIColor.tertiaryLabel))
}
}