@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
17 lines • 581 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 Horizontal(_ref) {
let {
children
} = _ref,
props = _objectWithoutProperties(_ref, _excluded);
return React.createElement(Container, _extends({}, props, {
direction: "horizontal"
}), children);
}
Horizontal._supportsSpacingProps = true;
export default Horizontal;
//# sourceMappingURL=Horizontal.js.map