@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
20 lines • 437 B
JavaScript
import React from 'react';
import E from "../Element.js";
import withComponentMarkers from "../../shared/helpers/withComponentMarkers.js";
import { jsx as _jsx } from "react/jsx-runtime";
function Div({
ref,
...props
}) {
return _jsx(E, {
as: "div",
skeletonMethod: "shape",
ref: ref,
...props
});
}
withComponentMarkers(Div, {
_supportsSpacingProps: true
});
export default Div;
//# sourceMappingURL=Div.js.map