import { ButtonProps, Link, LinkProps } from "@mui/material"; import React, { FC } from "react"; export type LinkButtonProps = React.PropsWithChildren<{ onClick: () => void; variant?: string; style?: React.CSSProperties; }>; const LinkButton: FC> = ({ children, sx, color, ...props }) => { return ( {children} ); }; export default LinkButton;