UNPKG

react-antd-admin-panel

Version:

Easy prototyping admin panel using React and Antd

18 lines 602 B
import React from "react"; import { Row } from "antd"; const Space = (props) => { const model = props.model; return (React.createElement(Row, { style: { margin: 0, width: '100%', height: model._border, borderBottom: `${model._border}px solid #00000010`, maxHeight: model._bottom + model._top, marginBottom: model._bottom, marginRight: model._left, marginLeft: model._right, marginTop: model._top } })); }; export default Space; //# sourceMappingURL=Space.js.map