CheckBox.swift 182 B

12345678910
  1. import SwiftUI
  2. struct CheckBox: View {
  3. @Binding var isChecked: Bool
  4. var body: some View {
  5. Image(systemName: isChecked ? "checkmark.circle.fill" : "circle")
  6. }
  7. }