next-gen-ui
Version:
Next Gen Ui is a home for front-end & UI/Ux developers. We provide all the necessary components required to build a scalable front-end application which suits the user experience in a unique way.
20 lines • 962 B
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { StyledLink } from './styled';
var Link = function (props, ref) {
var className = props.className, _a = props.disabled, disabled = _a === void 0 ? false : _a, children = props.children, _b = props.as, as = _b === void 0 ? 'a' : _b, href = props.href;
return (_jsx(StyledLink, __assign({ ref: ref, className: className, as: disabled ? 'p' : as, href: href, disabled: disabled }, { children: children }), void 0));
};
export default React.forwardRef(Link);
//# sourceMappingURL=link.js.map