/* Copyright 2024 New Vector Ltd. SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE in the repository root for full details. */ import { type ComponentProps, type FC } from "react"; import { Button } from "@vector-im/compound-web"; import type { LinkProps } from "react-router-dom"; import { useLink } from "./Link"; type Props = Omit>, "as" | "href"> & { to: LinkProps["to"]; state?: unknown; }; /** * A version of Compound's button component that acts as a link and integrates * with our router setup. */ export const LinkButton: FC = ({ ref, to, state, ...props }) => { const [path, onClick] = useLink(to, state); return