feat: Style updates, renames some files.

This commit is contained in:
2025-02-25 21:44:01 -05:00
parent 493154f4f1
commit 30cfde9f30
14 changed files with 112 additions and 43 deletions

View File

@@ -0,0 +1,13 @@
import Elementary
extension HTMLAttribute where Tag == HTMLTag.input {
static func min(_ value: String) -> Self {
.init(name: "min", value: value)
}
static func step(_ value: String) -> Self {
.init(name: "step", value: value)
}
}