import { AnchorHTMLAttributes, FC } from "react";
import { AnchorButton, AnchorButtonProps } from "@blueprintjs/core";
type OwnProps = {
href: string,
minimal?: AnchorButtonProps["minimal"]
};
const ButtonLink: FC & Partial>> = (props) => {
const { children = null, href, minimal = true, ...otherProps } = props;
return (
{children}
);
};
export default ButtonLink;