// Copyright 2022 Amazon.com and its affiliates; all rights reserved.
// SPDX-License-Identifier: MIT No Attribution
import {Link} from "@cloudscape-design/components";
import {externalLinkProps} from "../../common/labels";
import React from "react";
export const InfoLink = ({ id, onFollow, ariaLabel }) => (
Info
);
// a special case of external link, to be used within a link group, where all of them are external
// and we do not repeat the icon
export const ExternalLinkItem = ({ href, text }) => (
{text}
);