Files
element-call/src/button/LinkButton.tsx

27 lines
795 B
TypeScript
Raw Normal View History

2022-05-04 17:09:48 +01:00
/*
Copyright 2024 New Vector Ltd.
2022-05-04 17:09:48 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
2022-05-04 17:09:48 +01:00
*/
import { type ComponentProps, type FC } from "react";
import { Button } from "@vector-im/compound-web";
2022-06-11 23:21:20 +02:00
2025-01-06 18:00:20 +01:00
import type { LinkProps } from "react-router-dom";
import { useLink } from "./Link";
2022-08-02 00:46:16 +02:00
type Props = Omit<ComponentProps<typeof Button<"a">>, "as" | "href"> & {
to: LinkProps["to"];
state?: unknown;
};
2021-12-13 16:16:25 -08:00
/**
* A version of Compound's button component that acts as a link and integrates
* with our router setup.
*/
export const LinkButton: FC<Props> = ({ ref, to, state, ...props }) => {
const [path, onClick] = useLink(to, state);
return <Button as="a" ref={ref} {...props} href={path} onClick={onClick} />;
};