Bubble/Threaded/Components/Post/QuotePostView.swift

21 lines
540 B
Swift

//Made by Lumaa
import SwiftUI
struct QuotePostView: View {
@EnvironmentObject private var navigator: Navigator
var status: Status
var body: some View {
CompactPostView(status: status, quoted: true)
.environmentObject(navigator)
.frame(maxWidth: 250, maxHeight: 200)
.padding(15)
.padding([.horizontal], 20)
.overlay(
RoundedRectangle(cornerRadius: 15)
.stroke(.gray.opacity(0.3), lineWidth: 1)
)
}
}