Files
yaak/src-web/components/ButtonLink.tsx
2023-02-27 09:08:48 -08:00

10 lines
287 B
TypeScript

import type { LinkProps } from 'react-router-dom';
import { Link } from 'react-router-dom';
import { Button, ButtonProps } from './Button';
type Props = ButtonProps<typeof Link> & LinkProps;
export function ButtonLink({ ...props }: Props) {
return <Button as={Link} {...props} />;
}