/* eslint-disable */ // @ts-nocheck import { Button, Tooltip } from "../../../shared/@patternfly/react-core"; import { CogIcon } from "../../../shared/@patternfly/react-icons"; import type { Path } from "react-router-dom"; import { Link } from "react-router-dom"; type SettingsShortcutProps = { tooltip: string; to: Partial; }; export const SettingsShortcut = ({ tooltip, to }: SettingsShortcutProps) => ( );