FullWidthDivider.swift 167 B

123456789
  1. import SwiftUI
  2. struct FullWidthDivider: View {
  3. var body: some View {
  4. Rectangle()
  5. .fill(AppTheme.border)
  6. .frame(height: 1)
  7. }
  8. }