import Text from '@views/components/common/Text/Text'; import clsx from 'clsx'; import React from 'react'; 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): JSX.Element { return (
Important Links Spring Course Schedule Summer Course Schedule Registration Info Sheet Register For Courses Degree Audit
); }