damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

TimeDot.swift (359B)


      1 //
      2 //  TimeDot.swift
      3 //  damus
      4 //
      5 //  Created by William Casarin on 2023-06-01.
      6 //
      7 
      8 import SwiftUI
      9 
     10 struct TimeDot: View {
     11     var body: some View {
     12         Text(verbatim: "⋅")
     13             .font(.footnote)
     14             .foregroundColor(.gray)
     15     }
     16 }
     17 
     18 struct TimeDot_Previews: PreviewProvider {
     19     static var previews: some View {
     20         TimeDot()
     21     }
     22 }