mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
10 lines
236 B
Swift
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))
|
|
}
|
|
}
|