style: issue details, list view, kanban card
This commit is contained in:
parent
1368fb9164
commit
b1aa389930
32 changed files with 935 additions and 1326 deletions
12
apps/app/constants/global.tsx
Normal file
12
apps/app/constants/global.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
export const getPriorityIcon = (priority: string) => {
|
||||
switch (priority) {
|
||||
case "urgent":
|
||||
return <span className="material-symbols-rounded">signal_cellular_alt</span>;
|
||||
case "high":
|
||||
return <span className="material-symbols-rounded">signal_cellular_alt_2_bar</span>;
|
||||
case "medium":
|
||||
return <span className="material-symbols-rounded">signal_cellular_alt_1_bar</span>;
|
||||
default:
|
||||
return <span>N/A</span>;
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue