Files
swift-hvac-toolbox/Sources/Styleguide/ResultBox.swift
Michael Housh 159031a023
Some checks are pending
CI / macOS (debug, 16.2) (push) Waiting to run
CI / macOS (release, 16.2) (push) Waiting to run
CI / ubuntu (push) Successful in 6m58s
feat: Adds hydronic system pressure calculator.
2025-03-07 15:15:28 -05:00

18 lines
383 B
Swift

import Elementary
public struct ResultBox<Body: HTML>: HTML {
let body: Body
public init(@HTMLBuilder body: () -> Body) {
self.body = body()
}
public var content: some HTML<HTMLTag.div> {
div(.class("w-full rounded-lg shadow-lg bg-blue-100 border border-blue-600 text-blue-600 p-6")) {
body
}
}
}
extension ResultBox: Sendable where Body: Sendable {}