xtablo-source/deprecated/internal/web/ui/space.templ
Arthur Belleville 5d0c201e86
Some checks failed
backend-ci / Backend tests (pull_request) Failing after 53s
backend-ci / Backend tests (push) Failing after 1s
Some work
2026-05-23 17:26:01 +02:00

13 lines
263 B
Text

package ui
type SpaceProps struct {
Size SpacingStep
}
templ SpaceX(props SpaceProps) {
<span class={ spaceXClass(props.Size) } aria-hidden="true"></span>
}
templ SpaceY(props SpaceProps) {
<div class={ spaceYClass(props.Size) } aria-hidden="true"></div>
}