Files
angel 50adc8e2de
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Tests / Go tests (push) Failing after 20s
prototyped svg reports
2026-08-20 00:35:13 -06:00

25 lines
338 B
Go

package svg
type (
X1 struct {
*LengthAttr[X1Tag]
}
X1P struct {
PercentageAttr[X1Tag]
}
X1Tag struct{}
)
func (l *Length) AsX1() X1 {
return X1{LengthAttr: (*LengthAttr[X1Tag])(l)}
}
func (p Percentage) AsX1() X1P {
return X1P{PercentageAttr: (PercentageAttr[X1Tag])(p)}
}
func (X1Tag) PrintTag() string {
return "x1"
}