import Image from "@/components/Image" import Link from "@/components/TempDesignSystem/Link" import Header from "../Header" import styles from "./shortcuts.module.css" import type { ShortcutsProps } from "@/types/components/myPages/myPage/shortcuts" export default function Shortcuts({ shortcuts, subtitle, title, }: ShortcutsProps) { return (
{shortcuts.map((shortcut) => ( {shortcut.text ? shortcut.text : shortcut.title} Chevron Icon ))}
) }