first commit

This commit is contained in:
2026-07-12 15:55:18 +05:30
commit ee98026cc5
404 changed files with 44522 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
// Progress bar (native <progress>, themed).
component Progress {
props {
value = 0
max = 100
class = ""
}
view {
<progress class="wire-progress {class}" value="{value}" max="{max}"></progress>
}
}