mirror of
https://github.com/stoatchat/for-ios.git
synced 2026-07-19 16:43:34 -04:00
33 lines
580 B
Swift
33 lines
580 B
Swift
//
|
|
// MessageBadge.swift
|
|
// Revolt
|
|
//
|
|
// Created by Angelo on 18/11/2023.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
import Types
|
|
|
|
struct MessageBadge: View {
|
|
var text: String
|
|
var color: Color
|
|
|
|
var body: some View {
|
|
Text(text)
|
|
.font(.caption)
|
|
.fontWeight(.medium)
|
|
.padding(.horizontal, 4)
|
|
.padding(.vertical, 2)
|
|
.background(color, in: RoundedRectangle(cornerRadius: 5))
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
MessageBadge(text: "Masquerade", color: .teal)
|
|
}
|
|
|
|
#Preview {
|
|
MessageBadge(text: "Bot", color: .purple)
|
|
}
|