@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
17 lines • 646 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
const _excluded = ["className"];
import React from 'react';
import classnames from 'classnames';
import { Space } from '../../../../components';
export default function TestElement(_ref) {
let {
className = null
} = _ref,
props = _objectWithoutProperties(_ref, _excluded);
return React.createElement(Space, _extends({
className: classnames('dnb-forms-test-element', className)
}, props));
}
TestElement._supportsSpacingProps = true;
//# sourceMappingURL=TestElement.js.map