import { ArrowRightIcon } from "@/components/Icons" import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" import styles from "./shortcut.module.css" import { ShortcutsListProps } from "@/types/components/myPages/myPage/shortcuts" export default function Shortcut({ linkList }: ShortcutsListProps) { return ( <> {linkList.map((shortcut) => ( {shortcut.text ? shortcut.text : shortcut.title} ))} ) }