import React from "react";
import Icon from "components/Icon";
import classnames from "classnames";
import { Colors } from "styles/var/colors";
interface ICustomLinkProps {
url: string;
text: string;
className?: string;
newTab?: boolean;
/** Icon wraps on new line with last word */
multiline?: boolean;
iconColor?: Colors;
}
const baseClass = "custom-link";
const CustomLink = ({
url,
text,
className,
newTab = false,
multiline = false,
iconColor = "core-fleet-blue",
}: ICustomLinkProps): JSX.Element => {
const customLinkClass = classnames(baseClass, className);
const target = newTab ? "_blank" : "";
const multilineText = text.substring(0, text.lastIndexOf(" ") + 1);
const lastWord = text.substring(text.lastIndexOf(" ") + 1, text.length);
const content = multiline ? (
<>
{multilineText}
{lastWord}
{newTab && (
)}
>
) : (
<>
{text}
{newTab && (
)}
>
);
return (
{content}
);
};
export default CustomLink;