@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
19 lines • 450 B
JavaScript
import React from 'react';
import Typography from "../typography/Typography.js";
import withComponentMarkers from "../../shared/helpers/withComponentMarkers.js";
import { jsx as _jsx } from "react/jsx-runtime";
function Span({
ref,
...props
}) {
return _jsx(Typography, {
element: "span",
ref: ref,
...props
});
}
withComponentMarkers(Span, {
_supportsSpacingProps: true
});
export default Span;
//# sourceMappingURL=Span.js.map