feat: Adds airflow at pressure feature.
This commit is contained in:
15
Sources/Styleguide/Buttons.swift
Normal file
15
Sources/Styleguide/Buttons.swift
Normal file
@@ -0,0 +1,15 @@
|
||||
import SwiftUI
|
||||
|
||||
public struct InfoButton: View {
|
||||
let action: () -> Void
|
||||
|
||||
public init(action: @escaping () -> Void) {
|
||||
self.action = action
|
||||
}
|
||||
|
||||
public var body: some View {
|
||||
Button(action: action) {
|
||||
Label("Info", systemImage: "info.circle")
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user