nexpi-ui
Version:
An elegant and minimalist Next.js 14 component library
9 lines • 397 B
JavaScript
import { __assign, __rest } from "tslib";
import React from 'react';
import styles from './styles/Box.module.css';
var Box = function (_a) {
var children = _a.children, style = _a.style, props = __rest(_a, ["children", "style"]);
return (React.createElement("div", __assign({ style: style, className: styles.Box }, props), children));
};
export default Box;
//# sourceMappingURL=Box.js.map