import React from "react"; import styles from "./AttentionBoxLink.module.scss"; import Link, { LinkProps } from "../../Link/Link"; import cx from "classnames"; export type AttentionBoxLinkProps = LinkProps; const AttentionBoxLink: React.FC = ({ href, text, // TODO: use Link's target default in next major // For backward compatibility - using _self as default target = Link.target.SELF, className, ...linkProps }) => { return ( ); }; export default AttentionBoxLink;