import { React } from "../webpack/common"; interface Props { href: string; disabled?: boolean; style?: React.CSSProperties; } export function Link(props: React.PropsWithChildren) { if (props.disabled) { props.style ??= {}; props.style.pointerEvents = "none"; } return ( {props.children} ); }