UNPKG

slanted-gamedev-toolz

Version:

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

9 lines (8 loc) 268 B
import { jsx as _jsx } from "react/jsx-runtime"; import { gameCardShadow } from "./GameCardSx"; export const InfoPanel = ({ children, sx }) => { return (_jsx("div", { style: { ...sx, ...gameCardShadow, }, children: children })); };