import React from "react"; import classNames from "classnames"; import { Link, LinkProps } from "../Link"; import { Icon, ICON_TYPE } from "../Icon"; export interface ArrowLinkProps extends LinkProps { block?: boolean; } const defaultArrowLinkProps: Partial = { block: false, }; const ArrowLink = (props: ArrowLinkProps) => { const { className, children, block = defaultArrowLinkProps.block, ...rest } = props; return ( {children} ); }; ArrowLink.defaultProps = defaultArrowLinkProps; export { ArrowLink };