// next import { ArrowLeftIcon } from "@heroicons/react/24/outline"; import Link from "next/link"; import { useRouter } from "next/router"; type Props = { links: { label: string; href: string; }[]; }; const SettingsSidebar: React.FC = ({ links }) => { const router = useRouter(); return ( ); }; export default SettingsSidebar;