-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
redirect to manage tab from context menu
- Loading branch information
Ross Bulat
committed
Mar 6, 2024
1 parent
4a168da
commit 6a5958e
Showing
5 changed files
with
63 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { faBarsProgress } from '@fortawesome/free-solid-svg-icons'; | ||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; | ||
import { ListWrapper, SelectListWrapper } from 'library/ContextMenu/Wrappers'; | ||
|
||
export const TabMenu = ({ | ||
// tabId, | ||
onSettings, | ||
}: { | ||
tabId: number; | ||
onSettings: () => void; | ||
}) => ( | ||
<SelectListWrapper> | ||
<ListWrapper> | ||
<li> | ||
<button onClick={() => onSettings()}></button> | ||
<div className="inner"> | ||
<div className="none"></div> | ||
<div> | ||
<h3>Manage Tab</h3> | ||
</div> | ||
<div> | ||
<FontAwesomeIcon icon={faBarsProgress} transform="shrink-2" /> | ||
</div> | ||
</div> | ||
</li> | ||
</ListWrapper> | ||
</SelectListWrapper> | ||
); |