UNPKG

slanted-gamedev-toolz

Version:

A slanted mix of tools for your brilliant ideas in game design.

11 lines (10 loc) 322 B
import { jsx as _jsx } from "react/jsx-runtime"; export const BtnWrapRow = ({ children }) => { const style = { display: "flex", flexWrap: "wrap", flexDirection: "row", justifyContent: "center", }; return (_jsx("div", { id: "playBtnRow", style: style, children: children })); };