Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 20x 1x | import { Link, LinkProps } from "@mui/material";
import { Link as RouterLink } from "react-router-dom";
import { palette } from "@palette";
export interface BaseLinkProps extends LinkProps {
link: string;
replace?: boolean;
}
export const BaseLink = ({
children,
link,
sx,
replace,
...rest
}: BaseLinkProps) => {
return (
<Link
sx={{
borderBottom: `1px solid ${palette.neutral[10]}`,
padding: "8px",
paddingTop: 0,
...sx,
}}
component={RouterLink}
underline="none"
color="inherit"
to={link}
replace={replace}
{...rest}
>
{children}
</Link>
);
};
|