CHResume/ResumeBuilder/Elements/PublicationView.swift
2023-08-23 16:17:34 +02:00

37 lines
916 B
Swift

import SwiftUI
struct PublicationView: View {
let info: Publication
let borderSpacing: CGFloat
let borderWidth: CGFloat
let accent: Color
var body: some View {
LeftBorderView(color: accent, spacing: borderSpacing, borderWidth: borderWidth) {
VStack(alignment: .leading) {
Text(info.venue)
.font(.caption)
.foregroundColor(.secondary)
Text(info.title)
.font(.subheadline)
.fontWeight(.regular)
}
}
}
}
struct PublicationView_Previews: PreviewProvider {
static var previews: some View {
PublicationView(info: .init(
venue: "My venue",
title: "The publication title"),
borderSpacing: 5,
borderWidth: 3,
accent: .orange)
}
}