import type { AnchorHTMLAttributes } from "react";
import { cn } from "../../lib/cn";
export type LinkButtonProps = AnchorHTMLAttributes & {
tone?: "primary" | "secondary";
};
export function LinkButton({
children,
className,
tone = "secondary",
...props
}: LinkButtonProps) {
return (
{children}
);
}