diff options
author | 2022-09-12 07:26:23 +0200 | |
---|---|---|
committer | 2022-09-12 12:26:23 +0700 | |
commit | 1fc597d73bc75b3658ac593ad09d6cf515e475ef (patch) | |
tree | dbb65525bd4759c4076bfdff8d2c6d7a08362da7 /source/features/select-notifications.tsx | |
parent | ef7885e5c01997bbe4626e119e5ae78efae619f4 (diff) | |
download | refined-github-1fc597d73bc75b3658ac593ad09d6cf515e475ef.tar.gz refined-github-1fc597d73bc75b3658ac593ad09d6cf515e475ef.tar.zst refined-github-1fc597d73bc75b3658ac593ad09d6cf515e475ef.zip |
Meta: Drop deprecated color classes (#5965)
Diffstat (limited to 'source/features/select-notifications.tsx')
-rw-r--r-- | source/features/select-notifications.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source/features/select-notifications.tsx b/source/features/select-notifications.tsx index f3dc393a..8a934a96 100644 --- a/source/features/select-notifications.tsx +++ b/source/features/select-notifications.tsx @@ -83,14 +83,14 @@ function handleSelection({target}: Event): void { function createDropdownList(category: Category, filters: Filter[]): JSX.Element { const icons: {[Key in Filter]: JSX.Element} = { - 'Pull requests': <GitPullRequestIcon className="color-text-secondary color-fg-muted"/>, - Issues: <IssueOpenedIcon className="color-text-secondary color-fg-muted"/>, - Open: <CheckCircleIcon className="color-text-success color-fg-success"/>, - Closed: <XCircleIcon className="color-text-danger color-fg-danger"/>, - Draft: <GitPullRequestDraftIcon className="color-text-tertiary color-fg-subtle"/>, + 'Pull requests': <GitPullRequestIcon className="color-fg-muted"/>, + Issues: <IssueOpenedIcon className="color-fg-muted"/>, + Open: <CheckCircleIcon className="color-fg-success"/>, + Closed: <XCircleIcon className="color-fg-danger"/>, + Draft: <GitPullRequestDraftIcon className="color-fg-subtle"/>, Merged: <GitMergeIcon className="color-fg-done"/>, - Read: <DotIcon className="color-text-link color-fg-accent"/>, - Unread: <DotFillIcon className="color-text-link color-fg-accent"/>, + Read: <DotIcon className="color-fg-accent"/>, + Unread: <DotFillIcon className="color-fg-accent"/>, }; return ( |