import { Divider } from "@mui/joy"; import classNames from "classnames"; import { Link } from "react-router-dom"; import { Shortcut } from "@/types/proto/api/v1/shortcut_service"; import Icon from "./Icon"; import LinkFavicon from "./LinkFavicon"; interface Props { shortcut: Shortcut; } const ShortcutFrame = ({ shortcut }: Props) => { return (

{shortcut.title || shortcut.name}

{shortcut.description}

Open this site in a new tab

); }; export default ShortcutFrame;