misc: SidebarLabel

This commit is contained in:
mrFq1
2023-06-20 23:06:42 +08:00
parent 87267f8e94
commit 720b7e5158
2 changed files with 35 additions and 7 deletions
@@ -0,0 +1,26 @@
//
// SwiftUIView.swift
//
//
//
import SwiftUI
struct SidebarLabel: View {
@State var item: SidebarItem
@State var iconName: String
var body: some View {
HStack {
Image(systemName: iconName)
.foregroundColor(.accentColor)
Text(item.rawValue)
}
}
}
struct SidebarLabel_Previews: PreviewProvider {
static var previews: some View {
SidebarLabel(item: .overview, iconName: "chart.bar.xaxis")
}
}