-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathOcticonIcons.ts
More file actions
27 lines (25 loc) · 1.03 KB
/
OcticonIcons.ts
File metadata and controls
27 lines (25 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export enum OcticonIcons {
ISSUE_OPEN = "https://raw.githubusercontent.com/primer/octicons/main/icons/issue-opened-24.svg",
ISSUE_CLOSED = "https://raw.githubusercontent.com/primer/octicons/main/icons/issue-closed-24.svg",
COMMENTS = "https://raw.githubusercontent.com/primer/octicons/main/icons/comment-24.svg",
COMMIT = "https://raw.githubusercontent.com/primer/octicons/main/icons/commit-24.svg",
PERSON = "https://raw.githubusercontent.com/primer/octicons/main/icons/person-24.svg",
REPOSITORY = "https://raw.githubusercontent.com/primer/octicons/main/icons/repo-24.svg",
PENCIL = "https://raw.githubusercontent.com/primer/octicons/main/icons/pencil-24.svg",
}
export enum IssueReactions {
"PLUS_ONE" = "thumbsup",
"MINUS_ONE" = "thumbsdown",
"HEART" = "heart",
"CONFUSED" = "confused",
"ROCKET" = "rocket",
"EYES" = "eyes",
}
export enum IssueReactionsAliases {
thumbsup = "+1",
thumbsdown = "-1",
heart = "heart",
confused = "confused",
rocket = "rocket",
eyes = "eyes",
}