mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-01-07 20:43:51 +05:30
19 lines
458 B
TypeScript
19 lines
458 B
TypeScript
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import Button from './Button';
|
|
|
|
type ButtonProps = React.ComponentProps<typeof Button>;
|
|
type LinkProps = React.ComponentProps<typeof Link>;
|
|
|
|
export default function LinkButton(props: ButtonProps & LinkProps) {
|
|
const { to, ...restProps } = props;
|
|
|
|
return (
|
|
<Button
|
|
component={(linkProps) => <Link {...linkProps} to={to} />}
|
|
{...(restProps as ButtonProps)}
|
|
/>
|
|
);
|
|
}
|