wrap indicator for grid

This commit is contained in:
2025-02-23 18:58:32 -05:00
parent 84d21239ed
commit 4950695388
8 changed files with 91 additions and 39 deletions

View File

@ -0,0 +1,9 @@
import { horizontal_wrap } from "./layout";
import create from "./create";
export default function wrapindicator() {
const wi_layout = horizontal_wrap()
wi_layout.appendChild(create("div", "wrap-indicator"))
return wi_layout
}