import { ArrowRightIcon } from "@/components/Icons" import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" import styles from "./shortcutList.module.css" import type { ShortcutsListProps } from "@/types/components/blocks/shortcuts" export default function ShortcutList({ shortCutList }: ShortcutsListProps) { return ( <> {shortCutList.map((shortcut) => ( {shortcut.text || shortcut.title} ))} ) }