UNPKG

@pantheon-systems/design-toolkit-react

Version:
37 lines (34 loc) 1.95 kB
import _defineProperty from '@babel/runtime/helpers/defineProperty'; import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties'; import PropTypes from 'prop-types'; import { FAIcon } from '../lib/customPropTypes.js'; import Icon from '../Icons/Icon.js'; import NavLink from './NavLink.js'; import { jsxs, jsx } from 'react/jsx-runtime'; var _excluded = ["children", "icon"]; function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } var GlobalPrimaryLink = function GlobalPrimaryLink(_ref) { var children = _ref.children, icon = _ref.icon, rest = _objectWithoutProperties(_ref, _excluded); return /*#__PURE__*/jsxs(NavLink, _objectSpread(_objectSpread({}, rest), {}, { children: [/*#__PURE__*/jsx(Icon, { icon: icon, size: "lg" }), /*#__PURE__*/jsx("div", { className: "mt-1", children: children })] })); }; GlobalPrimaryLink.propTypes = { children: PropTypes.string.isRequired, /** * Icon to display */ icon: FAIcon.isRequired }; var GlobalPrimaryLink$1 = GlobalPrimaryLink; export { GlobalPrimaryLink$1 as default }; //# sourceMappingURL=GlobalPrimaryLink.js.map