Skip to content

Commit

Permalink
chore: add title view icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebofill committed Jan 10, 2024
1 parent 45bca81 commit 0028610
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/QuickAccessContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
} from "decky-frontend-lib";
import { VFC, useState } from "react";

import { FaCircleExclamation } from "react-icons/fa6";
import { FaBook, FaCircleExclamation, FaBookmark } from "react-icons/fa6";
import { PiListPlusBold } from "react-icons/pi";

import { useTabMasterContext } from "../state/TabMasterContext";
Expand Down Expand Up @@ -190,7 +190,7 @@ export const QuickAccessTitleView: VFC<QuickAccessTitleViewProps> = ({ title, ta
style={buttonStyle}
onClick={() => showContextMenu(<TabProfilesMenu tabMasterManager={tabMasterManager} />)}
>
{/* {profiles icon} */}
<FaBookmark size='0.9em' />
</DialogButton>
<DialogButton
onOKActionDescription="Open Docs"
Expand All @@ -200,7 +200,7 @@ export const QuickAccessTitleView: VFC<QuickAccessTitleViewProps> = ({ title, ta
Navigation.Navigate("/tab-master-docs");
}}
>
{/* {docs icon} */}
<FaBook size='0.9em'/>
</DialogButton>
</Focusable>
);
Expand Down

0 comments on commit 0028610

Please sign in to comment.