@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
18 lines • 582 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 P from './P';
import classnames from 'classnames';
const Lead = _ref => {
let {
className
} = _ref,
rest = _objectWithoutProperties(_ref, _excluded);
return React.createElement(P, _extends({
className: classnames('dnb-p--lead', className)
}, rest));
};
Lead._supportsSpacingProps = true;
export default Lead;
//# sourceMappingURL=Lead.js.map