import React from 'react'; import clsx from 'clsx'; import Text from './common/Text/Text'; import OutwardArrowIcon from '~icons/material-symbols/arrow-outward'; type Props = { className?: string; }; /** * The "Important Links" section of the calendar website * @returns */ export default function ImportantLinks({ className }: Props) { return (
Important Links Spring Course Schedule Summer Course Schedule Registration Info Sheet Register For Courses Degree Audit
); }