Implement request deletion

This commit is contained in:
Gregory Schier
2023-02-27 15:42:06 -08:00
parent a637842ce4
commit e57e7bcec5
7 changed files with 90 additions and 8 deletions

View File

@@ -12,6 +12,7 @@ import {
PlusIcon,
QuestionMarkIcon,
SunIcon,
TrashIcon,
TriangleDownIcon,
UpdateIcon,
} from '@radix-ui/react-icons';
@@ -33,6 +34,7 @@ type IconName =
| 'plus-circled'
| 'sun'
| 'code'
| 'trash'
| 'moon';
const icons: Record<IconName, NamedExoticComponent<{ className: string }>> = {
@@ -51,6 +53,7 @@ const icons: Record<IconName, NamedExoticComponent<{ className: string }>> = {
question: QuestionMarkIcon,
eye: EyeOpenIcon,
code: CodeIcon,
trash: TrashIcon,
};
export interface IconProps {