Files
UT-Registration-Plus/src/views/components/common/ConflictsWithWarning/ConflictsWithWarning.tsx
doprz 265652c420 feat: check-path-alias autofix (#124)
* feat: add autofix

* chore: autofix repo with new custom ESLint rule
2024-03-06 15:11:31 -06:00

36 lines
1.1 KiB
TypeScript

import type { Course } from '@shared/types/Course';
import Text from '@views/components/common/Text/Text';
import clsx from 'clsx';
import React from 'react';
/**
* Props for ConflictWithWarningProps
*/
export interface ConflictsWithWarningProps {
className?: string;
conflicts: Course[];
}
/**
* The ConflictsWithWarning component is used to display a warning message when a course conflicts
* with another course as part of the labels and details section
*
* @param props ConflictsWithWarningProps
*/
export default function ConflictsWithWarning({ className, conflicts }: ConflictsWithWarningProps): JSX.Element {
return (
<Text
variant='mini'
className={clsx(
className,
'min-w-21 w-21 flex flex-col items-start gap-2.5 rounded bg-[#AF2E2D] p-2.5 text-white'
)}
>
<div>Conflicts With:</div>
{conflicts.map(course => (
<div>{`${course.department} ${course.number} (${course.uniqueId})`}</div>
))}
</Text>
);
}