@papillonarts/components 0.9.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +12 -0
- package/build/primer/Alert/Alert.js +122 -0
- package/build/primer/Alert/Alert.prop.js +19 -0
- package/build/primer/Alert/index.js +19 -0
- package/build/primer/Blankslate/Blankslate.js +30 -0
- package/build/primer/Blankslate/Blankslate.prop.js +18 -0
- package/build/primer/Blankslate/index.js +19 -0
- package/build/primer/Breadcrumb/Breadcrumb.js +75 -0
- package/build/primer/Breadcrumb/Breadcrumb.prop.js +14 -0
- package/build/primer/Breadcrumb/index.js +19 -0
- package/build/primer/Button/Button.js +108 -0
- package/build/primer/Button/Button.prop.js +48 -0
- package/build/primer/Button/index.js +49 -0
- package/build/primer/Dropdown/Dropdown.js +102 -0
- package/build/primer/Dropdown/Dropdown.prop.js +18 -0
- package/build/primer/Dropdown/index.js +19 -0
- package/build/primer/ErrorBoundary/ErrorBoundary.js +59 -0
- package/build/primer/ErrorBoundary/ErrorBoundary.prop.js +7 -0
- package/build/primer/ErrorBoundary/index.js +12 -0
- package/build/primer/Form/Checkbox/Checkbox.js +48 -0
- package/build/primer/Form/Checkbox/Checkbox.prop.js +22 -0
- package/build/primer/Form/Checkbox/index.js +19 -0
- package/build/primer/Form/Input/Input.js +55 -0
- package/build/primer/Form/Input/Input.prop.js +27 -0
- package/build/primer/Form/Input/index.js +25 -0
- package/build/primer/Form/Radio/Radio.js +47 -0
- package/build/primer/Form/Radio/Radio.prop.js +22 -0
- package/build/primer/Form/Radio/index.js +19 -0
- package/build/primer/Form/index.js +24 -0
- package/build/primer/Grid/DisplayTable/DisplayTable.js +57 -0
- package/build/primer/Grid/DisplayTable/DisplayTable.prop.js +11 -0
- package/build/primer/Grid/DisplayTable/index.js +12 -0
- package/build/primer/Grid/FlexGrid/FlexGrid.js +249 -0
- package/build/primer/Grid/FlexGrid/FlexGrid.prop.js +28 -0
- package/build/primer/Grid/FlexGrid/index.js +25 -0
- package/build/primer/Grid/index.js +14 -0
- package/build/primer/Icon/Icon.js +70 -0
- package/build/primer/Icon/Icon.part.js +1295 -0
- package/build/primer/Icon/Icon.prop.js +678 -0
- package/build/primer/Icon/index.js +25 -0
- package/build/primer/Label/Label.js +30 -0
- package/build/primer/Label/Label.prop.js +26 -0
- package/build/primer/Label/index.js +12 -0
- package/build/primer/Loader/Loader.js +64 -0
- package/build/primer/Loader/Loader.prop.js +15 -0
- package/build/primer/Loader/index.js +19 -0
- package/build/primer/Navigation/Menu/Menu.js +69 -0
- package/build/primer/Navigation/Menu/Menu.prop.js +10 -0
- package/build/primer/Navigation/Menu/index.js +12 -0
- package/build/primer/Navigation/TabNav/TabNav.js +124 -0
- package/build/primer/Navigation/TabNav/TabNav.prop.js +16 -0
- package/build/primer/Navigation/TabNav/index.js +19 -0
- package/build/primer/Navigation/UnderlineNav/UnderlineNav.js +122 -0
- package/build/primer/Navigation/UnderlineNav/UnderlineNav.prop.js +20 -0
- package/build/primer/Navigation/UnderlineNav/index.js +25 -0
- package/build/primer/Navigation/index.js +17 -0
- package/build/primer/Pagination/PreviousNext/PreviousNext.js +84 -0
- package/build/primer/Pagination/PreviousNext/PreviousNext.prop.js +30 -0
- package/build/primer/Pagination/PreviousNext/index.js +19 -0
- package/build/primer/Pagination/index.js +11 -0
- package/build/primer/Popover/Popover.js +63 -0
- package/build/primer/Popover/Popover.prop.js +29 -0
- package/build/primer/Popover/index.js +25 -0
- package/build/primer/Progress/Progress.js +30 -0
- package/build/primer/Progress/Progress.prop.js +15 -0
- package/build/primer/Progress/index.js +19 -0
- package/build/primer/Select/Select.js +67 -0
- package/build/primer/Select/Select.prop.js +15 -0
- package/build/primer/Select/index.js +19 -0
- package/build/primer/SelectMenu/SelectMenu.js +94 -0
- package/build/primer/SelectMenu/SelectMenu.prop.js +10 -0
- package/build/primer/SelectMenu/index.js +12 -0
- package/build/primer/Subhead/Subhead.js +26 -0
- package/build/primer/Subhead/Subhead.prop.js +10 -0
- package/build/primer/Subhead/index.js +12 -0
- package/build/primer/Toast/Toast.js +54 -0
- package/build/primer/Toast/Toast.prop.js +18 -0
- package/build/primer/Toast/index.js +19 -0
- package/build/primer/index.js +87 -0
- package/package.json +5 -5
- package/build/index.ts +0 -1
- package/build/primer/Alert/Alert.prop.ts +0 -45
- package/build/primer/Alert/Alert.tsx +0 -101
- package/build/primer/Alert/__tests__/Alert.int.story.tsx +0 -86
- package/build/primer/Alert/__tests__/Alert.int.test.ts +0 -37
- package/build/primer/Alert/index.ts +0 -2
- package/build/primer/Blankslate/Blankslate.prop.ts +0 -26
- package/build/primer/Blankslate/Blankslate.tsx +0 -26
- package/build/primer/Blankslate/__tests__/Blankslate.int.story.tsx +0 -43
- package/build/primer/Blankslate/__tests__/Blankslate.int.test.ts +0 -29
- package/build/primer/Blankslate/index.ts +0 -2
- package/build/primer/Breadcrumb/Breadcrumb.prop.ts +0 -28
- package/build/primer/Breadcrumb/Breadcrumb.tsx +0 -57
- package/build/primer/Breadcrumb/__tests__/Breadcrumb.int.story.tsx +0 -40
- package/build/primer/Breadcrumb/__tests__/Breadcrumb.int.test.ts +0 -40
- package/build/primer/Breadcrumb/index.ts +0 -2
- package/build/primer/Button/Button.prop.ts +0 -77
- package/build/primer/Button/Button.tsx +0 -91
- package/build/primer/Button/__tests__/Button.int.story.tsx +0 -173
- package/build/primer/Button/__tests__/Button.int.test.ts +0 -191
- package/build/primer/Button/index.ts +0 -2
- package/build/primer/Dropdown/Dropdown.prop.ts +0 -33
- package/build/primer/Dropdown/Dropdown.tsx +0 -102
- package/build/primer/Dropdown/__tests__/Dropdown.int.story.tsx +0 -43
- package/build/primer/Dropdown/__tests__/Dropdown.int.test.ts +0 -53
- package/build/primer/Dropdown/index.ts +0 -2
- package/build/primer/ErrorBoundary/ErrorBoundary.prop.ts +0 -5
- package/build/primer/ErrorBoundary/ErrorBoundary.tsx +0 -35
- package/build/primer/ErrorBoundary/__tests__/ErrorBoundary.int.story.tsx +0 -23
- package/build/primer/ErrorBoundary/__tests__/ErrorBoundary.int.test.ts +0 -9
- package/build/primer/ErrorBoundary/index.ts +0 -1
- package/build/primer/Form/Checkbox/Checkbox.prop.ts +0 -34
- package/build/primer/Form/Checkbox/Checkbox.tsx +0 -40
- package/build/primer/Form/Checkbox/__tests__/Checkbox.int.story.tsx +0 -50
- package/build/primer/Form/Checkbox/__tests__/Checkbox.int.test.ts +0 -23
- package/build/primer/Form/Checkbox/index.ts +0 -2
- package/build/primer/Form/Input/Input.prop.ts +0 -43
- package/build/primer/Form/Input/Input.tsx +0 -43
- package/build/primer/Form/Input/__tests__/Input.int.story.tsx +0 -54
- package/build/primer/Form/Input/__tests__/Input.int.test.ts +0 -15
- package/build/primer/Form/Input/index.ts +0 -2
- package/build/primer/Form/Radio/Radio.prop.ts +0 -30
- package/build/primer/Form/Radio/Radio.tsx +0 -38
- package/build/primer/Form/Radio/__tests__/Radio.int.story.tsx +0 -42
- package/build/primer/Form/Radio/__tests__/Radio.int.test.ts +0 -13
- package/build/primer/Form/Radio/index.ts +0 -2
- package/build/primer/Form/index.ts +0 -19
- package/build/primer/Grid/DisplayTable/DisplayTable.prop.ts +0 -21
- package/build/primer/Grid/DisplayTable/DisplayTable.tsx +0 -68
- package/build/primer/Grid/DisplayTable/__tests__/DisplayTable.int.data.ts +0 -289
- package/build/primer/Grid/DisplayTable/__tests__/DisplayTable.int.story.tsx +0 -27
- package/build/primer/Grid/DisplayTable/__tests__/DisplayTable.int.test.ts +0 -9
- package/build/primer/Grid/DisplayTable/index.ts +0 -1
- package/build/primer/Grid/FlexGrid/FlexGrid.prop.ts +0 -59
- package/build/primer/Grid/FlexGrid/FlexGrid.tsx +0 -274
- package/build/primer/Grid/FlexGrid/__tests__/FlexGrid.int.data.ts +0 -289
- package/build/primer/Grid/FlexGrid/__tests__/FlexGrid.int.story.tsx +0 -146
- package/build/primer/Grid/FlexGrid/__tests__/FlexGrid.int.test.ts +0 -46
- package/build/primer/Grid/FlexGrid/index.ts +0 -2
- package/build/primer/Grid/index.ts +0 -9
- package/build/primer/Icon/Icon.part.ts +0 -1289
- package/build/primer/Icon/Icon.prop.ts +0 -1337
- package/build/primer/Icon/Icon.tsx +0 -49
- package/build/primer/Icon/__tests__/Icon.int.story.tsx +0 -58
- package/build/primer/Icon/__tests__/Icon.int.test.ts +0 -13
- package/build/primer/Icon/index.ts +0 -2
- package/build/primer/Label/Label.prop.ts +0 -31
- package/build/primer/Label/Label.tsx +0 -27
- package/build/primer/Label/__tests__/Label.int.story.tsx +0 -19
- package/build/primer/Label/__tests__/Label.int.test.ts +0 -9
- package/build/primer/Label/index.ts +0 -1
- package/build/primer/Loader/Loader.prop.ts +0 -16
- package/build/primer/Loader/Loader.tsx +0 -43
- package/build/primer/Loader/__tests__/Loader.int.story.tsx +0 -34
- package/build/primer/Loader/__tests__/Loader.int.test.ts +0 -21
- package/build/primer/Loader/index.ts +0 -2
- package/build/primer/Navigation/Menu/Menu.prop.ts +0 -26
- package/build/primer/Navigation/Menu/Menu.tsx +0 -42
- package/build/primer/Navigation/Menu/__tests__/Menu.int.story.tsx +0 -55
- package/build/primer/Navigation/Menu/__tests__/Menu.int.test.ts +0 -57
- package/build/primer/Navigation/Menu/index.ts +0 -1
- package/build/primer/Navigation/TabNav/TabNav.prop.ts +0 -39
- package/build/primer/Navigation/TabNav/TabNav.tsx +0 -105
- package/build/primer/Navigation/TabNav/__tests__/TabNav.int.story.tsx +0 -168
- package/build/primer/Navigation/TabNav/__tests__/TabNav.int.test.ts +0 -55
- package/build/primer/Navigation/TabNav/index.ts +0 -2
- package/build/primer/Navigation/UnderlineNav/UnderlineNav.prop.ts +0 -41
- package/build/primer/Navigation/UnderlineNav/UnderlineNav.tsx +0 -106
- package/build/primer/Navigation/UnderlineNav/__tests__/UnderlineNav.int.story.tsx +0 -140
- package/build/primer/Navigation/UnderlineNav/__tests__/UnderlineNav.int.test.ts +0 -81
- package/build/primer/Navigation/UnderlineNav/index.ts +0 -2
- package/build/primer/Navigation/index.ts +0 -12
- package/build/primer/Pagination/PreviousNext/PreviousNext.prop.ts +0 -53
- package/build/primer/Pagination/PreviousNext/PreviousNext.tsx +0 -71
- package/build/primer/Pagination/PreviousNext/__tests__/PreviousNext.int.story.tsx +0 -48
- package/build/primer/Pagination/PreviousNext/__tests__/PreviousNext.int.test.ts +0 -15
- package/build/primer/Pagination/PreviousNext/index.ts +0 -2
- package/build/primer/Pagination/index.ts +0 -6
- package/build/primer/Popover/Popover.prop.ts +0 -49
- package/build/primer/Popover/Popover.tsx +0 -80
- package/build/primer/Popover/__tests__/Popover.int.story.tsx +0 -216
- package/build/primer/Popover/__tests__/Popover.int.test.ts +0 -71
- package/build/primer/Popover/index.ts +0 -2
- package/build/primer/Progress/Progress.prop.ts +0 -16
- package/build/primer/Progress/Progress.tsx +0 -19
- package/build/primer/Progress/__tests__/Progress.int.story.tsx +0 -28
- package/build/primer/Progress/__tests__/Progress.int.test.ts +0 -17
- package/build/primer/Progress/index.ts +0 -2
- package/build/primer/Select/Select.prop.ts +0 -24
- package/build/primer/Select/Select.tsx +0 -58
- package/build/primer/Select/__tests__/Select.int.story.tsx +0 -38
- package/build/primer/Select/__tests__/Select.int.test.ts +0 -42
- package/build/primer/Select/index.ts +0 -2
- package/build/primer/SelectMenu/SelectMenu.prop.ts +0 -25
- package/build/primer/SelectMenu/SelectMenu.tsx +0 -68
- package/build/primer/SelectMenu/__tests__/SelectMenu.int.story.tsx +0 -50
- package/build/primer/SelectMenu/__tests__/SelectMenu.int.test.ts +0 -56
- package/build/primer/SelectMenu/index.ts +0 -1
- package/build/primer/Subhead/Subhead.prop.ts +0 -10
- package/build/primer/Subhead/Subhead.tsx +0 -15
- package/build/primer/Subhead/__tests__/Subhead.int.story.tsx +0 -23
- package/build/primer/Subhead/__tests__/Subhead.int.test.ts +0 -13
- package/build/primer/Subhead/index.ts +0 -1
- package/build/primer/Toast/Toast.prop.ts +0 -21
- package/build/primer/Toast/Toast.tsx +0 -38
- package/build/primer/Toast/__tests__/Toast.int.story.tsx +0 -50
- package/build/primer/Toast/__tests__/Toast.int.test.ts +0 -25
- package/build/primer/Toast/index.ts +0 -2
- package/build/primer/index.ts +0 -83
|
@@ -1,1337 +0,0 @@
|
|
|
1
|
-
export const iconName = {
|
|
2
|
-
Accessibility16: 'Accessibility16',
|
|
3
|
-
Accessibility24: 'Accessibility24',
|
|
4
|
-
AccessibilityInset16: 'AccessibilityInset16',
|
|
5
|
-
AccessibilityInset24: 'AccessibilityInset24',
|
|
6
|
-
AIModel16: 'AIModel16',
|
|
7
|
-
AIModel24: 'AIModel24',
|
|
8
|
-
Alert16: 'Alert16',
|
|
9
|
-
Alert24: 'Alert24',
|
|
10
|
-
AlertFill12: 'AlertFill12',
|
|
11
|
-
AlertFill16: 'AlertFill16',
|
|
12
|
-
AlertFill24: 'AlertFill24',
|
|
13
|
-
Apps16: 'Apps16',
|
|
14
|
-
Apps24: 'Apps24',
|
|
15
|
-
Archive16: 'Archive16',
|
|
16
|
-
Archive24: 'Archive24',
|
|
17
|
-
ArrowBoth16: 'ArrowBoth16',
|
|
18
|
-
ArrowBoth24: 'ArrowBoth24',
|
|
19
|
-
ArrowDown16: 'ArrowDown16',
|
|
20
|
-
ArrowDown24: 'ArrowDown24',
|
|
21
|
-
ArrowDownLeft16: 'ArrowDownLeft16',
|
|
22
|
-
ArrowDownLeft24: 'ArrowDownLeft24',
|
|
23
|
-
ArrowDownRight16: 'ArrowDownRight16',
|
|
24
|
-
ArrowDownRight24: 'ArrowDownRight24',
|
|
25
|
-
ArrowLeft16: 'ArrowLeft16',
|
|
26
|
-
ArrowLeft24: 'ArrowLeft24',
|
|
27
|
-
ArrowRight16: 'ArrowRight16',
|
|
28
|
-
ArrowRight24: 'ArrowRight24',
|
|
29
|
-
ArrowSwitch16: 'ArrowSwitch16',
|
|
30
|
-
ArrowSwitch24: 'ArrowSwitch24',
|
|
31
|
-
ArrowUp16: 'ArrowUp16',
|
|
32
|
-
ArrowUp24: 'ArrowUp24',
|
|
33
|
-
ArrowUpLeft16: 'ArrowUpLeft16',
|
|
34
|
-
ArrowUpLeft24: 'ArrowUpLeft24',
|
|
35
|
-
ArrowUpRight16: 'ArrowUpRight16',
|
|
36
|
-
ArrowUpRight24: 'ArrowUpRight24',
|
|
37
|
-
Beaker16: 'Beaker16',
|
|
38
|
-
Beaker24: 'Beaker24',
|
|
39
|
-
Bell16: 'Bell16',
|
|
40
|
-
Bell24: 'Bell24',
|
|
41
|
-
BellFill16: 'BellFill16',
|
|
42
|
-
BellFill24: 'BellFill24',
|
|
43
|
-
BellSlash16: 'BellSlash16',
|
|
44
|
-
BellSlash24: 'BellSlash24',
|
|
45
|
-
Blocked16: 'Blocked16',
|
|
46
|
-
Blocked24: 'Blocked24',
|
|
47
|
-
Bold16: 'Bold16',
|
|
48
|
-
Bold24: 'Bold24',
|
|
49
|
-
Book16: 'Book16',
|
|
50
|
-
Book24: 'Book24',
|
|
51
|
-
Bookmark16: 'Bookmark16',
|
|
52
|
-
Bookmark24: 'Bookmark24',
|
|
53
|
-
BookmarkFill24: 'BookmarkFill24',
|
|
54
|
-
BookmarkFilled16: 'BookmarkFilled16',
|
|
55
|
-
BookmarkSlash16: 'BookmarkSlash16',
|
|
56
|
-
BookmarkSlash24: 'BookmarkSlash24',
|
|
57
|
-
BookmarkSlashFill16: 'BookmarkSlashFill16',
|
|
58
|
-
BookmarkSlashFill24: 'BookmarkSlashFill24',
|
|
59
|
-
Briefcase16: 'Briefcase16',
|
|
60
|
-
Briefcase24: 'Briefcase24',
|
|
61
|
-
Broadcast16: 'Broadcast16',
|
|
62
|
-
Broadcast24: 'Broadcast24',
|
|
63
|
-
Browser16: 'Browser16',
|
|
64
|
-
Browser24: 'Browser24',
|
|
65
|
-
Bug16: 'Bug16',
|
|
66
|
-
Bug24: 'Bug24',
|
|
67
|
-
Cache16: 'Cache16',
|
|
68
|
-
Cache24: 'Cache24',
|
|
69
|
-
Calendar16: 'Calendar16',
|
|
70
|
-
Calendar24: 'Calendar24',
|
|
71
|
-
Check16: 'Check16',
|
|
72
|
-
Check24: 'Check24',
|
|
73
|
-
CheckCircle16: 'CheckCircle16',
|
|
74
|
-
CheckCircle24: 'CheckCircle24',
|
|
75
|
-
CheckCircleFill12: 'CheckCircleFill12',
|
|
76
|
-
CheckCircleFill16: 'CheckCircleFill16',
|
|
77
|
-
CheckCircleFill24: 'CheckCircleFill24',
|
|
78
|
-
Checkbox16: 'Checkbox16',
|
|
79
|
-
Checkbox24: 'Checkbox24',
|
|
80
|
-
Checklist16: 'Checklist16',
|
|
81
|
-
Checklist24: 'Checklist24',
|
|
82
|
-
ChevronDown12: 'ChevronDown12',
|
|
83
|
-
ChevronDown16: 'ChevronDown16',
|
|
84
|
-
ChevronDown24: 'ChevronDown24',
|
|
85
|
-
ChevronLeft12: 'ChevronLeft12',
|
|
86
|
-
ChevronLeft16: 'ChevronLeft16',
|
|
87
|
-
ChevronLeft24: 'ChevronLeft24',
|
|
88
|
-
ChevronRight12: 'ChevronRight12',
|
|
89
|
-
ChevronRight16: 'ChevronRight16',
|
|
90
|
-
ChevronRight24: 'ChevronRight24',
|
|
91
|
-
ChevronUp12: 'ChevronUp12',
|
|
92
|
-
ChevronUp16: 'ChevronUp16',
|
|
93
|
-
ChevronUp24: 'ChevronUp24',
|
|
94
|
-
Circle16: 'Circle16',
|
|
95
|
-
Circle24: 'Circle24',
|
|
96
|
-
CircleSlash16: 'CircleSlash16',
|
|
97
|
-
CircleSlash24: 'CircleSlash24',
|
|
98
|
-
Clock16: 'Clock16',
|
|
99
|
-
Clock24: 'Clock24',
|
|
100
|
-
ClockFill16: 'ClockFill16',
|
|
101
|
-
ClockFill24: 'ClockFill24',
|
|
102
|
-
Cloud16: 'Cloud16',
|
|
103
|
-
Cloud24: 'Cloud24',
|
|
104
|
-
CloudOffline16: 'CloudOffline16',
|
|
105
|
-
CloudOffline24: 'CloudOffline24',
|
|
106
|
-
Code16: 'Code16',
|
|
107
|
-
Code24: 'Code24',
|
|
108
|
-
CodeOfConduct16: 'CodeOfConduct16',
|
|
109
|
-
CodeOfConduct24: 'CodeOfConduct24',
|
|
110
|
-
CodeReview16: 'CodeReview16',
|
|
111
|
-
CodeReview24: 'CodeReview24',
|
|
112
|
-
CodeSquare16: 'CodeSquare16',
|
|
113
|
-
CodeSquare24: 'CodeSquare24',
|
|
114
|
-
Codescan16: 'Codescan16',
|
|
115
|
-
Codescan24: 'Codescan24',
|
|
116
|
-
CodescanCheckmark16: 'CodescanCheckmark16',
|
|
117
|
-
CodescanCheckmark24: 'CodescanCheckmark24',
|
|
118
|
-
Codespaces16: 'Codespaces16',
|
|
119
|
-
Codespaces24: 'Codespaces24',
|
|
120
|
-
Columns16: 'Columns16',
|
|
121
|
-
Columns24: 'Columns24',
|
|
122
|
-
CommandPalette16: 'CommandPalette16',
|
|
123
|
-
CommandPalette24: 'CommandPalette24',
|
|
124
|
-
Comment16: 'Comment16',
|
|
125
|
-
Comment24: 'Comment24',
|
|
126
|
-
CommentDiscussion16: 'CommentDiscussion16',
|
|
127
|
-
CommentDiscussion24: 'CommentDiscussion24',
|
|
128
|
-
Container16: 'Container16',
|
|
129
|
-
Container24: 'Container24',
|
|
130
|
-
Copilot16: 'Copilot16',
|
|
131
|
-
Copilot24: 'Copilot24',
|
|
132
|
-
Copilot48: 'Copilot48',
|
|
133
|
-
Copilot96: 'Copilot96',
|
|
134
|
-
CopilotError16: 'CopilotError16',
|
|
135
|
-
CopilotWarning16: 'CopilotWarning16',
|
|
136
|
-
Copy16: 'Copy16',
|
|
137
|
-
Copy24: 'Copy24',
|
|
138
|
-
Cpu16: 'Cpu16',
|
|
139
|
-
Cpu24: 'Cpu24',
|
|
140
|
-
CreditCard16: 'CreditCard16',
|
|
141
|
-
CreditCard24: 'CreditCard24',
|
|
142
|
-
CrossReference16: 'CrossReference16',
|
|
143
|
-
CrossReference24: 'CrossReference24',
|
|
144
|
-
Dash16: 'Dash16',
|
|
145
|
-
Dash24: 'Dash24',
|
|
146
|
-
Database16: 'Database16',
|
|
147
|
-
Database24: 'Database24',
|
|
148
|
-
Dependabot16: 'Dependabot16',
|
|
149
|
-
Dependabot24: 'Dependabot24',
|
|
150
|
-
DesktopDownload16: 'DesktopDownload16',
|
|
151
|
-
DesktopDownload24: 'DesktopDownload24',
|
|
152
|
-
DeviceCamera16: 'DeviceCamera16',
|
|
153
|
-
DeviceCamera24: 'DeviceCamera24',
|
|
154
|
-
DeviceCameraVideo16: 'DeviceCameraVideo16',
|
|
155
|
-
DeviceCameraVideo24: 'DeviceCameraVideo24',
|
|
156
|
-
DeviceDesktop16: 'DeviceDesktop16',
|
|
157
|
-
DeviceDesktop24: 'DeviceDesktop24',
|
|
158
|
-
DeviceMobile16: 'DeviceMobile16',
|
|
159
|
-
DeviceMobile24: 'DeviceMobile24',
|
|
160
|
-
Devices16: 'Devices16',
|
|
161
|
-
Devices24: 'Devices24',
|
|
162
|
-
Diamond16: 'Diamond16',
|
|
163
|
-
Diamond24: 'Diamond24',
|
|
164
|
-
Diff16: 'Diff16',
|
|
165
|
-
Diff24: 'Diff24',
|
|
166
|
-
DiffAdded16: 'DiffAdded16',
|
|
167
|
-
DiffAdded24: 'DiffAdded24',
|
|
168
|
-
DiffIgnored16: 'DiffIgnored16',
|
|
169
|
-
DiffIgnored24: 'DiffIgnored24',
|
|
170
|
-
DiffModified16: 'DiffModified16',
|
|
171
|
-
DiffModified24: 'DiffModified24',
|
|
172
|
-
DiffRemoved16: 'DiffRemoved16',
|
|
173
|
-
DiffRemoved24: 'DiffRemoved24',
|
|
174
|
-
DiffRenamed16: 'DiffRenamed16',
|
|
175
|
-
DiffRenamed24: 'DiffRenamed24',
|
|
176
|
-
DiscussionClosed16: 'DiscussionClosed16',
|
|
177
|
-
DiscussionClosed24: 'DiscussionClosed24',
|
|
178
|
-
DiscussionDuplicate16: 'DiscussionDuplicate16',
|
|
179
|
-
DiscussionDuplicate24: 'DiscussionDuplicate24',
|
|
180
|
-
DiscussionOutdated16: 'DiscussionOutdated16',
|
|
181
|
-
DiscussionOutdated24: 'DiscussionOutdated24',
|
|
182
|
-
Dot16: 'Dot16',
|
|
183
|
-
Dot24: 'Dot24',
|
|
184
|
-
DotFill16: 'DotFill16',
|
|
185
|
-
DotFill24: 'DotFill24',
|
|
186
|
-
Download16: 'Download16',
|
|
187
|
-
Download24: 'Download24',
|
|
188
|
-
Duplicate16: 'Duplicate16',
|
|
189
|
-
Duplicate24: 'Duplicate24',
|
|
190
|
-
Ellipsis16: 'Ellipsis16',
|
|
191
|
-
Ellipsis24: 'Ellipsis24',
|
|
192
|
-
Eye16: 'Eye16',
|
|
193
|
-
Eye24: 'Eye24',
|
|
194
|
-
EyeClosed16: 'EyeClosed16',
|
|
195
|
-
EyeClosed24: 'EyeClosed24',
|
|
196
|
-
FeedDiscussion16: 'FeedDiscussion16',
|
|
197
|
-
FeedForked16: 'FeedForked16',
|
|
198
|
-
FeedHeart16: 'FeedHeart16',
|
|
199
|
-
FeedIssueClosed16: 'FeedIssueClosed16',
|
|
200
|
-
FeedIssueDraft16: 'FeedIssueDraft16',
|
|
201
|
-
FeedIssueOpen16: 'FeedIssueOpen16',
|
|
202
|
-
FeedIssueReopen16: 'FeedIssueReopen16',
|
|
203
|
-
FeedMerged16: 'FeedMerged16',
|
|
204
|
-
FeedPerson16: 'FeedPerson16',
|
|
205
|
-
FeedPlus16: 'FeedPlus16',
|
|
206
|
-
FeedPublic16: 'FeedPublic16',
|
|
207
|
-
FeedPullRequestClosed16: 'FeedPullRequestClosed16',
|
|
208
|
-
FeedPullRequestDraft16: 'FeedPullRequestDraft16',
|
|
209
|
-
FeedPullRequestOpen16: 'FeedPullRequestOpen16',
|
|
210
|
-
FeedRepo16: 'FeedRepo16',
|
|
211
|
-
FeedRocket16: 'FeedRocket16',
|
|
212
|
-
FeedStar16: 'FeedStar16',
|
|
213
|
-
FeedTag16: 'FeedTag16',
|
|
214
|
-
FeedTrophy16: 'FeedTrophy16',
|
|
215
|
-
File16: 'File16',
|
|
216
|
-
File24: 'File24',
|
|
217
|
-
FileAdded16: 'FileAdded16',
|
|
218
|
-
FileAdded24: 'FileAdded24',
|
|
219
|
-
FileBadge16: 'FileBadge16',
|
|
220
|
-
FileBadge24: 'FileBadge24',
|
|
221
|
-
FileBinary16: 'FileBinary16',
|
|
222
|
-
FileBinary24: 'FileBinary24',
|
|
223
|
-
FileCode16: 'FileCode16',
|
|
224
|
-
FileCode24: 'FileCode24',
|
|
225
|
-
FileDiff16: 'FileDiff16',
|
|
226
|
-
FileDiff24: 'FileDiff24',
|
|
227
|
-
FileDirectory16: 'FileDirectory16',
|
|
228
|
-
FileDirectory24: 'FileDirectory24',
|
|
229
|
-
FileDirectoryFill16: 'FileDirectoryFill16',
|
|
230
|
-
FileDirectoryFill24: 'FileDirectoryFill24',
|
|
231
|
-
FileDirectoryOpenFill16: 'FileDirectoryOpenFill16',
|
|
232
|
-
FileDirectoryOpenFill24: 'FileDirectoryOpenFill24',
|
|
233
|
-
FileDirectorySymlink16: 'FileDirectorySymlink16',
|
|
234
|
-
FileDirectorySymlink24: 'FileDirectorySymlink24',
|
|
235
|
-
FileMedia16: 'FileMedia16',
|
|
236
|
-
FileMedia24: 'FileMedia24',
|
|
237
|
-
FileMoved16: 'FileMoved16',
|
|
238
|
-
FileMoved24: 'FileMoved24',
|
|
239
|
-
FileRemoved16: 'FileRemoved16',
|
|
240
|
-
FileRemoved24: 'FileRemoved24',
|
|
241
|
-
FileSubmodule16: 'FileSubmodule16',
|
|
242
|
-
FileSubmodule24: 'FileSubmodule24',
|
|
243
|
-
FileSymlinkFile16: 'FileSymlinkFile16',
|
|
244
|
-
FileSymlinkFile24: 'FileSymlinkFile24',
|
|
245
|
-
FileZip16: 'FileZip16',
|
|
246
|
-
FileZip24: 'FileZip24',
|
|
247
|
-
Filter16: 'Filter16',
|
|
248
|
-
Filter24: 'Filter24',
|
|
249
|
-
FilterRemove16: 'FilterRemove16',
|
|
250
|
-
FilterRemove24: 'FilterRemove24',
|
|
251
|
-
FiscalHost16: 'FiscalHost16',
|
|
252
|
-
FiscalHost24: 'FiscalHost24',
|
|
253
|
-
Flame16: 'Flame16',
|
|
254
|
-
Flame24: 'Flame24',
|
|
255
|
-
Fold16: 'Fold16',
|
|
256
|
-
Fold24: 'Fold24',
|
|
257
|
-
FoldDown16: 'FoldDown16',
|
|
258
|
-
FoldDown24: 'FoldDown24',
|
|
259
|
-
FoldUp16: 'FoldUp16',
|
|
260
|
-
FoldUp24: 'FoldUp24',
|
|
261
|
-
Gear16: 'Gear16',
|
|
262
|
-
Gear24: 'Gear24',
|
|
263
|
-
Gift16: 'Gift16',
|
|
264
|
-
Gift24: 'Gift24',
|
|
265
|
-
GitBranch16: 'GitBranch16',
|
|
266
|
-
GitBranch24: 'GitBranch24',
|
|
267
|
-
GitCommit16: 'GitCommit16',
|
|
268
|
-
GitCommit24: 'GitCommit24',
|
|
269
|
-
GitCompare16: 'GitCompare16',
|
|
270
|
-
GitCompare24: 'GitCompare24',
|
|
271
|
-
GitMerge16: 'GitMerge16',
|
|
272
|
-
GitMerge24: 'GitMerge24',
|
|
273
|
-
GitMergeQueue16: 'GitMergeQueue16',
|
|
274
|
-
GitMergeQueue24: 'GitMergeQueue24',
|
|
275
|
-
GitPullRequest16: 'GitPullRequest16',
|
|
276
|
-
GitPullRequest24: 'GitPullRequest24',
|
|
277
|
-
GitPullRequestClosed16: 'GitPullRequestClosed16',
|
|
278
|
-
GitPullRequestClosed24: 'GitPullRequestClosed24',
|
|
279
|
-
GitPullRequestDraft16: 'GitPullRequestDraft16',
|
|
280
|
-
GitPullRequestDraft24: 'GitPullRequestDraft24',
|
|
281
|
-
Globe16: 'Globe16',
|
|
282
|
-
Globe24: 'Globe24',
|
|
283
|
-
Goal16: 'Goal16',
|
|
284
|
-
Goal24: 'Goal24',
|
|
285
|
-
Grabber16: 'Grabber16',
|
|
286
|
-
Grabber24: 'Grabber24',
|
|
287
|
-
Graph16: 'Graph16',
|
|
288
|
-
Graph24: 'Graph24',
|
|
289
|
-
Hash16: 'Hash16',
|
|
290
|
-
Hash24: 'Hash24',
|
|
291
|
-
Heading16: 'Heading16',
|
|
292
|
-
Heading24: 'Heading24',
|
|
293
|
-
Heart16: 'Heart16',
|
|
294
|
-
Heart24: 'Heart24',
|
|
295
|
-
HeartFill16: 'HeartFill16',
|
|
296
|
-
HeartFill24: 'HeartFill24',
|
|
297
|
-
History16: 'History16',
|
|
298
|
-
History24: 'History24',
|
|
299
|
-
Home16: 'Home16',
|
|
300
|
-
Home24: 'Home24',
|
|
301
|
-
HomeFill16: 'HomeFill16',
|
|
302
|
-
HomeFill24: 'HomeFill24',
|
|
303
|
-
HorizontalRule16: 'HorizontalRule16',
|
|
304
|
-
HorizontalRule24: 'HorizontalRule24',
|
|
305
|
-
Hourglass16: 'Hourglass16',
|
|
306
|
-
Hourglass24: 'Hourglass24',
|
|
307
|
-
Hubot16: 'Hubot16',
|
|
308
|
-
Hubot24: 'Hubot24',
|
|
309
|
-
IdBadge16: 'IdBadge16',
|
|
310
|
-
IdBadge24: 'IdBadge24',
|
|
311
|
-
Image16: 'Image16',
|
|
312
|
-
Image24: 'Image24',
|
|
313
|
-
Inbox16: 'Inbox16',
|
|
314
|
-
Inbox24: 'Inbox24',
|
|
315
|
-
Infinity16: 'Infinity16',
|
|
316
|
-
Infinity24: 'Infinity24',
|
|
317
|
-
Info16: 'Info16',
|
|
318
|
-
Info24: 'Info24',
|
|
319
|
-
IssueClosed16: 'IssueClosed16',
|
|
320
|
-
IssueClosed24: 'IssueClosed24',
|
|
321
|
-
IssueDraft16: 'IssueDraft16',
|
|
322
|
-
IssueDraft24: 'IssueDraft24',
|
|
323
|
-
IssueOpened16: 'IssueOpened16',
|
|
324
|
-
IssueOpened24: 'IssueOpened24',
|
|
325
|
-
IssueReopened16: 'IssueReopened16',
|
|
326
|
-
IssueReopened24: 'IssueReopened24',
|
|
327
|
-
IssueTrackedBy16: 'IssueTrackedBy16',
|
|
328
|
-
IssueTrackedBy24: 'IssueTrackedBy24',
|
|
329
|
-
IssueTracks16: 'IssueTracks16',
|
|
330
|
-
IssueTracks24: 'IssueTracks24',
|
|
331
|
-
Italic16: 'Italic16',
|
|
332
|
-
Italic24: 'Italic24',
|
|
333
|
-
Iterations16: 'Iterations16',
|
|
334
|
-
Iterations24: 'Iterations24',
|
|
335
|
-
KebabHorizontal16: 'KebabHorizontal16',
|
|
336
|
-
KebabHorizontal24: 'KebabHorizontal24',
|
|
337
|
-
Key16: 'Key16',
|
|
338
|
-
Key24: 'Key24',
|
|
339
|
-
KeyAsterisk16: 'KeyAsterisk16',
|
|
340
|
-
KeyAsterisk24: 'KeyAsterisk24',
|
|
341
|
-
Law16: 'Law16',
|
|
342
|
-
Law24: 'Law24',
|
|
343
|
-
LightBulb16: 'LightBulb16',
|
|
344
|
-
LightBulb24: 'LightBulb24',
|
|
345
|
-
Link16: 'Link16',
|
|
346
|
-
Link24: 'Link24',
|
|
347
|
-
LinkExternal16: 'LinkExternal16',
|
|
348
|
-
LinkExternal24: 'LinkExternal24',
|
|
349
|
-
ListOrdered16: 'ListOrdered16',
|
|
350
|
-
ListOrdered24: 'ListOrdered24',
|
|
351
|
-
ListUnordered16: 'ListUnordered16',
|
|
352
|
-
ListUnordered24: 'ListUnordered24',
|
|
353
|
-
Location16: 'Location16',
|
|
354
|
-
Location24: 'Location24',
|
|
355
|
-
Lock16: 'Lock16',
|
|
356
|
-
Lock24: 'Lock24',
|
|
357
|
-
Log16: 'Log16',
|
|
358
|
-
Log24: 'Log24',
|
|
359
|
-
LogoGist16: 'LogoGist16',
|
|
360
|
-
LogoGist24: 'LogoGist24',
|
|
361
|
-
LogoGithub16: 'LogoGithub16',
|
|
362
|
-
LogoGithub24: 'LogoGithub24',
|
|
363
|
-
Mail16: 'Mail16',
|
|
364
|
-
Mail24: 'Mail24',
|
|
365
|
-
MarkGithub16: 'MarkGithub16',
|
|
366
|
-
MarkGithub24: 'MarkGithub24',
|
|
367
|
-
Markdown16: 'Markdown16',
|
|
368
|
-
Markdown24: 'Markdown24',
|
|
369
|
-
Megaphone16: 'Megaphone16',
|
|
370
|
-
Megaphone24: 'Megaphone24',
|
|
371
|
-
Mention16: 'Mention16',
|
|
372
|
-
Mention24: 'Mention24',
|
|
373
|
-
Meter16: 'Meter16',
|
|
374
|
-
Meter24: 'Meter24',
|
|
375
|
-
Milestone16: 'Milestone16',
|
|
376
|
-
Milestone24: 'Milestone24',
|
|
377
|
-
Mirror16: 'Mirror16',
|
|
378
|
-
Mirror24: 'Mirror24',
|
|
379
|
-
Moon16: 'Moon16',
|
|
380
|
-
Moon24: 'Moon24',
|
|
381
|
-
MortarBoard16: 'MortarBoard16',
|
|
382
|
-
MortarBoard24: 'MortarBoard24',
|
|
383
|
-
MovetoBottom16: 'MovetoBottom16',
|
|
384
|
-
MovetoBottom24: 'MovetoBottom24',
|
|
385
|
-
MovetoEnd16: 'MovetoEnd16',
|
|
386
|
-
MovetoEnd24: 'MovetoEnd24',
|
|
387
|
-
MovetoStart16: 'MovetoStart16',
|
|
388
|
-
MovetoStart24: 'MovetoStart24',
|
|
389
|
-
MovetoTop16: 'MovetoTop16',
|
|
390
|
-
MovetoTop24: 'MovetoTop24',
|
|
391
|
-
MultiSelect16: 'MultiSelect16',
|
|
392
|
-
MultiSelect24: 'MultiSelect24',
|
|
393
|
-
Mute16: 'Mute16',
|
|
394
|
-
Mute24: 'Mute24',
|
|
395
|
-
NoEntry16: 'NoEntry16',
|
|
396
|
-
NoEntry24: 'NoEntry24',
|
|
397
|
-
NoEntryFill12: 'NoEntryFill12',
|
|
398
|
-
NorthStar16: 'NorthStar16',
|
|
399
|
-
NorthStar24: 'NorthStar24',
|
|
400
|
-
Note16: 'Note16',
|
|
401
|
-
Note24: 'Note24',
|
|
402
|
-
Number16: 'Number16',
|
|
403
|
-
Number24: 'Number24',
|
|
404
|
-
Organization16: 'Organization16',
|
|
405
|
-
Organization24: 'Organization24',
|
|
406
|
-
Package16: 'Package16',
|
|
407
|
-
Package24: 'Package24',
|
|
408
|
-
PackageDependencies16: 'PackageDependencies16',
|
|
409
|
-
PackageDependencies24: 'PackageDependencies24',
|
|
410
|
-
PackageDependents16: 'PackageDependents16',
|
|
411
|
-
PackageDependents24: 'PackageDependents24',
|
|
412
|
-
Paintbrush16: 'Paintbrush16',
|
|
413
|
-
Paintbrush24: 'Paintbrush24',
|
|
414
|
-
PaperAirplane16: 'PaperAirplane16',
|
|
415
|
-
PaperAirplane24: 'PaperAirplane24',
|
|
416
|
-
Paperclip16: 'Paperclip16',
|
|
417
|
-
Paperclip24: 'Paperclip24',
|
|
418
|
-
PasskeyFill16: 'PasskeyFill16',
|
|
419
|
-
PasskeyFill24: 'PasskeyFill24',
|
|
420
|
-
Paste16: 'Paste16',
|
|
421
|
-
Paste24: 'Paste24',
|
|
422
|
-
Pencil16: 'Pencil16',
|
|
423
|
-
Pencil24: 'Pencil24',
|
|
424
|
-
People16: 'People16',
|
|
425
|
-
People24: 'People24',
|
|
426
|
-
Person16: 'Person16',
|
|
427
|
-
Person24: 'Person24',
|
|
428
|
-
PersonAdd16: 'PersonAdd16',
|
|
429
|
-
PersonAdd24: 'PersonAdd24',
|
|
430
|
-
PersonFill16: 'PersonFill16',
|
|
431
|
-
PersonFill24: 'PersonFill24',
|
|
432
|
-
Pin16: 'Pin16',
|
|
433
|
-
Pin24: 'Pin24',
|
|
434
|
-
PinSlash16: 'PinSlash16',
|
|
435
|
-
PinSlash24: 'PinSlash24',
|
|
436
|
-
PivotColumn16: 'PivotColumn16',
|
|
437
|
-
PivotColumn24: 'PivotColumn24',
|
|
438
|
-
Play16: 'Play16',
|
|
439
|
-
Play24: 'Play24',
|
|
440
|
-
Plug16: 'Plug16',
|
|
441
|
-
Plug24: 'Plug24',
|
|
442
|
-
Plus16: 'Plus16',
|
|
443
|
-
Plus24: 'Plus24',
|
|
444
|
-
PlusCircle16: 'PlusCircle16',
|
|
445
|
-
PlusCircle24: 'PlusCircle24',
|
|
446
|
-
Project16: 'Project16',
|
|
447
|
-
Project24: 'Project24',
|
|
448
|
-
ProjectRoadmap16: 'ProjectRoadmap16',
|
|
449
|
-
ProjectRoadmap24: 'ProjectRoadmap24',
|
|
450
|
-
ProjectSymlink16: 'ProjectSymlink16',
|
|
451
|
-
ProjectSymlink24: 'ProjectSymlink24',
|
|
452
|
-
ProjectTemplate16: 'ProjectTemplate16',
|
|
453
|
-
ProjectTemplate24: 'ProjectTemplate24',
|
|
454
|
-
Pulse16: 'Pulse16',
|
|
455
|
-
Pulse24: 'Pulse24',
|
|
456
|
-
Question16: 'Question16',
|
|
457
|
-
Question24: 'Question24',
|
|
458
|
-
Quote16: 'Quote16',
|
|
459
|
-
Quote24: 'Quote24',
|
|
460
|
-
Read16: 'Read16',
|
|
461
|
-
Read24: 'Read24',
|
|
462
|
-
Redo16: 'Redo16',
|
|
463
|
-
Redo24: 'Redo24',
|
|
464
|
-
RelFilePath16: 'RelFilePath16',
|
|
465
|
-
RelFilePath24: 'RelFilePath24',
|
|
466
|
-
Reply16: 'Reply16',
|
|
467
|
-
Reply24: 'Reply24',
|
|
468
|
-
Repo16: 'Repo16',
|
|
469
|
-
Repo24: 'Repo24',
|
|
470
|
-
RepoClone16: 'RepoClone16',
|
|
471
|
-
RepoClone24: 'RepoClone24',
|
|
472
|
-
RepoDelete24: 'RepoDelete24',
|
|
473
|
-
RepoDeleted16: 'RepoDeleted16',
|
|
474
|
-
RepoForked16: 'RepoForked16',
|
|
475
|
-
RepoForked24: 'RepoForked24',
|
|
476
|
-
RepoLocked16: 'RepoLocked16',
|
|
477
|
-
RepoLocked24: 'RepoLocked24',
|
|
478
|
-
RepoPull16: 'RepoPull16',
|
|
479
|
-
RepoPull24: 'RepoPull24',
|
|
480
|
-
RepoPush16: 'RepoPush16',
|
|
481
|
-
RepoPush24: 'RepoPush24',
|
|
482
|
-
RepoTemplate16: 'RepoTemplate16',
|
|
483
|
-
RepoTemplate24: 'RepoTemplate24',
|
|
484
|
-
Report16: 'Report16',
|
|
485
|
-
Report24: 'Report24',
|
|
486
|
-
Rocket16: 'Rocket16',
|
|
487
|
-
Rocket24: 'Rocket24',
|
|
488
|
-
Rows16: 'Rows16',
|
|
489
|
-
Rows24: 'Rows24',
|
|
490
|
-
Rss16: 'Rss16',
|
|
491
|
-
Rss24: 'Rss24',
|
|
492
|
-
Ruby16: 'Ruby16',
|
|
493
|
-
Ruby24: 'Ruby24',
|
|
494
|
-
ScreenFull16: 'ScreenFull16',
|
|
495
|
-
ScreenFull24: 'ScreenFull24',
|
|
496
|
-
ScreenNormal16: 'ScreenNormal16',
|
|
497
|
-
ScreenNormal24: 'ScreenNormal24',
|
|
498
|
-
Search16: 'Search16',
|
|
499
|
-
Search24: 'Search24',
|
|
500
|
-
Server16: 'Server16',
|
|
501
|
-
Server24: 'Server24',
|
|
502
|
-
Share16: 'Share16',
|
|
503
|
-
Share24: 'Share24',
|
|
504
|
-
ShareAndroid16: 'ShareAndroid16',
|
|
505
|
-
ShareAndroid24: 'ShareAndroid24',
|
|
506
|
-
Shield16: 'Shield16',
|
|
507
|
-
Shield24: 'Shield24',
|
|
508
|
-
ShieldCheck16: 'ShieldCheck16',
|
|
509
|
-
ShieldCheck24: 'ShieldCheck24',
|
|
510
|
-
ShieldLock16: 'ShieldLock16',
|
|
511
|
-
ShieldLock24: 'ShieldLock24',
|
|
512
|
-
ShieldSlash16: 'ShieldSlash16',
|
|
513
|
-
ShieldSlash24: 'ShieldSlash24',
|
|
514
|
-
ShieldX16: 'ShieldX16',
|
|
515
|
-
ShieldX24: 'ShieldX24',
|
|
516
|
-
SidebarCollapse16: 'SidebarCollapse16',
|
|
517
|
-
SidebarCollapse24: 'SidebarCollapse24',
|
|
518
|
-
SidebarExpand16: 'SidebarExpand16',
|
|
519
|
-
SidebarExpand24: 'SidebarExpand24',
|
|
520
|
-
SignIn16: 'SignIn16',
|
|
521
|
-
SignIn24: 'SignIn24',
|
|
522
|
-
SignOut16: 'SignOut16',
|
|
523
|
-
SignOut24: 'SignOut24',
|
|
524
|
-
SingleSelect16: 'SingleSelect16',
|
|
525
|
-
SingleSelect24: 'SingleSelect24',
|
|
526
|
-
Skip16: 'Skip16',
|
|
527
|
-
Skip24: 'Skip24',
|
|
528
|
-
SkipFill16: 'SkipFill16',
|
|
529
|
-
SkipFill24: 'SkipFill24',
|
|
530
|
-
Sliders16: 'Sliders16',
|
|
531
|
-
Sliders24: 'Sliders24',
|
|
532
|
-
Smiley16: 'Smiley16',
|
|
533
|
-
Smiley24: 'Smiley24',
|
|
534
|
-
SortAsc16: 'SortAsc16',
|
|
535
|
-
SortAsc24: 'SortAsc24',
|
|
536
|
-
SortDesc16: 'SortDesc16',
|
|
537
|
-
SortDesc24: 'SortDesc24',
|
|
538
|
-
SparkleFill16: 'SparkleFill16',
|
|
539
|
-
SparkleFill24: 'SparkleFill24',
|
|
540
|
-
Sponsortiers16: 'Sponsortiers16',
|
|
541
|
-
Sponsortiers24: 'Sponsortiers24',
|
|
542
|
-
Square16: 'Square16',
|
|
543
|
-
Square24: 'Square24',
|
|
544
|
-
SquareFill16: 'SquareFill16',
|
|
545
|
-
SquareFill24: 'SquareFill24',
|
|
546
|
-
Squirrel16: 'Squirrel16',
|
|
547
|
-
Squirrel24: 'Squirrel24',
|
|
548
|
-
Stack16: 'Stack16',
|
|
549
|
-
Stack24: 'Stack24',
|
|
550
|
-
Star16: 'Star16',
|
|
551
|
-
Star24: 'Star24',
|
|
552
|
-
StarFill16: 'StarFill16',
|
|
553
|
-
StarFill24: 'StarFill24',
|
|
554
|
-
Stop16: 'Stop16',
|
|
555
|
-
Stop24: 'Stop24',
|
|
556
|
-
Stopwatch16: 'Stopwatch16',
|
|
557
|
-
Stopwatch24: 'Stopwatch24',
|
|
558
|
-
Strikethrough16: 'Strikethrough16',
|
|
559
|
-
Strikethrough24: 'Strikethrough24',
|
|
560
|
-
Sun16: 'Sun16',
|
|
561
|
-
Sun24: 'Sun24',
|
|
562
|
-
Sync16: 'Sync16',
|
|
563
|
-
Sync24: 'Sync24',
|
|
564
|
-
Tab16: 'Tab16',
|
|
565
|
-
Tab24: 'Tab24',
|
|
566
|
-
TabExternal16: 'TabExternal16',
|
|
567
|
-
TabExternal24: 'TabExternal24',
|
|
568
|
-
Table16: 'Table16',
|
|
569
|
-
Table24: 'Table24',
|
|
570
|
-
Tag16: 'Tag16',
|
|
571
|
-
Tag24: 'Tag24',
|
|
572
|
-
Tasklist16: 'Tasklist16',
|
|
573
|
-
Tasklist24: 'Tasklist24',
|
|
574
|
-
Telescope16: 'Telescope16',
|
|
575
|
-
Telescope24: 'Telescope24',
|
|
576
|
-
TelescopeFill16: 'TelescopeFill16',
|
|
577
|
-
TelescopeFill24: 'TelescopeFill24',
|
|
578
|
-
Terminal16: 'Terminal16',
|
|
579
|
-
Terminal24: 'Terminal24',
|
|
580
|
-
ThreeBars16: 'ThreeBars16',
|
|
581
|
-
ThreeBars24: 'ThreeBars24',
|
|
582
|
-
Thumbsdown16: 'Thumbsdown16',
|
|
583
|
-
Thumbsdown24: 'Thumbsdown24',
|
|
584
|
-
Thumbsup16: 'Thumbsup16',
|
|
585
|
-
Thumbsup24: 'Thumbsup24',
|
|
586
|
-
Tools16: 'Tools16',
|
|
587
|
-
Tools24: 'Tools24',
|
|
588
|
-
TrackedByClosedCompleted16: 'TrackedByClosedCompleted16',
|
|
589
|
-
TrackedByClosedCompleted24: 'TrackedByClosedCompleted24',
|
|
590
|
-
TrackedByClosedNotPlanned16: 'TrackedByClosedNotPlanned16',
|
|
591
|
-
TrackedByClosedNotPlanned24: 'TrackedByClosedNotPlanned24',
|
|
592
|
-
Trash16: 'Trash16',
|
|
593
|
-
Trash24: 'Trash24',
|
|
594
|
-
TriangleDown16: 'TriangleDown16',
|
|
595
|
-
TriangleDown24: 'TriangleDown24',
|
|
596
|
-
TriangleLeft16: 'TriangleLeft16',
|
|
597
|
-
TriangleLeft24: 'TriangleLeft24',
|
|
598
|
-
TriangleRight16: 'TriangleRight16',
|
|
599
|
-
TriangleRight24: 'TriangleRight24',
|
|
600
|
-
TriangleUp16: 'TriangleUp16',
|
|
601
|
-
TriangleUp24: 'TriangleUp24',
|
|
602
|
-
Trophy16: 'Trophy16',
|
|
603
|
-
Trophy24: 'Trophy24',
|
|
604
|
-
Typography16: 'Typography16',
|
|
605
|
-
Typography24: 'Typography24',
|
|
606
|
-
Undo16: 'Undo16',
|
|
607
|
-
Undo24: 'Undo24',
|
|
608
|
-
Unfold16: 'Unfold16',
|
|
609
|
-
Unfold24: 'Unfold24',
|
|
610
|
-
Unlink16: 'Unlink16',
|
|
611
|
-
Unlink24: 'Unlink24',
|
|
612
|
-
Unlock16: 'Unlock16',
|
|
613
|
-
Unlock24: 'Unlock24',
|
|
614
|
-
Unmute16: 'Unmute16',
|
|
615
|
-
Unmute24: 'Unmute24',
|
|
616
|
-
Unread16: 'Unread16',
|
|
617
|
-
Unread24: 'Unread24',
|
|
618
|
-
Unverified16: 'Unverified16',
|
|
619
|
-
Unverified24: 'Unverified24',
|
|
620
|
-
Upload16: 'Upload16',
|
|
621
|
-
Upload24: 'Upload24',
|
|
622
|
-
Verified16: 'Verified16',
|
|
623
|
-
Verified24: 'Verified24',
|
|
624
|
-
Versions16: 'Versions16',
|
|
625
|
-
Versions24: 'Versions24',
|
|
626
|
-
Video16: 'Video16',
|
|
627
|
-
Video24: 'Video24',
|
|
628
|
-
Webhook16: 'Webhook16',
|
|
629
|
-
Workflow16: 'Workflow16',
|
|
630
|
-
Workflow24: 'Workflow24',
|
|
631
|
-
X12: 'X12',
|
|
632
|
-
X16: 'X16',
|
|
633
|
-
X24: 'X24',
|
|
634
|
-
XCircle16: 'XCircle16',
|
|
635
|
-
XCircle24: 'XCircle24',
|
|
636
|
-
XCircleFill12: 'XCircleFill12',
|
|
637
|
-
XCircleFill16: 'XCircleFill16',
|
|
638
|
-
XCircleFill24: 'XCircleFill24',
|
|
639
|
-
Zap16: 'Zap16',
|
|
640
|
-
Zap24: 'Zap24',
|
|
641
|
-
ZoomIn16: 'ZoomIn16',
|
|
642
|
-
ZoomIn24: 'ZoomIn24',
|
|
643
|
-
ZoomOut16: 'ZoomOut16',
|
|
644
|
-
ZoomOut24: 'ZoomOut24',
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
export const iconSize = {
|
|
648
|
-
small: 16,
|
|
649
|
-
medium: 32,
|
|
650
|
-
large: 64,
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
export const iconAlign = {
|
|
654
|
-
middle: 'middle',
|
|
655
|
-
textBottom: 'text-bottom',
|
|
656
|
-
textTop: 'text-top',
|
|
657
|
-
top: 'top',
|
|
658
|
-
unset: 'unset',
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
export const defaultProps = {
|
|
662
|
-
className: 'octicon',
|
|
663
|
-
ariaLabel: null,
|
|
664
|
-
height: null,
|
|
665
|
-
width: null,
|
|
666
|
-
size: 16,
|
|
667
|
-
fill: 'currentColor',
|
|
668
|
-
verticalAlign: 'text-bottom',
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
export const iconNameKeys = Object.keys(iconName)
|
|
672
|
-
export const iconNameKeysDefault = iconNameKeys[0]
|
|
673
|
-
export const iconSizeKeys = Object.keys(iconSize)
|
|
674
|
-
export const iconSizeKeysDefault = iconSizeKeys[0]
|
|
675
|
-
export const iconAlignKeys = Object.keys(iconAlign)
|
|
676
|
-
export const iconAlignKeysDefault = iconAlignKeys[0]
|
|
677
|
-
|
|
678
|
-
export type IconNameType =
|
|
679
|
-
| typeof iconName.Accessibility16
|
|
680
|
-
| typeof iconName.Accessibility24
|
|
681
|
-
| typeof iconName.AccessibilityInset16
|
|
682
|
-
| typeof iconName.AccessibilityInset24
|
|
683
|
-
| typeof iconName.AIModel16
|
|
684
|
-
| typeof iconName.AIModel24
|
|
685
|
-
| typeof iconName.Alert16
|
|
686
|
-
| typeof iconName.Alert24
|
|
687
|
-
| typeof iconName.AlertFill12
|
|
688
|
-
| typeof iconName.AlertFill16
|
|
689
|
-
| typeof iconName.AlertFill24
|
|
690
|
-
| typeof iconName.Apps16
|
|
691
|
-
| typeof iconName.Apps24
|
|
692
|
-
| typeof iconName.Archive16
|
|
693
|
-
| typeof iconName.Archive24
|
|
694
|
-
| typeof iconName.ArrowBoth16
|
|
695
|
-
| typeof iconName.ArrowBoth24
|
|
696
|
-
| typeof iconName.ArrowDown16
|
|
697
|
-
| typeof iconName.ArrowDown24
|
|
698
|
-
| typeof iconName.ArrowDownLeft16
|
|
699
|
-
| typeof iconName.ArrowDownLeft24
|
|
700
|
-
| typeof iconName.ArrowDownRight16
|
|
701
|
-
| typeof iconName.ArrowDownRight24
|
|
702
|
-
| typeof iconName.ArrowLeft16
|
|
703
|
-
| typeof iconName.ArrowLeft24
|
|
704
|
-
| typeof iconName.ArrowRight16
|
|
705
|
-
| typeof iconName.ArrowRight24
|
|
706
|
-
| typeof iconName.ArrowSwitch16
|
|
707
|
-
| typeof iconName.ArrowSwitch24
|
|
708
|
-
| typeof iconName.ArrowUp16
|
|
709
|
-
| typeof iconName.ArrowUp24
|
|
710
|
-
| typeof iconName.ArrowUpLeft16
|
|
711
|
-
| typeof iconName.ArrowUpLeft24
|
|
712
|
-
| typeof iconName.ArrowUpRight16
|
|
713
|
-
| typeof iconName.ArrowUpRight24
|
|
714
|
-
| typeof iconName.Beaker16
|
|
715
|
-
| typeof iconName.Beaker24
|
|
716
|
-
| typeof iconName.Bell16
|
|
717
|
-
| typeof iconName.Bell24
|
|
718
|
-
| typeof iconName.BellFill16
|
|
719
|
-
| typeof iconName.BellFill24
|
|
720
|
-
| typeof iconName.BellSlash16
|
|
721
|
-
| typeof iconName.BellSlash24
|
|
722
|
-
| typeof iconName.Blocked16
|
|
723
|
-
| typeof iconName.Blocked24
|
|
724
|
-
| typeof iconName.Bold16
|
|
725
|
-
| typeof iconName.Bold24
|
|
726
|
-
| typeof iconName.Book16
|
|
727
|
-
| typeof iconName.Book24
|
|
728
|
-
| typeof iconName.Bookmark16
|
|
729
|
-
| typeof iconName.Bookmark24
|
|
730
|
-
| typeof iconName.BookmarkFill24
|
|
731
|
-
| typeof iconName.BookmarkFilled16
|
|
732
|
-
| typeof iconName.BookmarkSlash16
|
|
733
|
-
| typeof iconName.BookmarkSlash24
|
|
734
|
-
| typeof iconName.BookmarkSlashFill16
|
|
735
|
-
| typeof iconName.BookmarkSlashFill24
|
|
736
|
-
| typeof iconName.Briefcase16
|
|
737
|
-
| typeof iconName.Briefcase24
|
|
738
|
-
| typeof iconName.Broadcast16
|
|
739
|
-
| typeof iconName.Broadcast24
|
|
740
|
-
| typeof iconName.Browser16
|
|
741
|
-
| typeof iconName.Browser24
|
|
742
|
-
| typeof iconName.Bug16
|
|
743
|
-
| typeof iconName.Bug24
|
|
744
|
-
| typeof iconName.Cache16
|
|
745
|
-
| typeof iconName.Cache24
|
|
746
|
-
| typeof iconName.Calendar16
|
|
747
|
-
| typeof iconName.Calendar24
|
|
748
|
-
| typeof iconName.Check16
|
|
749
|
-
| typeof iconName.Check24
|
|
750
|
-
| typeof iconName.CheckCircle16
|
|
751
|
-
| typeof iconName.CheckCircle24
|
|
752
|
-
| typeof iconName.CheckCircleFill12
|
|
753
|
-
| typeof iconName.CheckCircleFill16
|
|
754
|
-
| typeof iconName.CheckCircleFill24
|
|
755
|
-
| typeof iconName.Checkbox16
|
|
756
|
-
| typeof iconName.Checkbox24
|
|
757
|
-
| typeof iconName.Checklist16
|
|
758
|
-
| typeof iconName.Checklist24
|
|
759
|
-
| typeof iconName.ChevronDown12
|
|
760
|
-
| typeof iconName.ChevronDown16
|
|
761
|
-
| typeof iconName.ChevronDown24
|
|
762
|
-
| typeof iconName.ChevronLeft12
|
|
763
|
-
| typeof iconName.ChevronLeft16
|
|
764
|
-
| typeof iconName.ChevronLeft24
|
|
765
|
-
| typeof iconName.ChevronRight12
|
|
766
|
-
| typeof iconName.ChevronRight16
|
|
767
|
-
| typeof iconName.ChevronRight24
|
|
768
|
-
| typeof iconName.ChevronUp12
|
|
769
|
-
| typeof iconName.ChevronUp16
|
|
770
|
-
| typeof iconName.ChevronUp24
|
|
771
|
-
| typeof iconName.Circle16
|
|
772
|
-
| typeof iconName.Circle24
|
|
773
|
-
| typeof iconName.CircleSlash16
|
|
774
|
-
| typeof iconName.CircleSlash24
|
|
775
|
-
| typeof iconName.Clock16
|
|
776
|
-
| typeof iconName.Clock24
|
|
777
|
-
| typeof iconName.ClockFill16
|
|
778
|
-
| typeof iconName.ClockFill24
|
|
779
|
-
| typeof iconName.Cloud16
|
|
780
|
-
| typeof iconName.Cloud24
|
|
781
|
-
| typeof iconName.CloudOffline16
|
|
782
|
-
| typeof iconName.CloudOffline24
|
|
783
|
-
| typeof iconName.Code16
|
|
784
|
-
| typeof iconName.Code24
|
|
785
|
-
| typeof iconName.CodeOfConduct16
|
|
786
|
-
| typeof iconName.CodeOfConduct24
|
|
787
|
-
| typeof iconName.CodeReview16
|
|
788
|
-
| typeof iconName.CodeReview24
|
|
789
|
-
| typeof iconName.CodeSquare16
|
|
790
|
-
| typeof iconName.CodeSquare24
|
|
791
|
-
| typeof iconName.Codescan16
|
|
792
|
-
| typeof iconName.Codescan24
|
|
793
|
-
| typeof iconName.CodescanCheckmark16
|
|
794
|
-
| typeof iconName.CodescanCheckmark24
|
|
795
|
-
| typeof iconName.Codespaces16
|
|
796
|
-
| typeof iconName.Codespaces24
|
|
797
|
-
| typeof iconName.Columns16
|
|
798
|
-
| typeof iconName.Columns24
|
|
799
|
-
| typeof iconName.CommandPalette16
|
|
800
|
-
| typeof iconName.CommandPalette24
|
|
801
|
-
| typeof iconName.Comment16
|
|
802
|
-
| typeof iconName.Comment24
|
|
803
|
-
| typeof iconName.CommentDiscussion16
|
|
804
|
-
| typeof iconName.CommentDiscussion24
|
|
805
|
-
| typeof iconName.Container16
|
|
806
|
-
| typeof iconName.Container24
|
|
807
|
-
| typeof iconName.Copilot16
|
|
808
|
-
| typeof iconName.Copilot24
|
|
809
|
-
| typeof iconName.Copilot48
|
|
810
|
-
| typeof iconName.Copilot96
|
|
811
|
-
| typeof iconName.CopilotError16
|
|
812
|
-
| typeof iconName.CopilotWarning16
|
|
813
|
-
| typeof iconName.Copy16
|
|
814
|
-
| typeof iconName.Copy24
|
|
815
|
-
| typeof iconName.Cpu16
|
|
816
|
-
| typeof iconName.Cpu24
|
|
817
|
-
| typeof iconName.CreditCard16
|
|
818
|
-
| typeof iconName.CreditCard24
|
|
819
|
-
| typeof iconName.CrossReference16
|
|
820
|
-
| typeof iconName.CrossReference24
|
|
821
|
-
| typeof iconName.Dash16
|
|
822
|
-
| typeof iconName.Dash24
|
|
823
|
-
| typeof iconName.Database16
|
|
824
|
-
| typeof iconName.Database24
|
|
825
|
-
| typeof iconName.Dependabot16
|
|
826
|
-
| typeof iconName.Dependabot24
|
|
827
|
-
| typeof iconName.DesktopDownload16
|
|
828
|
-
| typeof iconName.DesktopDownload24
|
|
829
|
-
| typeof iconName.DeviceCamera16
|
|
830
|
-
| typeof iconName.DeviceCamera24
|
|
831
|
-
| typeof iconName.DeviceCameraVideo16
|
|
832
|
-
| typeof iconName.DeviceCameraVideo24
|
|
833
|
-
| typeof iconName.DeviceDesktop16
|
|
834
|
-
| typeof iconName.DeviceDesktop24
|
|
835
|
-
| typeof iconName.DeviceMobile16
|
|
836
|
-
| typeof iconName.DeviceMobile24
|
|
837
|
-
| typeof iconName.Devices16
|
|
838
|
-
| typeof iconName.Devices24
|
|
839
|
-
| typeof iconName.Diamond16
|
|
840
|
-
| typeof iconName.Diamond24
|
|
841
|
-
| typeof iconName.Diff16
|
|
842
|
-
| typeof iconName.Diff24
|
|
843
|
-
| typeof iconName.DiffAdded16
|
|
844
|
-
| typeof iconName.DiffAdded24
|
|
845
|
-
| typeof iconName.DiffIgnored16
|
|
846
|
-
| typeof iconName.DiffIgnored24
|
|
847
|
-
| typeof iconName.DiffModified16
|
|
848
|
-
| typeof iconName.DiffModified24
|
|
849
|
-
| typeof iconName.DiffRemoved16
|
|
850
|
-
| typeof iconName.DiffRemoved24
|
|
851
|
-
| typeof iconName.DiffRenamed16
|
|
852
|
-
| typeof iconName.DiffRenamed24
|
|
853
|
-
| typeof iconName.DiscussionClosed16
|
|
854
|
-
| typeof iconName.DiscussionClosed24
|
|
855
|
-
| typeof iconName.DiscussionDuplicate16
|
|
856
|
-
| typeof iconName.DiscussionDuplicate24
|
|
857
|
-
| typeof iconName.DiscussionOutdated16
|
|
858
|
-
| typeof iconName.DiscussionOutdated24
|
|
859
|
-
| typeof iconName.Dot16
|
|
860
|
-
| typeof iconName.Dot24
|
|
861
|
-
| typeof iconName.DotFill16
|
|
862
|
-
| typeof iconName.DotFill24
|
|
863
|
-
| typeof iconName.Download16
|
|
864
|
-
| typeof iconName.Download24
|
|
865
|
-
| typeof iconName.Duplicate16
|
|
866
|
-
| typeof iconName.Duplicate24
|
|
867
|
-
| typeof iconName.Ellipsis16
|
|
868
|
-
| typeof iconName.Ellipsis24
|
|
869
|
-
| typeof iconName.Eye16
|
|
870
|
-
| typeof iconName.Eye24
|
|
871
|
-
| typeof iconName.EyeClosed16
|
|
872
|
-
| typeof iconName.EyeClosed24
|
|
873
|
-
| typeof iconName.FeedDiscussion16
|
|
874
|
-
| typeof iconName.FeedForked16
|
|
875
|
-
| typeof iconName.FeedHeart16
|
|
876
|
-
| typeof iconName.FeedIssueClosed16
|
|
877
|
-
| typeof iconName.FeedIssueDraft16
|
|
878
|
-
| typeof iconName.FeedIssueOpen16
|
|
879
|
-
| typeof iconName.FeedIssueReopen16
|
|
880
|
-
| typeof iconName.FeedMerged16
|
|
881
|
-
| typeof iconName.FeedPerson16
|
|
882
|
-
| typeof iconName.FeedPlus16
|
|
883
|
-
| typeof iconName.FeedPublic16
|
|
884
|
-
| typeof iconName.FeedPullRequestClosed16
|
|
885
|
-
| typeof iconName.FeedPullRequestDraft16
|
|
886
|
-
| typeof iconName.FeedPullRequestOpen16
|
|
887
|
-
| typeof iconName.FeedRepo16
|
|
888
|
-
| typeof iconName.FeedRocket16
|
|
889
|
-
| typeof iconName.FeedStar16
|
|
890
|
-
| typeof iconName.FeedTag16
|
|
891
|
-
| typeof iconName.FeedTrophy16
|
|
892
|
-
| typeof iconName.File16
|
|
893
|
-
| typeof iconName.File24
|
|
894
|
-
| typeof iconName.FileAdded16
|
|
895
|
-
| typeof iconName.FileAdded24
|
|
896
|
-
| typeof iconName.FileBadge16
|
|
897
|
-
| typeof iconName.FileBadge24
|
|
898
|
-
| typeof iconName.FileBinary16
|
|
899
|
-
| typeof iconName.FileBinary24
|
|
900
|
-
| typeof iconName.FileCode16
|
|
901
|
-
| typeof iconName.FileCode24
|
|
902
|
-
| typeof iconName.FileDiff16
|
|
903
|
-
| typeof iconName.FileDiff24
|
|
904
|
-
| typeof iconName.FileDirectory16
|
|
905
|
-
| typeof iconName.FileDirectory24
|
|
906
|
-
| typeof iconName.FileDirectoryFill16
|
|
907
|
-
| typeof iconName.FileDirectoryFill24
|
|
908
|
-
| typeof iconName.FileDirectoryOpenFill16
|
|
909
|
-
| typeof iconName.FileDirectoryOpenFill24
|
|
910
|
-
| typeof iconName.FileDirectorySymlink16
|
|
911
|
-
| typeof iconName.FileDirectorySymlink24
|
|
912
|
-
| typeof iconName.FileMedia16
|
|
913
|
-
| typeof iconName.FileMedia24
|
|
914
|
-
| typeof iconName.FileMoved16
|
|
915
|
-
| typeof iconName.FileMoved24
|
|
916
|
-
| typeof iconName.FileRemoved16
|
|
917
|
-
| typeof iconName.FileRemoved24
|
|
918
|
-
| typeof iconName.FileSubmodule16
|
|
919
|
-
| typeof iconName.FileSubmodule24
|
|
920
|
-
| typeof iconName.FileSymlinkFile16
|
|
921
|
-
| typeof iconName.FileSymlinkFile24
|
|
922
|
-
| typeof iconName.FileZip16
|
|
923
|
-
| typeof iconName.FileZip24
|
|
924
|
-
| typeof iconName.Filter16
|
|
925
|
-
| typeof iconName.Filter24
|
|
926
|
-
| typeof iconName.FilterRemove16
|
|
927
|
-
| typeof iconName.FilterRemove24
|
|
928
|
-
| typeof iconName.FiscalHost16
|
|
929
|
-
| typeof iconName.FiscalHost24
|
|
930
|
-
| typeof iconName.Flame16
|
|
931
|
-
| typeof iconName.Flame24
|
|
932
|
-
| typeof iconName.Fold16
|
|
933
|
-
| typeof iconName.Fold24
|
|
934
|
-
| typeof iconName.FoldDown16
|
|
935
|
-
| typeof iconName.FoldDown24
|
|
936
|
-
| typeof iconName.FoldUp16
|
|
937
|
-
| typeof iconName.FoldUp24
|
|
938
|
-
| typeof iconName.Gear16
|
|
939
|
-
| typeof iconName.Gear24
|
|
940
|
-
| typeof iconName.Gift16
|
|
941
|
-
| typeof iconName.Gift24
|
|
942
|
-
| typeof iconName.GitBranch16
|
|
943
|
-
| typeof iconName.GitBranch24
|
|
944
|
-
| typeof iconName.GitCommit16
|
|
945
|
-
| typeof iconName.GitCommit24
|
|
946
|
-
| typeof iconName.GitCompare16
|
|
947
|
-
| typeof iconName.GitCompare24
|
|
948
|
-
| typeof iconName.GitMerge16
|
|
949
|
-
| typeof iconName.GitMerge24
|
|
950
|
-
| typeof iconName.GitMergeQueue16
|
|
951
|
-
| typeof iconName.GitMergeQueue24
|
|
952
|
-
| typeof iconName.GitPullRequest16
|
|
953
|
-
| typeof iconName.GitPullRequest24
|
|
954
|
-
| typeof iconName.GitPullRequestClosed16
|
|
955
|
-
| typeof iconName.GitPullRequestClosed24
|
|
956
|
-
| typeof iconName.GitPullRequestDraft16
|
|
957
|
-
| typeof iconName.GitPullRequestDraft24
|
|
958
|
-
| typeof iconName.Globe16
|
|
959
|
-
| typeof iconName.Globe24
|
|
960
|
-
| typeof iconName.Goal16
|
|
961
|
-
| typeof iconName.Goal24
|
|
962
|
-
| typeof iconName.Grabber16
|
|
963
|
-
| typeof iconName.Grabber24
|
|
964
|
-
| typeof iconName.Graph16
|
|
965
|
-
| typeof iconName.Graph24
|
|
966
|
-
| typeof iconName.Hash16
|
|
967
|
-
| typeof iconName.Hash24
|
|
968
|
-
| typeof iconName.Heading16
|
|
969
|
-
| typeof iconName.Heading24
|
|
970
|
-
| typeof iconName.Heart16
|
|
971
|
-
| typeof iconName.Heart24
|
|
972
|
-
| typeof iconName.HeartFill16
|
|
973
|
-
| typeof iconName.HeartFill24
|
|
974
|
-
| typeof iconName.History16
|
|
975
|
-
| typeof iconName.History24
|
|
976
|
-
| typeof iconName.Home16
|
|
977
|
-
| typeof iconName.Home24
|
|
978
|
-
| typeof iconName.HomeFill16
|
|
979
|
-
| typeof iconName.HomeFill24
|
|
980
|
-
| typeof iconName.HorizontalRule16
|
|
981
|
-
| typeof iconName.HorizontalRule24
|
|
982
|
-
| typeof iconName.Hourglass16
|
|
983
|
-
| typeof iconName.Hourglass24
|
|
984
|
-
| typeof iconName.Hubot16
|
|
985
|
-
| typeof iconName.Hubot24
|
|
986
|
-
| typeof iconName.IdBadge16
|
|
987
|
-
| typeof iconName.IdBadge24
|
|
988
|
-
| typeof iconName.Image16
|
|
989
|
-
| typeof iconName.Image24
|
|
990
|
-
| typeof iconName.Inbox16
|
|
991
|
-
| typeof iconName.Inbox24
|
|
992
|
-
| typeof iconName.Infinity16
|
|
993
|
-
| typeof iconName.Infinity24
|
|
994
|
-
| typeof iconName.Info16
|
|
995
|
-
| typeof iconName.Info24
|
|
996
|
-
| typeof iconName.IssueClosed16
|
|
997
|
-
| typeof iconName.IssueClosed24
|
|
998
|
-
| typeof iconName.IssueDraft16
|
|
999
|
-
| typeof iconName.IssueDraft24
|
|
1000
|
-
| typeof iconName.IssueOpened16
|
|
1001
|
-
| typeof iconName.IssueOpened24
|
|
1002
|
-
| typeof iconName.IssueReopened16
|
|
1003
|
-
| typeof iconName.IssueReopened24
|
|
1004
|
-
| typeof iconName.IssueTrackedBy16
|
|
1005
|
-
| typeof iconName.IssueTrackedBy24
|
|
1006
|
-
| typeof iconName.IssueTracks16
|
|
1007
|
-
| typeof iconName.IssueTracks24
|
|
1008
|
-
| typeof iconName.Italic16
|
|
1009
|
-
| typeof iconName.Italic24
|
|
1010
|
-
| typeof iconName.Iterations16
|
|
1011
|
-
| typeof iconName.Iterations24
|
|
1012
|
-
| typeof iconName.KebabHorizontal16
|
|
1013
|
-
| typeof iconName.KebabHorizontal24
|
|
1014
|
-
| typeof iconName.Key16
|
|
1015
|
-
| typeof iconName.Key24
|
|
1016
|
-
| typeof iconName.KeyAsterisk16
|
|
1017
|
-
| typeof iconName.KeyAsterisk24
|
|
1018
|
-
| typeof iconName.Law16
|
|
1019
|
-
| typeof iconName.Law24
|
|
1020
|
-
| typeof iconName.LightBulb16
|
|
1021
|
-
| typeof iconName.LightBulb24
|
|
1022
|
-
| typeof iconName.Link16
|
|
1023
|
-
| typeof iconName.Link24
|
|
1024
|
-
| typeof iconName.LinkExternal16
|
|
1025
|
-
| typeof iconName.LinkExternal24
|
|
1026
|
-
| typeof iconName.ListOrdered16
|
|
1027
|
-
| typeof iconName.ListOrdered24
|
|
1028
|
-
| typeof iconName.ListUnordered16
|
|
1029
|
-
| typeof iconName.ListUnordered24
|
|
1030
|
-
| typeof iconName.Location16
|
|
1031
|
-
| typeof iconName.Location24
|
|
1032
|
-
| typeof iconName.Lock16
|
|
1033
|
-
| typeof iconName.Lock24
|
|
1034
|
-
| typeof iconName.Log16
|
|
1035
|
-
| typeof iconName.Log24
|
|
1036
|
-
| typeof iconName.LogoGist16
|
|
1037
|
-
| typeof iconName.LogoGist24
|
|
1038
|
-
| typeof iconName.LogoGithub16
|
|
1039
|
-
| typeof iconName.LogoGithub24
|
|
1040
|
-
| typeof iconName.Mail16
|
|
1041
|
-
| typeof iconName.Mail24
|
|
1042
|
-
| typeof iconName.MarkGithub16
|
|
1043
|
-
| typeof iconName.MarkGithub24
|
|
1044
|
-
| typeof iconName.Markdown16
|
|
1045
|
-
| typeof iconName.Markdown24
|
|
1046
|
-
| typeof iconName.Megaphone16
|
|
1047
|
-
| typeof iconName.Megaphone24
|
|
1048
|
-
| typeof iconName.Mention16
|
|
1049
|
-
| typeof iconName.Mention24
|
|
1050
|
-
| typeof iconName.Meter16
|
|
1051
|
-
| typeof iconName.Meter24
|
|
1052
|
-
| typeof iconName.Milestone16
|
|
1053
|
-
| typeof iconName.Milestone24
|
|
1054
|
-
| typeof iconName.Mirror16
|
|
1055
|
-
| typeof iconName.Mirror24
|
|
1056
|
-
| typeof iconName.Moon16
|
|
1057
|
-
| typeof iconName.Moon24
|
|
1058
|
-
| typeof iconName.MortarBoard16
|
|
1059
|
-
| typeof iconName.MortarBoard24
|
|
1060
|
-
| typeof iconName.MovetoBottom16
|
|
1061
|
-
| typeof iconName.MovetoBottom24
|
|
1062
|
-
| typeof iconName.MovetoEnd16
|
|
1063
|
-
| typeof iconName.MovetoEnd24
|
|
1064
|
-
| typeof iconName.MovetoStart16
|
|
1065
|
-
| typeof iconName.MovetoStart24
|
|
1066
|
-
| typeof iconName.MovetoTop16
|
|
1067
|
-
| typeof iconName.MovetoTop24
|
|
1068
|
-
| typeof iconName.MultiSelect16
|
|
1069
|
-
| typeof iconName.MultiSelect24
|
|
1070
|
-
| typeof iconName.Mute16
|
|
1071
|
-
| typeof iconName.Mute24
|
|
1072
|
-
| typeof iconName.NoEntry16
|
|
1073
|
-
| typeof iconName.NoEntry24
|
|
1074
|
-
| typeof iconName.NoEntryFill12
|
|
1075
|
-
| typeof iconName.NorthStar16
|
|
1076
|
-
| typeof iconName.NorthStar24
|
|
1077
|
-
| typeof iconName.Note16
|
|
1078
|
-
| typeof iconName.Note24
|
|
1079
|
-
| typeof iconName.Number16
|
|
1080
|
-
| typeof iconName.Number24
|
|
1081
|
-
| typeof iconName.Organization16
|
|
1082
|
-
| typeof iconName.Organization24
|
|
1083
|
-
| typeof iconName.Package16
|
|
1084
|
-
| typeof iconName.Package24
|
|
1085
|
-
| typeof iconName.PackageDependencies16
|
|
1086
|
-
| typeof iconName.PackageDependencies24
|
|
1087
|
-
| typeof iconName.PackageDependents16
|
|
1088
|
-
| typeof iconName.PackageDependents24
|
|
1089
|
-
| typeof iconName.Paintbrush16
|
|
1090
|
-
| typeof iconName.Paintbrush24
|
|
1091
|
-
| typeof iconName.PaperAirplane16
|
|
1092
|
-
| typeof iconName.PaperAirplane24
|
|
1093
|
-
| typeof iconName.Paperclip16
|
|
1094
|
-
| typeof iconName.Paperclip24
|
|
1095
|
-
| typeof iconName.PasskeyFill16
|
|
1096
|
-
| typeof iconName.PasskeyFill24
|
|
1097
|
-
| typeof iconName.Paste16
|
|
1098
|
-
| typeof iconName.Paste24
|
|
1099
|
-
| typeof iconName.Pencil16
|
|
1100
|
-
| typeof iconName.Pencil24
|
|
1101
|
-
| typeof iconName.People16
|
|
1102
|
-
| typeof iconName.People24
|
|
1103
|
-
| typeof iconName.Person16
|
|
1104
|
-
| typeof iconName.Person24
|
|
1105
|
-
| typeof iconName.PersonAdd16
|
|
1106
|
-
| typeof iconName.PersonAdd24
|
|
1107
|
-
| typeof iconName.PersonFill16
|
|
1108
|
-
| typeof iconName.PersonFill24
|
|
1109
|
-
| typeof iconName.Pin16
|
|
1110
|
-
| typeof iconName.Pin24
|
|
1111
|
-
| typeof iconName.PinSlash16
|
|
1112
|
-
| typeof iconName.PinSlash24
|
|
1113
|
-
| typeof iconName.PivotColumn16
|
|
1114
|
-
| typeof iconName.PivotColumn24
|
|
1115
|
-
| typeof iconName.Play16
|
|
1116
|
-
| typeof iconName.Play24
|
|
1117
|
-
| typeof iconName.Plug16
|
|
1118
|
-
| typeof iconName.Plug24
|
|
1119
|
-
| typeof iconName.Plus16
|
|
1120
|
-
| typeof iconName.Plus24
|
|
1121
|
-
| typeof iconName.PlusCircle16
|
|
1122
|
-
| typeof iconName.PlusCircle24
|
|
1123
|
-
| typeof iconName.Project16
|
|
1124
|
-
| typeof iconName.Project24
|
|
1125
|
-
| typeof iconName.ProjectRoadmap16
|
|
1126
|
-
| typeof iconName.ProjectRoadmap24
|
|
1127
|
-
| typeof iconName.ProjectSymlink16
|
|
1128
|
-
| typeof iconName.ProjectSymlink24
|
|
1129
|
-
| typeof iconName.ProjectTemplate16
|
|
1130
|
-
| typeof iconName.ProjectTemplate24
|
|
1131
|
-
| typeof iconName.Pulse16
|
|
1132
|
-
| typeof iconName.Pulse24
|
|
1133
|
-
| typeof iconName.Question16
|
|
1134
|
-
| typeof iconName.Question24
|
|
1135
|
-
| typeof iconName.Quote16
|
|
1136
|
-
| typeof iconName.Quote24
|
|
1137
|
-
| typeof iconName.Read16
|
|
1138
|
-
| typeof iconName.Read24
|
|
1139
|
-
| typeof iconName.Redo16
|
|
1140
|
-
| typeof iconName.Redo24
|
|
1141
|
-
| typeof iconName.RelFilePath16
|
|
1142
|
-
| typeof iconName.RelFilePath24
|
|
1143
|
-
| typeof iconName.Reply16
|
|
1144
|
-
| typeof iconName.Reply24
|
|
1145
|
-
| typeof iconName.Repo16
|
|
1146
|
-
| typeof iconName.Repo24
|
|
1147
|
-
| typeof iconName.RepoClone16
|
|
1148
|
-
| typeof iconName.RepoClone24
|
|
1149
|
-
| typeof iconName.RepoDelete24
|
|
1150
|
-
| typeof iconName.RepoDeleted16
|
|
1151
|
-
| typeof iconName.RepoForked16
|
|
1152
|
-
| typeof iconName.RepoForked24
|
|
1153
|
-
| typeof iconName.RepoLocked16
|
|
1154
|
-
| typeof iconName.RepoLocked24
|
|
1155
|
-
| typeof iconName.RepoPull16
|
|
1156
|
-
| typeof iconName.RepoPull24
|
|
1157
|
-
| typeof iconName.RepoPush16
|
|
1158
|
-
| typeof iconName.RepoPush24
|
|
1159
|
-
| typeof iconName.RepoTemplate16
|
|
1160
|
-
| typeof iconName.RepoTemplate24
|
|
1161
|
-
| typeof iconName.Report16
|
|
1162
|
-
| typeof iconName.Report24
|
|
1163
|
-
| typeof iconName.Rocket16
|
|
1164
|
-
| typeof iconName.Rocket24
|
|
1165
|
-
| typeof iconName.Rows16
|
|
1166
|
-
| typeof iconName.Rows24
|
|
1167
|
-
| typeof iconName.Rss16
|
|
1168
|
-
| typeof iconName.Rss24
|
|
1169
|
-
| typeof iconName.Ruby16
|
|
1170
|
-
| typeof iconName.Ruby24
|
|
1171
|
-
| typeof iconName.ScreenFull16
|
|
1172
|
-
| typeof iconName.ScreenFull24
|
|
1173
|
-
| typeof iconName.ScreenNormal16
|
|
1174
|
-
| typeof iconName.ScreenNormal24
|
|
1175
|
-
| typeof iconName.Search16
|
|
1176
|
-
| typeof iconName.Search24
|
|
1177
|
-
| typeof iconName.Server16
|
|
1178
|
-
| typeof iconName.Server24
|
|
1179
|
-
| typeof iconName.Share16
|
|
1180
|
-
| typeof iconName.Share24
|
|
1181
|
-
| typeof iconName.ShareAndroid16
|
|
1182
|
-
| typeof iconName.ShareAndroid24
|
|
1183
|
-
| typeof iconName.Shield16
|
|
1184
|
-
| typeof iconName.Shield24
|
|
1185
|
-
| typeof iconName.ShieldCheck16
|
|
1186
|
-
| typeof iconName.ShieldCheck24
|
|
1187
|
-
| typeof iconName.ShieldLock16
|
|
1188
|
-
| typeof iconName.ShieldLock24
|
|
1189
|
-
| typeof iconName.ShieldSlash16
|
|
1190
|
-
| typeof iconName.ShieldSlash24
|
|
1191
|
-
| typeof iconName.ShieldX16
|
|
1192
|
-
| typeof iconName.ShieldX24
|
|
1193
|
-
| typeof iconName.SidebarCollapse16
|
|
1194
|
-
| typeof iconName.SidebarCollapse24
|
|
1195
|
-
| typeof iconName.SidebarExpand16
|
|
1196
|
-
| typeof iconName.SidebarExpand24
|
|
1197
|
-
| typeof iconName.SignIn16
|
|
1198
|
-
| typeof iconName.SignIn24
|
|
1199
|
-
| typeof iconName.SignOut16
|
|
1200
|
-
| typeof iconName.SignOut24
|
|
1201
|
-
| typeof iconName.SingleSelect16
|
|
1202
|
-
| typeof iconName.SingleSelect24
|
|
1203
|
-
| typeof iconName.Skip16
|
|
1204
|
-
| typeof iconName.Skip24
|
|
1205
|
-
| typeof iconName.SkipFill16
|
|
1206
|
-
| typeof iconName.SkipFill24
|
|
1207
|
-
| typeof iconName.Sliders16
|
|
1208
|
-
| typeof iconName.Sliders24
|
|
1209
|
-
| typeof iconName.Smiley16
|
|
1210
|
-
| typeof iconName.Smiley24
|
|
1211
|
-
| typeof iconName.SortAsc16
|
|
1212
|
-
| typeof iconName.SortAsc24
|
|
1213
|
-
| typeof iconName.SortDesc16
|
|
1214
|
-
| typeof iconName.SortDesc24
|
|
1215
|
-
| typeof iconName.SparkleFill16
|
|
1216
|
-
| typeof iconName.SparkleFill24
|
|
1217
|
-
| typeof iconName.Sponsortiers16
|
|
1218
|
-
| typeof iconName.Sponsortiers24
|
|
1219
|
-
| typeof iconName.Square16
|
|
1220
|
-
| typeof iconName.Square24
|
|
1221
|
-
| typeof iconName.SquareFill16
|
|
1222
|
-
| typeof iconName.SquareFill24
|
|
1223
|
-
| typeof iconName.Squirrel16
|
|
1224
|
-
| typeof iconName.Squirrel24
|
|
1225
|
-
| typeof iconName.Stack16
|
|
1226
|
-
| typeof iconName.Stack24
|
|
1227
|
-
| typeof iconName.Star16
|
|
1228
|
-
| typeof iconName.Star24
|
|
1229
|
-
| typeof iconName.StarFill16
|
|
1230
|
-
| typeof iconName.StarFill24
|
|
1231
|
-
| typeof iconName.Stop16
|
|
1232
|
-
| typeof iconName.Stop24
|
|
1233
|
-
| typeof iconName.Stopwatch16
|
|
1234
|
-
| typeof iconName.Stopwatch24
|
|
1235
|
-
| typeof iconName.Strikethrough16
|
|
1236
|
-
| typeof iconName.Strikethrough24
|
|
1237
|
-
| typeof iconName.Sun16
|
|
1238
|
-
| typeof iconName.Sun24
|
|
1239
|
-
| typeof iconName.Sync16
|
|
1240
|
-
| typeof iconName.Sync24
|
|
1241
|
-
| typeof iconName.Tab16
|
|
1242
|
-
| typeof iconName.Tab24
|
|
1243
|
-
| typeof iconName.TabExternal16
|
|
1244
|
-
| typeof iconName.TabExternal24
|
|
1245
|
-
| typeof iconName.Table16
|
|
1246
|
-
| typeof iconName.Table24
|
|
1247
|
-
| typeof iconName.Tag16
|
|
1248
|
-
| typeof iconName.Tag24
|
|
1249
|
-
| typeof iconName.Tasklist16
|
|
1250
|
-
| typeof iconName.Tasklist24
|
|
1251
|
-
| typeof iconName.Telescope16
|
|
1252
|
-
| typeof iconName.Telescope24
|
|
1253
|
-
| typeof iconName.TelescopeFill16
|
|
1254
|
-
| typeof iconName.TelescopeFill24
|
|
1255
|
-
| typeof iconName.Terminal16
|
|
1256
|
-
| typeof iconName.Terminal24
|
|
1257
|
-
| typeof iconName.ThreeBars16
|
|
1258
|
-
| typeof iconName.ThreeBars24
|
|
1259
|
-
| typeof iconName.Thumbsdown16
|
|
1260
|
-
| typeof iconName.Thumbsdown24
|
|
1261
|
-
| typeof iconName.Thumbsup16
|
|
1262
|
-
| typeof iconName.Thumbsup24
|
|
1263
|
-
| typeof iconName.Tools16
|
|
1264
|
-
| typeof iconName.Tools24
|
|
1265
|
-
| typeof iconName.TrackedByClosedCompleted16
|
|
1266
|
-
| typeof iconName.TrackedByClosedCompleted24
|
|
1267
|
-
| typeof iconName.TrackedByClosedNotPlanned16
|
|
1268
|
-
| typeof iconName.TrackedByClosedNotPlanned24
|
|
1269
|
-
| typeof iconName.Trash16
|
|
1270
|
-
| typeof iconName.Trash24
|
|
1271
|
-
| typeof iconName.TriangleDown16
|
|
1272
|
-
| typeof iconName.TriangleDown24
|
|
1273
|
-
| typeof iconName.TriangleLeft16
|
|
1274
|
-
| typeof iconName.TriangleLeft24
|
|
1275
|
-
| typeof iconName.TriangleRight16
|
|
1276
|
-
| typeof iconName.TriangleRight24
|
|
1277
|
-
| typeof iconName.TriangleUp16
|
|
1278
|
-
| typeof iconName.TriangleUp24
|
|
1279
|
-
| typeof iconName.Trophy16
|
|
1280
|
-
| typeof iconName.Trophy24
|
|
1281
|
-
| typeof iconName.Typography16
|
|
1282
|
-
| typeof iconName.Typography24
|
|
1283
|
-
| typeof iconName.Undo16
|
|
1284
|
-
| typeof iconName.Undo24
|
|
1285
|
-
| typeof iconName.Unfold16
|
|
1286
|
-
| typeof iconName.Unfold24
|
|
1287
|
-
| typeof iconName.Unlink16
|
|
1288
|
-
| typeof iconName.Unlink24
|
|
1289
|
-
| typeof iconName.Unlock16
|
|
1290
|
-
| typeof iconName.Unlock24
|
|
1291
|
-
| typeof iconName.Unmute16
|
|
1292
|
-
| typeof iconName.Unmute24
|
|
1293
|
-
| typeof iconName.Unread16
|
|
1294
|
-
| typeof iconName.Unread24
|
|
1295
|
-
| typeof iconName.Unverified16
|
|
1296
|
-
| typeof iconName.Unverified24
|
|
1297
|
-
| typeof iconName.Upload16
|
|
1298
|
-
| typeof iconName.Upload24
|
|
1299
|
-
| typeof iconName.Verified16
|
|
1300
|
-
| typeof iconName.Verified24
|
|
1301
|
-
| typeof iconName.Versions16
|
|
1302
|
-
| typeof iconName.Versions24
|
|
1303
|
-
| typeof iconName.Video16
|
|
1304
|
-
| typeof iconName.Video24
|
|
1305
|
-
| typeof iconName.Webhook16
|
|
1306
|
-
| typeof iconName.Workflow16
|
|
1307
|
-
| typeof iconName.Workflow24
|
|
1308
|
-
| typeof iconName.X12
|
|
1309
|
-
| typeof iconName.X16
|
|
1310
|
-
| typeof iconName.X24
|
|
1311
|
-
| typeof iconName.XCircle16
|
|
1312
|
-
| typeof iconName.XCircle24
|
|
1313
|
-
| typeof iconName.XCircleFill12
|
|
1314
|
-
| typeof iconName.XCircleFill16
|
|
1315
|
-
| typeof iconName.XCircleFill24
|
|
1316
|
-
| typeof iconName.Zap16
|
|
1317
|
-
| typeof iconName.Zap24
|
|
1318
|
-
| typeof iconName.ZoomIn16
|
|
1319
|
-
| typeof iconName.ZoomIn24
|
|
1320
|
-
| typeof iconName.ZoomOut16
|
|
1321
|
-
| typeof iconName.ZoomOut24
|
|
1322
|
-
|
|
1323
|
-
export interface IconProps {
|
|
1324
|
-
className?: string
|
|
1325
|
-
ariaLabel?: string
|
|
1326
|
-
icon: IconNameType
|
|
1327
|
-
height?: number
|
|
1328
|
-
width?: number
|
|
1329
|
-
size?: typeof iconSize.small | typeof iconSize.medium | typeof iconSize.large
|
|
1330
|
-
fill?: string
|
|
1331
|
-
verticalAlign?:
|
|
1332
|
-
| typeof iconAlign.middle
|
|
1333
|
-
| typeof iconAlign.textBottom
|
|
1334
|
-
| typeof iconAlign.textTop
|
|
1335
|
-
| typeof iconAlign.top
|
|
1336
|
-
| typeof iconAlign.unset
|
|
1337
|
-
}
|