@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
17 lines • 571 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
const _excluded = ["children"];
import React from 'react';
import Container from './Container';
function Vertical(_ref) {
let {
children
} = _ref,
props = _objectWithoutProperties(_ref, _excluded);
return React.createElement(Container, _extends({}, props, {
direction: "vertical"
}), children);
}
Vertical._supportsSpacingProps = true;
export default Vertical;
//# sourceMappingURL=Vertical.js.map