WIP: Working on friction rate worksheet views.

This commit is contained in:
2025-12-31 21:56:43 -05:00
parent 591875cf13
commit 24c87602e9
12 changed files with 326 additions and 11 deletions

View File

@@ -0,0 +1,20 @@
import Elementary
public struct Label: HTML, Sendable {
let title: String
public init(_ title: String) {
self.title = title
}
public init(_ title: @escaping () -> String) {
self.title = title()
}
public var body: some HTML<HTMLTag.span> {
span(.class("text-xl text-gray-400 font-bold")) {
title
}
}
}