chore: icon improvement (#2456)

* style: app sidebar icon improvement

* style: profile section icon improvement

* style: notification popover icon improvement

* style: shortcut modal icon improvement
This commit is contained in:
Anmol Singh Bhatia
2023-10-17 15:27:38 +05:30
committed by GitHub
parent 0b79f8687e
commit 399af30b9a
11 changed files with 68 additions and 72 deletions

View File

@@ -93,9 +93,9 @@ export const MultiLevelDropdown: React.FC<MultiLevelDropdownProps> = ({
direction === "right" ? "justify-between" : ""
}`}
>
{direction === "left" && option.hasChildren && <ChevronLeft className="h-4 w-4" />}
{direction === "left" && option.hasChildren && <ChevronLeft className="h-3.5 w-3.5" />}
<span>{option.label}</span>
{direction === "right" && option.hasChildren && <ChevronRight className="h-4 w-4" />}
{direction === "right" && option.hasChildren && <ChevronRight className="h-3.5 w-3.5" />}
</div>
</>
)}