19 lines
214 B
Swift
19 lines
214 B
Swift
//
|
|
// Highlight.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2023-01-23.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
|
|
enum Highlight {
|
|
case none
|
|
case main
|
|
case reply
|
|
case custom(Color, Float)
|
|
}
|
|
|