@papillonarts/components 0.8.0 → 0.9.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.ts +1 -0
- package/build/primer/Alert/Alert.mdx +88 -0
- package/build/primer/Alert/Alert.prop.ts +45 -0
- package/build/primer/Alert/Alert.tsx +101 -0
- package/build/primer/Alert/__tests__/Alert.int.story.tsx +86 -0
- package/build/primer/Alert/__tests__/Alert.int.test.ts +37 -0
- package/build/primer/Alert/index.ts +2 -0
- package/build/primer/Blankslate/Blankslate.mdx +57 -0
- package/build/primer/Blankslate/Blankslate.prop.ts +26 -0
- package/build/primer/Blankslate/Blankslate.tsx +26 -0
- package/build/primer/Blankslate/__tests__/Blankslate.int.story.tsx +43 -0
- package/build/primer/Blankslate/__tests__/Blankslate.int.test.ts +29 -0
- package/build/primer/Blankslate/index.ts +2 -0
- package/build/primer/Breadcrumb/Breadcrumb.mdx +23 -0
- package/build/primer/Breadcrumb/Breadcrumb.prop.ts +28 -0
- package/build/primer/Breadcrumb/Breadcrumb.tsx +57 -0
- package/build/primer/Breadcrumb/__tests__/Breadcrumb.int.story.tsx +40 -0
- package/build/primer/Breadcrumb/__tests__/Breadcrumb.int.test.ts +40 -0
- package/build/primer/Breadcrumb/index.ts +2 -0
- package/build/primer/Button/Button.mdx +239 -0
- package/build/primer/Button/Button.prop.ts +77 -0
- package/build/primer/Button/Button.tsx +91 -0
- package/build/primer/Button/__tests__/Button.int.story.tsx +173 -0
- package/build/primer/Button/__tests__/Button.int.test.ts +191 -0
- package/build/primer/Button/index.ts +2 -0
- package/build/primer/Dropdown/Dropdown.mdx +19 -0
- package/build/primer/Dropdown/Dropdown.prop.ts +33 -0
- package/build/primer/Dropdown/Dropdown.tsx +102 -0
- package/build/primer/Dropdown/__tests__/Dropdown.int.story.tsx +43 -0
- package/build/primer/Dropdown/__tests__/Dropdown.int.test.ts +53 -0
- package/build/primer/Dropdown/index.ts +2 -0
- package/build/primer/ErrorBoundary/ErrorBoundary.prop.ts +5 -0
- package/build/primer/ErrorBoundary/ErrorBoundary.tsx +35 -0
- package/build/primer/ErrorBoundary/__tests__/ErrorBoundary.int.story.tsx +23 -0
- package/build/primer/ErrorBoundary/__tests__/ErrorBoundary.int.test.ts +9 -0
- package/build/primer/ErrorBoundary/index.ts +1 -0
- package/build/primer/Form/Checkbox/Checkbox.prop.ts +34 -0
- package/build/primer/Form/Checkbox/Checkbox.tsx +40 -0
- package/build/primer/Form/Checkbox/__tests__/Checkbox.int.story.tsx +50 -0
- package/build/primer/Form/Checkbox/__tests__/Checkbox.int.test.ts +23 -0
- package/build/primer/Form/Checkbox/index.ts +2 -0
- package/build/primer/Form/Input/Input.prop.ts +43 -0
- package/build/primer/Form/Input/Input.tsx +43 -0
- package/build/primer/Form/Input/__tests__/Input.int.story.tsx +54 -0
- package/build/primer/Form/Input/__tests__/Input.int.test.ts +15 -0
- package/build/primer/Form/Input/index.ts +2 -0
- package/build/primer/Form/Radio/Radio.prop.ts +30 -0
- package/build/primer/Form/Radio/Radio.tsx +38 -0
- package/build/primer/Form/Radio/__tests__/Radio.int.story.tsx +42 -0
- package/build/primer/Form/Radio/__tests__/Radio.int.test.ts +13 -0
- package/build/primer/Form/Radio/index.ts +2 -0
- package/build/primer/Form/index.ts +19 -0
- package/build/primer/Grid/DisplayTable/DisplayTable.prop.ts +21 -0
- package/build/primer/Grid/DisplayTable/DisplayTable.tsx +68 -0
- package/build/primer/Grid/DisplayTable/__tests__/DisplayTable.int.data.ts +289 -0
- package/build/primer/Grid/DisplayTable/__tests__/DisplayTable.int.story.tsx +27 -0
- package/build/primer/Grid/DisplayTable/__tests__/DisplayTable.int.test.ts +9 -0
- package/build/primer/Grid/DisplayTable/index.ts +1 -0
- package/build/primer/Grid/FlexGrid/FlexGrid.prop.ts +59 -0
- package/build/primer/Grid/FlexGrid/FlexGrid.tsx +274 -0
- package/build/primer/Grid/FlexGrid/__tests__/FlexGrid.int.data.ts +289 -0
- package/build/primer/Grid/FlexGrid/__tests__/FlexGrid.int.story.tsx +146 -0
- package/build/primer/Grid/FlexGrid/__tests__/FlexGrid.int.test.ts +46 -0
- package/build/primer/Grid/FlexGrid/index.ts +2 -0
- package/build/primer/Grid/index.ts +9 -0
- package/build/primer/Icon/Icon.part.ts +1289 -0
- package/build/primer/Icon/Icon.prop.ts +1337 -0
- package/build/primer/Icon/Icon.tsx +49 -0
- package/build/primer/Icon/__tests__/Icon.int.story.tsx +58 -0
- package/build/primer/Icon/__tests__/Icon.int.test.ts +13 -0
- package/build/primer/Icon/index.ts +2 -0
- package/build/primer/Label/Label.mdx +13 -0
- package/build/primer/Label/Label.prop.ts +31 -0
- package/build/primer/Label/Label.tsx +27 -0
- package/build/primer/Label/__tests__/Label.int.story.tsx +19 -0
- package/build/primer/Label/__tests__/Label.int.test.ts +9 -0
- package/build/primer/Label/index.ts +1 -0
- package/build/primer/Loader/Loader.mdx +31 -0
- package/build/primer/Loader/Loader.prop.ts +16 -0
- package/build/primer/Loader/Loader.tsx +43 -0
- package/build/primer/Loader/__tests__/Loader.int.story.tsx +34 -0
- package/build/primer/Loader/__tests__/Loader.int.test.ts +21 -0
- package/build/primer/Loader/index.ts +2 -0
- package/build/primer/Navigation/Menu/Menu.prop.ts +26 -0
- package/build/primer/Navigation/Menu/Menu.tsx +42 -0
- package/build/primer/Navigation/Menu/__tests__/Menu.int.story.tsx +55 -0
- package/build/primer/Navigation/Menu/__tests__/Menu.int.test.ts +57 -0
- package/build/primer/Navigation/Menu/index.ts +1 -0
- package/build/primer/Navigation/TabNav/TabNav.prop.ts +39 -0
- package/build/primer/Navigation/TabNav/TabNav.tsx +105 -0
- package/build/primer/Navigation/TabNav/__tests__/TabNav.int.story.tsx +168 -0
- package/build/primer/Navigation/TabNav/__tests__/TabNav.int.test.ts +55 -0
- package/build/primer/Navigation/TabNav/index.ts +2 -0
- package/build/primer/Navigation/UnderlineNav/UnderlineNav.prop.ts +41 -0
- package/build/primer/Navigation/UnderlineNav/UnderlineNav.tsx +106 -0
- package/build/primer/Navigation/UnderlineNav/__tests__/UnderlineNav.int.story.tsx +140 -0
- package/build/primer/Navigation/UnderlineNav/__tests__/UnderlineNav.int.test.ts +81 -0
- package/build/primer/Navigation/UnderlineNav/index.ts +2 -0
- package/build/primer/Navigation/index.ts +12 -0
- package/build/primer/Pagination/PreviousNext/PreviousNext.prop.ts +53 -0
- package/build/primer/Pagination/PreviousNext/PreviousNext.tsx +71 -0
- package/build/primer/Pagination/PreviousNext/__tests__/PreviousNext.int.story.tsx +48 -0
- package/build/primer/Pagination/PreviousNext/__tests__/PreviousNext.int.test.ts +15 -0
- package/build/primer/Pagination/PreviousNext/index.ts +2 -0
- package/build/primer/Pagination/index.ts +6 -0
- package/build/primer/Popover/Popover.mdx +190 -0
- package/build/primer/Popover/Popover.prop.ts +49 -0
- package/build/primer/Popover/Popover.tsx +80 -0
- package/build/primer/Popover/__tests__/Popover.int.story.tsx +216 -0
- package/build/primer/Popover/__tests__/Popover.int.test.ts +71 -0
- package/build/primer/Popover/index.ts +2 -0
- package/build/primer/Progress/Progress.mdx +31 -0
- package/build/primer/Progress/Progress.prop.ts +16 -0
- package/build/primer/Progress/Progress.tsx +19 -0
- package/build/primer/Progress/__tests__/Progress.int.story.tsx +28 -0
- package/build/primer/Progress/__tests__/Progress.int.test.ts +17 -0
- package/build/primer/Progress/index.ts +2 -0
- package/build/primer/Select/Select.mdx +19 -0
- package/build/primer/Select/Select.prop.ts +24 -0
- package/build/primer/Select/Select.tsx +58 -0
- package/build/primer/Select/__tests__/Select.int.story.tsx +38 -0
- package/build/primer/Select/__tests__/Select.int.test.ts +42 -0
- package/build/primer/Select/index.ts +2 -0
- package/build/primer/SelectMenu/SelectMenu.mdx +13 -0
- package/build/primer/SelectMenu/SelectMenu.prop.ts +25 -0
- package/build/primer/SelectMenu/SelectMenu.tsx +68 -0
- package/build/primer/SelectMenu/__tests__/SelectMenu.int.story.tsx +50 -0
- package/build/primer/SelectMenu/__tests__/SelectMenu.int.test.ts +56 -0
- package/build/primer/SelectMenu/index.ts +1 -0
- package/build/primer/Subhead/Subhead.mdx +20 -0
- package/build/primer/Subhead/Subhead.prop.ts +10 -0
- package/build/primer/Subhead/Subhead.tsx +15 -0
- package/build/primer/Subhead/__tests__/Subhead.int.story.tsx +23 -0
- package/build/primer/Subhead/__tests__/Subhead.int.test.ts +13 -0
- package/build/primer/Subhead/index.ts +1 -0
- package/build/primer/Toast/Toast.prop.ts +21 -0
- package/build/primer/Toast/Toast.tsx +38 -0
- package/build/primer/Toast/__tests__/Toast.int.story.tsx +50 -0
- package/build/primer/Toast/__tests__/Toast.int.test.ts +25 -0
- package/build/primer/Toast/index.ts +2 -0
- package/build/primer/index.ts +83 -0
- package/package.json +4 -4
- package/build/index.js +0 -12
- package/build/primer/Alert/Alert.js +0 -121
- package/build/primer/Alert/Alert.prop.js +0 -38
- package/build/primer/Alert/index.js +0 -19
- package/build/primer/Blankslate/Blankslate.js +0 -31
- package/build/primer/Blankslate/Blankslate.prop.js +0 -26
- package/build/primer/Blankslate/index.js +0 -19
- package/build/primer/Breadcrumb/Breadcrumb.js +0 -74
- package/build/primer/Breadcrumb/Breadcrumb.prop.js +0 -29
- package/build/primer/Breadcrumb/index.js +0 -19
- package/build/primer/Button/Button.js +0 -99
- package/build/primer/Button/Button.prop.js +0 -67
- package/build/primer/Button/index.js +0 -49
- package/build/primer/Dropdown/Dropdown.js +0 -104
- package/build/primer/Dropdown/Dropdown.prop.js +0 -34
- package/build/primer/Dropdown/index.js +0 -19
- package/build/primer/ErrorBoundary/ErrorBoundary.js +0 -59
- package/build/primer/ErrorBoundary/ErrorBoundary.prop.js +0 -11
- package/build/primer/ErrorBoundary/index.js +0 -12
- package/build/primer/Form/Checkbox/Checkbox.js +0 -49
- package/build/primer/Form/Checkbox/Checkbox.prop.js +0 -36
- package/build/primer/Form/Checkbox/index.js +0 -19
- package/build/primer/Form/Input/Input.js +0 -56
- package/build/primer/Form/Input/Input.prop.js +0 -43
- package/build/primer/Form/Input/index.js +0 -25
- package/build/primer/Form/Radio/Radio.js +0 -48
- package/build/primer/Form/Radio/Radio.prop.js +0 -34
- package/build/primer/Form/Radio/index.js +0 -19
- package/build/primer/Form/index.js +0 -24
- package/build/primer/Grid/DisplayTable/DisplayTable.js +0 -58
- package/build/primer/Grid/DisplayTable/DisplayTable.prop.js +0 -18
- package/build/primer/Grid/DisplayTable/index.js +0 -12
- package/build/primer/Grid/FlexGrid/FlexGrid.js +0 -244
- package/build/primer/Grid/FlexGrid/FlexGrid.prop.js +0 -49
- package/build/primer/Grid/FlexGrid/index.js +0 -25
- package/build/primer/Grid/index.js +0 -14
- package/build/primer/Icon/Icon.js +0 -70
- package/build/primer/Icon/Icon.part.js +0 -1295
- package/build/primer/Icon/Icon.prop.js +0 -689
- package/build/primer/Icon/index.js +0 -25
- package/build/primer/Label/Label.js +0 -31
- package/build/primer/Label/Label.prop.js +0 -34
- package/build/primer/Label/index.js +0 -12
- package/build/primer/Loader/Loader.js +0 -65
- package/build/primer/Loader/Loader.prop.js +0 -21
- package/build/primer/Loader/index.js +0 -19
- package/build/primer/Navigation/Menu/Menu.js +0 -70
- package/build/primer/Navigation/Menu/Menu.prop.js +0 -28
- package/build/primer/Navigation/Menu/index.js +0 -12
- package/build/primer/Navigation/TabNav/TabNav.js +0 -125
- package/build/primer/Navigation/TabNav/TabNav.prop.js +0 -36
- package/build/primer/Navigation/TabNav/index.js +0 -19
- package/build/primer/Navigation/UnderlineNav/UnderlineNav.js +0 -121
- package/build/primer/Navigation/UnderlineNav/UnderlineNav.prop.js +0 -41
- package/build/primer/Navigation/UnderlineNav/index.js +0 -25
- package/build/primer/Navigation/index.js +0 -17
- package/build/primer/Pagination/PreviousNext/PreviousNext.js +0 -76
- package/build/primer/Pagination/PreviousNext/PreviousNext.prop.js +0 -56
- package/build/primer/Pagination/PreviousNext/index.js +0 -19
- package/build/primer/Pagination/index.js +0 -11
- package/build/primer/Popover/Popover.js +0 -63
- package/build/primer/Popover/Popover.prop.js +0 -41
- package/build/primer/Popover/index.js +0 -25
- package/build/primer/Progress/Progress.js +0 -31
- package/build/primer/Progress/Progress.prop.js +0 -21
- package/build/primer/Progress/index.js +0 -19
- package/build/primer/Select/Select.js +0 -66
- package/build/primer/Select/Select.prop.js +0 -27
- package/build/primer/Select/index.js +0 -19
- package/build/primer/SelectMenu/SelectMenu.js +0 -95
- package/build/primer/SelectMenu/SelectMenu.prop.js +0 -26
- package/build/primer/SelectMenu/index.js +0 -12
- package/build/primer/Subhead/Subhead.js +0 -27
- package/build/primer/Subhead/Subhead.prop.js +0 -16
- package/build/primer/Subhead/index.js +0 -12
- package/build/primer/Toast/Toast.js +0 -55
- package/build/primer/Toast/Toast.prop.js +0 -26
- package/build/primer/Toast/index.js +0 -19
- package/build/primer/index.js +0 -87
- /package/build/primer/Form/Checkbox/{Checkbox.md → Checkbox.mdx} +0 -0
- /package/build/primer/Form/Checkbox/__tests__/__snapshots__/{Checkbox.int.test.js.snap → Checkbox.int.test.ts.snap} +0 -0
- /package/build/primer/Form/Input/{Input.md → Input.mdx} +0 -0
- /package/build/primer/Form/Input/__tests__/__snapshots__/{Input.int.test.js.snap → Input.int.test.ts.snap} +0 -0
- /package/build/primer/Form/Radio/{Radio.md → Radio.mdx} +0 -0
- /package/build/primer/Form/Radio/__tests__/__snapshots__/{Radio.int.test.js.snap → Radio.int.test.ts.snap} +0 -0
- /package/build/primer/Grid/DisplayTable/{DisplayTable.md → DisplayTable.mdx} +0 -0
- /package/build/primer/Grid/DisplayTable/__tests__/__snapshots__/{DisplayTable.int.test.js.snap → DisplayTable.int.test.ts.snap} +0 -0
- /package/build/primer/Grid/FlexGrid/{FlexGrid.md → FlexGrid.mdx} +0 -0
- /package/build/primer/Grid/FlexGrid/__tests__/__snapshots__/{FlexGrid.int.test.js.snap → FlexGrid.int.test.ts.snap} +0 -0
- /package/build/primer/Navigation/Menu/{Menu.md → Menu.mdx} +0 -0
- /package/build/primer/Navigation/Menu/__tests__/__snapshots__/{Menu.int.test.js.snap → Menu.int.test.ts.snap} +0 -0
- /package/build/primer/Navigation/TabNav/{TabNav.md → TabNav.mdx} +0 -0
- /package/build/primer/Navigation/TabNav/__tests__/__snapshots__/{TabNav.int.test.js.snap → TabNav.int.test.ts.snap} +0 -0
- /package/build/primer/Navigation/UnderlineNav/{UnderlineNav.md → UnderlineNav.mdx} +0 -0
- /package/build/primer/Navigation/UnderlineNav/__tests__/__snapshots__/{UnderlineNav.int.test.js.snap → UnderlineNav.int.test.ts.snap} +0 -0
- /package/build/primer/Pagination/PreviousNext/{PreviousNext.md → PreviousNext.mdx} +0 -0
- /package/build/primer/Pagination/PreviousNext/__tests__/__snapshots__/{PreviousNext.int.test.js.snap → PreviousNext.int.test.ts.snap} +0 -0
|
@@ -1,689 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.propTypes = exports.iconSizeKeysDefault = exports.iconSizeKeys = exports.iconSize = exports.iconNameKeysDefault = exports.iconNameKeys = exports.iconName = exports.iconAlignKeysDefault = exports.iconAlignKeys = exports.iconAlign = exports.defaultProps = void 0;
|
|
7
|
-
var _propTypes = require("prop-types");
|
|
8
|
-
var iconName = exports.iconName = {
|
|
9
|
-
Accessibility16: 'Accessibility16',
|
|
10
|
-
Accessibility24: 'Accessibility24',
|
|
11
|
-
AccessibilityInset16: 'AccessibilityInset16',
|
|
12
|
-
AccessibilityInset24: 'AccessibilityInset24',
|
|
13
|
-
AIModel16: 'AIModel16',
|
|
14
|
-
AIModel24: 'AIModel24',
|
|
15
|
-
Alert16: 'Alert16',
|
|
16
|
-
Alert24: 'Alert24',
|
|
17
|
-
AlertFill12: 'AlertFill12',
|
|
18
|
-
AlertFill16: 'AlertFill16',
|
|
19
|
-
AlertFill24: 'AlertFill24',
|
|
20
|
-
Apps16: 'Apps16',
|
|
21
|
-
Apps24: 'Apps24',
|
|
22
|
-
Archive16: 'Archive16',
|
|
23
|
-
Archive24: 'Archive24',
|
|
24
|
-
ArrowBoth16: 'ArrowBoth16',
|
|
25
|
-
ArrowBoth24: 'ArrowBoth24',
|
|
26
|
-
ArrowDown16: 'ArrowDown16',
|
|
27
|
-
ArrowDown24: 'ArrowDown24',
|
|
28
|
-
ArrowDownLeft16: 'ArrowDownLeft16',
|
|
29
|
-
ArrowDownLeft24: 'ArrowDownLeft24',
|
|
30
|
-
ArrowDownRight16: 'ArrowDownRight16',
|
|
31
|
-
ArrowDownRight24: 'ArrowDownRight24',
|
|
32
|
-
ArrowLeft16: 'ArrowLeft16',
|
|
33
|
-
ArrowLeft24: 'ArrowLeft24',
|
|
34
|
-
ArrowRight16: 'ArrowRight16',
|
|
35
|
-
ArrowRight24: 'ArrowRight24',
|
|
36
|
-
ArrowSwitch16: 'ArrowSwitch16',
|
|
37
|
-
ArrowSwitch24: 'ArrowSwitch24',
|
|
38
|
-
ArrowUp16: 'ArrowUp16',
|
|
39
|
-
ArrowUp24: 'ArrowUp24',
|
|
40
|
-
ArrowUpLeft16: 'ArrowUpLeft16',
|
|
41
|
-
ArrowUpLeft24: 'ArrowUpLeft24',
|
|
42
|
-
ArrowUpRight16: 'ArrowUpRight16',
|
|
43
|
-
ArrowUpRight24: 'ArrowUpRight24',
|
|
44
|
-
Beaker16: 'Beaker16',
|
|
45
|
-
Beaker24: 'Beaker24',
|
|
46
|
-
Bell16: 'Bell16',
|
|
47
|
-
Bell24: 'Bell24',
|
|
48
|
-
BellFill16: 'BellFill16',
|
|
49
|
-
BellFill24: 'BellFill24',
|
|
50
|
-
BellSlash16: 'BellSlash16',
|
|
51
|
-
BellSlash24: 'BellSlash24',
|
|
52
|
-
Blocked16: 'Blocked16',
|
|
53
|
-
Blocked24: 'Blocked24',
|
|
54
|
-
Bold16: 'Bold16',
|
|
55
|
-
Bold24: 'Bold24',
|
|
56
|
-
Book16: 'Book16',
|
|
57
|
-
Book24: 'Book24',
|
|
58
|
-
Bookmark16: 'Bookmark16',
|
|
59
|
-
Bookmark24: 'Bookmark24',
|
|
60
|
-
BookmarkFill24: 'BookmarkFill24',
|
|
61
|
-
BookmarkFilled16: 'BookmarkFilled16',
|
|
62
|
-
BookmarkSlash16: 'BookmarkSlash16',
|
|
63
|
-
BookmarkSlash24: 'BookmarkSlash24',
|
|
64
|
-
BookmarkSlashFill16: 'BookmarkSlashFill16',
|
|
65
|
-
BookmarkSlashFill24: 'BookmarkSlashFill24',
|
|
66
|
-
Briefcase16: 'Briefcase16',
|
|
67
|
-
Briefcase24: 'Briefcase24',
|
|
68
|
-
Broadcast16: 'Broadcast16',
|
|
69
|
-
Broadcast24: 'Broadcast24',
|
|
70
|
-
Browser16: 'Browser16',
|
|
71
|
-
Browser24: 'Browser24',
|
|
72
|
-
Bug16: 'Bug16',
|
|
73
|
-
Bug24: 'Bug24',
|
|
74
|
-
Cache16: 'Cache16',
|
|
75
|
-
Cache24: 'Cache24',
|
|
76
|
-
Calendar16: 'Calendar16',
|
|
77
|
-
Calendar24: 'Calendar24',
|
|
78
|
-
Check16: 'Check16',
|
|
79
|
-
Check24: 'Check24',
|
|
80
|
-
CheckCircle16: 'CheckCircle16',
|
|
81
|
-
CheckCircle24: 'CheckCircle24',
|
|
82
|
-
CheckCircleFill12: 'CheckCircleFill12',
|
|
83
|
-
CheckCircleFill16: 'CheckCircleFill16',
|
|
84
|
-
CheckCircleFill24: 'CheckCircleFill24',
|
|
85
|
-
Checkbox16: 'Checkbox16',
|
|
86
|
-
Checkbox24: 'Checkbox24',
|
|
87
|
-
Checklist16: 'Checklist16',
|
|
88
|
-
Checklist24: 'Checklist24',
|
|
89
|
-
ChevronDown12: 'ChevronDown12',
|
|
90
|
-
ChevronDown16: 'ChevronDown16',
|
|
91
|
-
ChevronDown24: 'ChevronDown24',
|
|
92
|
-
ChevronLeft12: 'ChevronLeft12',
|
|
93
|
-
ChevronLeft16: 'ChevronLeft16',
|
|
94
|
-
ChevronLeft24: 'ChevronLeft24',
|
|
95
|
-
ChevronRight12: 'ChevronRight12',
|
|
96
|
-
ChevronRight16: 'ChevronRight16',
|
|
97
|
-
ChevronRight24: 'ChevronRight24',
|
|
98
|
-
ChevronUp12: 'ChevronUp12',
|
|
99
|
-
ChevronUp16: 'ChevronUp16',
|
|
100
|
-
ChevronUp24: 'ChevronUp24',
|
|
101
|
-
Circle16: 'Circle16',
|
|
102
|
-
Circle24: 'Circle24',
|
|
103
|
-
CircleSlash16: 'CircleSlash16',
|
|
104
|
-
CircleSlash24: 'CircleSlash24',
|
|
105
|
-
Clock16: 'Clock16',
|
|
106
|
-
Clock24: 'Clock24',
|
|
107
|
-
ClockFill16: 'ClockFill16',
|
|
108
|
-
ClockFill24: 'ClockFill24',
|
|
109
|
-
Cloud16: 'Cloud16',
|
|
110
|
-
Cloud24: 'Cloud24',
|
|
111
|
-
CloudOffline16: 'CloudOffline16',
|
|
112
|
-
CloudOffline24: 'CloudOffline24',
|
|
113
|
-
Code16: 'Code16',
|
|
114
|
-
Code24: 'Code24',
|
|
115
|
-
CodeOfConduct16: 'CodeOfConduct16',
|
|
116
|
-
CodeOfConduct24: 'CodeOfConduct24',
|
|
117
|
-
CodeReview16: 'CodeReview16',
|
|
118
|
-
CodeReview24: 'CodeReview24',
|
|
119
|
-
CodeSquare16: 'CodeSquare16',
|
|
120
|
-
CodeSquare24: 'CodeSquare24',
|
|
121
|
-
Codescan16: 'Codescan16',
|
|
122
|
-
Codescan24: 'Codescan24',
|
|
123
|
-
CodescanCheckmark16: 'CodescanCheckmark16',
|
|
124
|
-
CodescanCheckmark24: 'CodescanCheckmark24',
|
|
125
|
-
Codespaces16: 'Codespaces16',
|
|
126
|
-
Codespaces24: 'Codespaces24',
|
|
127
|
-
Columns16: 'Columns16',
|
|
128
|
-
Columns24: 'Columns24',
|
|
129
|
-
CommandPalette16: 'CommandPalette16',
|
|
130
|
-
CommandPalette24: 'CommandPalette24',
|
|
131
|
-
Comment16: 'Comment16',
|
|
132
|
-
Comment24: 'Comment24',
|
|
133
|
-
CommentDiscussion16: 'CommentDiscussion16',
|
|
134
|
-
CommentDiscussion24: 'CommentDiscussion24',
|
|
135
|
-
Container16: 'Container16',
|
|
136
|
-
Container24: 'Container24',
|
|
137
|
-
Copilot16: 'Copilot16',
|
|
138
|
-
Copilot24: 'Copilot24',
|
|
139
|
-
Copilot48: 'Copilot48',
|
|
140
|
-
Copilot96: 'Copilot96',
|
|
141
|
-
CopilotError16: 'CopilotError16',
|
|
142
|
-
CopilotWarning16: 'CopilotWarning16',
|
|
143
|
-
Copy16: 'Copy16',
|
|
144
|
-
Copy24: 'Copy24',
|
|
145
|
-
Cpu16: 'Cpu16',
|
|
146
|
-
Cpu24: 'Cpu24',
|
|
147
|
-
CreditCard16: 'CreditCard16',
|
|
148
|
-
CreditCard24: 'CreditCard24',
|
|
149
|
-
CrossReference16: 'CrossReference16',
|
|
150
|
-
CrossReference24: 'CrossReference24',
|
|
151
|
-
Dash16: 'Dash16',
|
|
152
|
-
Dash24: 'Dash24',
|
|
153
|
-
Database16: 'Database16',
|
|
154
|
-
Database24: 'Database24',
|
|
155
|
-
Dependabot16: 'Dependabot16',
|
|
156
|
-
Dependabot24: 'Dependabot24',
|
|
157
|
-
DesktopDownload16: 'DesktopDownload16',
|
|
158
|
-
DesktopDownload24: 'DesktopDownload24',
|
|
159
|
-
DeviceCamera16: 'DeviceCamera16',
|
|
160
|
-
DeviceCamera24: 'DeviceCamera24',
|
|
161
|
-
DeviceCameraVideo16: 'DeviceCameraVideo16',
|
|
162
|
-
DeviceCameraVideo24: 'DeviceCameraVideo24',
|
|
163
|
-
DeviceDesktop16: 'DeviceDesktop16',
|
|
164
|
-
DeviceDesktop24: 'DeviceDesktop24',
|
|
165
|
-
DeviceMobile16: 'DeviceMobile16',
|
|
166
|
-
DeviceMobile24: 'DeviceMobile24',
|
|
167
|
-
Devices16: 'Devices16',
|
|
168
|
-
Devices24: 'Devices24',
|
|
169
|
-
Diamond16: 'Diamond16',
|
|
170
|
-
Diamond24: 'Diamond24',
|
|
171
|
-
Diff16: 'Diff16',
|
|
172
|
-
Diff24: 'Diff24',
|
|
173
|
-
DiffAdded16: 'DiffAdded16',
|
|
174
|
-
DiffAdded24: 'DiffAdded24',
|
|
175
|
-
DiffIgnored16: 'DiffIgnored16',
|
|
176
|
-
DiffIgnored24: 'DiffIgnored24',
|
|
177
|
-
DiffModified16: 'DiffModified16',
|
|
178
|
-
DiffModified24: 'DiffModified24',
|
|
179
|
-
DiffRemoved16: 'DiffRemoved16',
|
|
180
|
-
DiffRemoved24: 'DiffRemoved24',
|
|
181
|
-
DiffRenamed16: 'DiffRenamed16',
|
|
182
|
-
DiffRenamed24: 'DiffRenamed24',
|
|
183
|
-
DiscussionClosed16: 'DiscussionClosed16',
|
|
184
|
-
DiscussionClosed24: 'DiscussionClosed24',
|
|
185
|
-
DiscussionDuplicate16: 'DiscussionDuplicate16',
|
|
186
|
-
DiscussionDuplicate24: 'DiscussionDuplicate24',
|
|
187
|
-
DiscussionOutdated16: 'DiscussionOutdated16',
|
|
188
|
-
DiscussionOutdated24: 'DiscussionOutdated24',
|
|
189
|
-
Dot16: 'Dot16',
|
|
190
|
-
Dot24: 'Dot24',
|
|
191
|
-
DotFill16: 'DotFill16',
|
|
192
|
-
DotFill24: 'DotFill24',
|
|
193
|
-
Download16: 'Download16',
|
|
194
|
-
Download24: 'Download24',
|
|
195
|
-
Duplicate16: 'Duplicate16',
|
|
196
|
-
Duplicate24: 'Duplicate24',
|
|
197
|
-
Ellipsis16: 'Ellipsis16',
|
|
198
|
-
Ellipsis24: 'Ellipsis24',
|
|
199
|
-
Eye16: 'Eye16',
|
|
200
|
-
Eye24: 'Eye24',
|
|
201
|
-
EyeClosed16: 'EyeClosed16',
|
|
202
|
-
EyeClosed24: 'EyeClosed24',
|
|
203
|
-
FeedDiscussion16: 'FeedDiscussion16',
|
|
204
|
-
FeedForked16: 'FeedForked16',
|
|
205
|
-
FeedHeart16: 'FeedHeart16',
|
|
206
|
-
FeedIssueClosed16: 'FeedIssueClosed16',
|
|
207
|
-
FeedIssueDraft16: 'FeedIssueDraft16',
|
|
208
|
-
FeedIssueOpen16: 'FeedIssueOpen16',
|
|
209
|
-
FeedIssueReopen16: 'FeedIssueReopen16',
|
|
210
|
-
FeedMerged16: 'FeedMerged16',
|
|
211
|
-
FeedPerson16: 'FeedPerson16',
|
|
212
|
-
FeedPlus16: 'FeedPlus16',
|
|
213
|
-
FeedPublic16: 'FeedPublic16',
|
|
214
|
-
FeedPullRequestClosed16: 'FeedPullRequestClosed16',
|
|
215
|
-
FeedPullRequestDraft16: 'FeedPullRequestDraft16',
|
|
216
|
-
FeedPullRequestOpen16: 'FeedPullRequestOpen16',
|
|
217
|
-
FeedRepo16: 'FeedRepo16',
|
|
218
|
-
FeedRocket16: 'FeedRocket16',
|
|
219
|
-
FeedStar16: 'FeedStar16',
|
|
220
|
-
FeedTag16: 'FeedTag16',
|
|
221
|
-
FeedTrophy16: 'FeedTrophy16',
|
|
222
|
-
File16: 'File16',
|
|
223
|
-
File24: 'File24',
|
|
224
|
-
FileAdded16: 'FileAdded16',
|
|
225
|
-
FileAdded24: 'FileAdded24',
|
|
226
|
-
FileBadge16: 'FileBadge16',
|
|
227
|
-
FileBadge24: 'FileBadge24',
|
|
228
|
-
FileBinary16: 'FileBinary16',
|
|
229
|
-
FileBinary24: 'FileBinary24',
|
|
230
|
-
FileCode16: 'FileCode16',
|
|
231
|
-
FileCode24: 'FileCode24',
|
|
232
|
-
FileDiff16: 'FileDiff16',
|
|
233
|
-
FileDiff24: 'FileDiff24',
|
|
234
|
-
FileDirectory16: 'FileDirectory16',
|
|
235
|
-
FileDirectory24: 'FileDirectory24',
|
|
236
|
-
FileDirectoryFill16: 'FileDirectoryFill16',
|
|
237
|
-
FileDirectoryFill24: 'FileDirectoryFill24',
|
|
238
|
-
FileDirectoryOpenFill16: 'FileDirectoryOpenFill16',
|
|
239
|
-
FileDirectoryOpenFill24: 'FileDirectoryOpenFill24',
|
|
240
|
-
FileDirectorySymlink16: 'FileDirectorySymlink16',
|
|
241
|
-
FileDirectorySymlink24: 'FileDirectorySymlink24',
|
|
242
|
-
FileMedia16: 'FileMedia16',
|
|
243
|
-
FileMedia24: 'FileMedia24',
|
|
244
|
-
FileMoved16: 'FileMoved16',
|
|
245
|
-
FileMoved24: 'FileMoved24',
|
|
246
|
-
FileRemoved16: 'FileRemoved16',
|
|
247
|
-
FileRemoved24: 'FileRemoved24',
|
|
248
|
-
FileSubmodule16: 'FileSubmodule16',
|
|
249
|
-
FileSubmodule24: 'FileSubmodule24',
|
|
250
|
-
FileSymlinkFile16: 'FileSymlinkFile16',
|
|
251
|
-
FileSymlinkFile24: 'FileSymlinkFile24',
|
|
252
|
-
FileZip16: 'FileZip16',
|
|
253
|
-
FileZip24: 'FileZip24',
|
|
254
|
-
Filter16: 'Filter16',
|
|
255
|
-
Filter24: 'Filter24',
|
|
256
|
-
FilterRemove16: 'FilterRemove16',
|
|
257
|
-
FilterRemove24: 'FilterRemove24',
|
|
258
|
-
FiscalHost16: 'FiscalHost16',
|
|
259
|
-
FiscalHost24: 'FiscalHost24',
|
|
260
|
-
Flame16: 'Flame16',
|
|
261
|
-
Flame24: 'Flame24',
|
|
262
|
-
Fold16: 'Fold16',
|
|
263
|
-
Fold24: 'Fold24',
|
|
264
|
-
FoldDown16: 'FoldDown16',
|
|
265
|
-
FoldDown24: 'FoldDown24',
|
|
266
|
-
FoldUp16: 'FoldUp16',
|
|
267
|
-
FoldUp24: 'FoldUp24',
|
|
268
|
-
Gear16: 'Gear16',
|
|
269
|
-
Gear24: 'Gear24',
|
|
270
|
-
Gift16: 'Gift16',
|
|
271
|
-
Gift24: 'Gift24',
|
|
272
|
-
GitBranch16: 'GitBranch16',
|
|
273
|
-
GitBranch24: 'GitBranch24',
|
|
274
|
-
GitCommit16: 'GitCommit16',
|
|
275
|
-
GitCommit24: 'GitCommit24',
|
|
276
|
-
GitCompare16: 'GitCompare16',
|
|
277
|
-
GitCompare24: 'GitCompare24',
|
|
278
|
-
GitMerge16: 'GitMerge16',
|
|
279
|
-
GitMerge24: 'GitMerge24',
|
|
280
|
-
GitMergeQueue16: 'GitMergeQueue16',
|
|
281
|
-
GitMergeQueue24: 'GitMergeQueue24',
|
|
282
|
-
GitPullRequest16: 'GitPullRequest16',
|
|
283
|
-
GitPullRequest24: 'GitPullRequest24',
|
|
284
|
-
GitPullRequestClosed16: 'GitPullRequestClosed16',
|
|
285
|
-
GitPullRequestClosed24: 'GitPullRequestClosed24',
|
|
286
|
-
GitPullRequestDraft16: 'GitPullRequestDraft16',
|
|
287
|
-
GitPullRequestDraft24: 'GitPullRequestDraft24',
|
|
288
|
-
Globe16: 'Globe16',
|
|
289
|
-
Globe24: 'Globe24',
|
|
290
|
-
Goal16: 'Goal16',
|
|
291
|
-
Goal24: 'Goal24',
|
|
292
|
-
Grabber16: 'Grabber16',
|
|
293
|
-
Grabber24: 'Grabber24',
|
|
294
|
-
Graph16: 'Graph16',
|
|
295
|
-
Graph24: 'Graph24',
|
|
296
|
-
Hash16: 'Hash16',
|
|
297
|
-
Hash24: 'Hash24',
|
|
298
|
-
Heading16: 'Heading16',
|
|
299
|
-
Heading24: 'Heading24',
|
|
300
|
-
Heart16: 'Heart16',
|
|
301
|
-
Heart24: 'Heart24',
|
|
302
|
-
HeartFill16: 'HeartFill16',
|
|
303
|
-
HeartFill24: 'HeartFill24',
|
|
304
|
-
History16: 'History16',
|
|
305
|
-
History24: 'History24',
|
|
306
|
-
Home16: 'Home16',
|
|
307
|
-
Home24: 'Home24',
|
|
308
|
-
HomeFill16: 'HomeFill16',
|
|
309
|
-
HomeFill24: 'HomeFill24',
|
|
310
|
-
HorizontalRule16: 'HorizontalRule16',
|
|
311
|
-
HorizontalRule24: 'HorizontalRule24',
|
|
312
|
-
Hourglass16: 'Hourglass16',
|
|
313
|
-
Hourglass24: 'Hourglass24',
|
|
314
|
-
Hubot16: 'Hubot16',
|
|
315
|
-
Hubot24: 'Hubot24',
|
|
316
|
-
IdBadge16: 'IdBadge16',
|
|
317
|
-
IdBadge24: 'IdBadge24',
|
|
318
|
-
Image16: 'Image16',
|
|
319
|
-
Image24: 'Image24',
|
|
320
|
-
Inbox16: 'Inbox16',
|
|
321
|
-
Inbox24: 'Inbox24',
|
|
322
|
-
Infinity16: 'Infinity16',
|
|
323
|
-
Infinity24: 'Infinity24',
|
|
324
|
-
Info16: 'Info16',
|
|
325
|
-
Info24: 'Info24',
|
|
326
|
-
IssueClosed16: 'IssueClosed16',
|
|
327
|
-
IssueClosed24: 'IssueClosed24',
|
|
328
|
-
IssueDraft16: 'IssueDraft16',
|
|
329
|
-
IssueDraft24: 'IssueDraft24',
|
|
330
|
-
IssueOpened16: 'IssueOpened16',
|
|
331
|
-
IssueOpened24: 'IssueOpened24',
|
|
332
|
-
IssueReopened16: 'IssueReopened16',
|
|
333
|
-
IssueReopened24: 'IssueReopened24',
|
|
334
|
-
IssueTrackedBy16: 'IssueTrackedBy16',
|
|
335
|
-
IssueTrackedBy24: 'IssueTrackedBy24',
|
|
336
|
-
IssueTracks16: 'IssueTracks16',
|
|
337
|
-
IssueTracks24: 'IssueTracks24',
|
|
338
|
-
Italic16: 'Italic16',
|
|
339
|
-
Italic24: 'Italic24',
|
|
340
|
-
Iterations16: 'Iterations16',
|
|
341
|
-
Iterations24: 'Iterations24',
|
|
342
|
-
KebabHorizontal16: 'KebabHorizontal16',
|
|
343
|
-
KebabHorizontal24: 'KebabHorizontal24',
|
|
344
|
-
Key16: 'Key16',
|
|
345
|
-
Key24: 'Key24',
|
|
346
|
-
KeyAsterisk16: 'KeyAsterisk16',
|
|
347
|
-
KeyAsterisk24: 'KeyAsterisk24',
|
|
348
|
-
Law16: 'Law16',
|
|
349
|
-
Law24: 'Law24',
|
|
350
|
-
LightBulb16: 'LightBulb16',
|
|
351
|
-
LightBulb24: 'LightBulb24',
|
|
352
|
-
Link16: 'Link16',
|
|
353
|
-
Link24: 'Link24',
|
|
354
|
-
LinkExternal16: 'LinkExternal16',
|
|
355
|
-
LinkExternal24: 'LinkExternal24',
|
|
356
|
-
ListOrdered16: 'ListOrdered16',
|
|
357
|
-
ListOrdered24: 'ListOrdered24',
|
|
358
|
-
ListUnordered16: 'ListUnordered16',
|
|
359
|
-
ListUnordered24: 'ListUnordered24',
|
|
360
|
-
Location16: 'Location16',
|
|
361
|
-
Location24: 'Location24',
|
|
362
|
-
Lock16: 'Lock16',
|
|
363
|
-
Lock24: 'Lock24',
|
|
364
|
-
Log16: 'Log16',
|
|
365
|
-
Log24: 'Log24',
|
|
366
|
-
LogoGist16: 'LogoGist16',
|
|
367
|
-
LogoGist24: 'LogoGist24',
|
|
368
|
-
LogoGithub16: 'LogoGithub16',
|
|
369
|
-
LogoGithub24: 'LogoGithub24',
|
|
370
|
-
Mail16: 'Mail16',
|
|
371
|
-
Mail24: 'Mail24',
|
|
372
|
-
MarkGithub16: 'MarkGithub16',
|
|
373
|
-
MarkGithub24: 'MarkGithub24',
|
|
374
|
-
Markdown16: 'Markdown16',
|
|
375
|
-
Markdown24: 'Markdown24',
|
|
376
|
-
Megaphone16: 'Megaphone16',
|
|
377
|
-
Megaphone24: 'Megaphone24',
|
|
378
|
-
Mention16: 'Mention16',
|
|
379
|
-
Mention24: 'Mention24',
|
|
380
|
-
Meter16: 'Meter16',
|
|
381
|
-
Meter24: 'Meter24',
|
|
382
|
-
Milestone16: 'Milestone16',
|
|
383
|
-
Milestone24: 'Milestone24',
|
|
384
|
-
Mirror16: 'Mirror16',
|
|
385
|
-
Mirror24: 'Mirror24',
|
|
386
|
-
Moon16: 'Moon16',
|
|
387
|
-
Moon24: 'Moon24',
|
|
388
|
-
MortarBoard16: 'MortarBoard16',
|
|
389
|
-
MortarBoard24: 'MortarBoard24',
|
|
390
|
-
MovetoBottom16: 'MovetoBottom16',
|
|
391
|
-
MovetoBottom24: 'MovetoBottom24',
|
|
392
|
-
MovetoEnd16: 'MovetoEnd16',
|
|
393
|
-
MovetoEnd24: 'MovetoEnd24',
|
|
394
|
-
MovetoStart16: 'MovetoStart16',
|
|
395
|
-
MovetoStart24: 'MovetoStart24',
|
|
396
|
-
MovetoTop16: 'MovetoTop16',
|
|
397
|
-
MovetoTop24: 'MovetoTop24',
|
|
398
|
-
MultiSelect16: 'MultiSelect16',
|
|
399
|
-
MultiSelect24: 'MultiSelect24',
|
|
400
|
-
Mute16: 'Mute16',
|
|
401
|
-
Mute24: 'Mute24',
|
|
402
|
-
NoEntry16: 'NoEntry16',
|
|
403
|
-
NoEntry24: 'NoEntry24',
|
|
404
|
-
NoEntryFill12: 'NoEntryFill12',
|
|
405
|
-
NorthStar16: 'NorthStar16',
|
|
406
|
-
NorthStar24: 'NorthStar24',
|
|
407
|
-
Note16: 'Note16',
|
|
408
|
-
Note24: 'Note24',
|
|
409
|
-
Number16: 'Number16',
|
|
410
|
-
Number24: 'Number24',
|
|
411
|
-
Organization16: 'Organization16',
|
|
412
|
-
Organization24: 'Organization24',
|
|
413
|
-
Package16: 'Package16',
|
|
414
|
-
Package24: 'Package24',
|
|
415
|
-
PackageDependencies16: 'PackageDependencies16',
|
|
416
|
-
PackageDependencies24: 'PackageDependencies24',
|
|
417
|
-
PackageDependents16: 'PackageDependents16',
|
|
418
|
-
PackageDependents24: 'PackageDependents24',
|
|
419
|
-
Paintbrush16: 'Paintbrush16',
|
|
420
|
-
Paintbrush24: 'Paintbrush24',
|
|
421
|
-
PaperAirplane16: 'PaperAirplane16',
|
|
422
|
-
PaperAirplane24: 'PaperAirplane24',
|
|
423
|
-
Paperclip16: 'Paperclip16',
|
|
424
|
-
Paperclip24: 'Paperclip24',
|
|
425
|
-
PasskeyFill16: 'PasskeyFill16',
|
|
426
|
-
PasskeyFill24: 'PasskeyFill24',
|
|
427
|
-
Paste16: 'Paste16',
|
|
428
|
-
Paste24: 'Paste24',
|
|
429
|
-
Pencil16: 'Pencil16',
|
|
430
|
-
Pencil24: 'Pencil24',
|
|
431
|
-
People16: 'People16',
|
|
432
|
-
People24: 'People24',
|
|
433
|
-
Person16: 'Person16',
|
|
434
|
-
Person24: 'Person24',
|
|
435
|
-
PersonAdd16: 'PersonAdd16',
|
|
436
|
-
PersonAdd24: 'PersonAdd24',
|
|
437
|
-
PersonFill16: 'PersonFill16',
|
|
438
|
-
PersonFill24: 'PersonFill24',
|
|
439
|
-
Pin16: 'Pin16',
|
|
440
|
-
Pin24: 'Pin24',
|
|
441
|
-
PinSlash16: 'PinSlash16',
|
|
442
|
-
PinSlash24: 'PinSlash24',
|
|
443
|
-
PivotColumn16: 'PivotColumn16',
|
|
444
|
-
PivotColumn24: 'PivotColumn24',
|
|
445
|
-
Play16: 'Play16',
|
|
446
|
-
Play24: 'Play24',
|
|
447
|
-
Plug16: 'Plug16',
|
|
448
|
-
Plug24: 'Plug24',
|
|
449
|
-
Plus16: 'Plus16',
|
|
450
|
-
Plus24: 'Plus24',
|
|
451
|
-
PlusCircle16: 'PlusCircle16',
|
|
452
|
-
PlusCircle24: 'PlusCircle24',
|
|
453
|
-
Project16: 'Project16',
|
|
454
|
-
Project24: 'Project24',
|
|
455
|
-
ProjectRoadmap16: 'ProjectRoadmap16',
|
|
456
|
-
ProjectRoadmap24: 'ProjectRoadmap24',
|
|
457
|
-
ProjectSymlink16: 'ProjectSymlink16',
|
|
458
|
-
ProjectSymlink24: 'ProjectSymlink24',
|
|
459
|
-
ProjectTemplate16: 'ProjectTemplate16',
|
|
460
|
-
ProjectTemplate24: 'ProjectTemplate24',
|
|
461
|
-
Pulse16: 'Pulse16',
|
|
462
|
-
Pulse24: 'Pulse24',
|
|
463
|
-
Question16: 'Question16',
|
|
464
|
-
Question24: 'Question24',
|
|
465
|
-
Quote16: 'Quote16',
|
|
466
|
-
Quote24: 'Quote24',
|
|
467
|
-
Read16: 'Read16',
|
|
468
|
-
Read24: 'Read24',
|
|
469
|
-
Redo16: 'Redo16',
|
|
470
|
-
Redo24: 'Redo24',
|
|
471
|
-
RelFilePath16: 'RelFilePath16',
|
|
472
|
-
RelFilePath24: 'RelFilePath24',
|
|
473
|
-
Reply16: 'Reply16',
|
|
474
|
-
Reply24: 'Reply24',
|
|
475
|
-
Repo16: 'Repo16',
|
|
476
|
-
Repo24: 'Repo24',
|
|
477
|
-
RepoClone16: 'RepoClone16',
|
|
478
|
-
RepoClone24: 'RepoClone24',
|
|
479
|
-
RepoDelete24: 'RepoDelete24',
|
|
480
|
-
RepoDeleted16: 'RepoDeleted16',
|
|
481
|
-
RepoForked16: 'RepoForked16',
|
|
482
|
-
RepoForked24: 'RepoForked24',
|
|
483
|
-
RepoLocked16: 'RepoLocked16',
|
|
484
|
-
RepoLocked24: 'RepoLocked24',
|
|
485
|
-
RepoPull16: 'RepoPull16',
|
|
486
|
-
RepoPull24: 'RepoPull24',
|
|
487
|
-
RepoPush16: 'RepoPush16',
|
|
488
|
-
RepoPush24: 'RepoPush24',
|
|
489
|
-
RepoTemplate16: 'RepoTemplate16',
|
|
490
|
-
RepoTemplate24: 'RepoTemplate24',
|
|
491
|
-
Report16: 'Report16',
|
|
492
|
-
Report24: 'Report24',
|
|
493
|
-
Rocket16: 'Rocket16',
|
|
494
|
-
Rocket24: 'Rocket24',
|
|
495
|
-
Rows16: 'Rows16',
|
|
496
|
-
Rows24: 'Rows24',
|
|
497
|
-
Rss16: 'Rss16',
|
|
498
|
-
Rss24: 'Rss24',
|
|
499
|
-
Ruby16: 'Ruby16',
|
|
500
|
-
Ruby24: 'Ruby24',
|
|
501
|
-
ScreenFull16: 'ScreenFull16',
|
|
502
|
-
ScreenFull24: 'ScreenFull24',
|
|
503
|
-
ScreenNormal16: 'ScreenNormal16',
|
|
504
|
-
ScreenNormal24: 'ScreenNormal24',
|
|
505
|
-
Search16: 'Search16',
|
|
506
|
-
Search24: 'Search24',
|
|
507
|
-
Server16: 'Server16',
|
|
508
|
-
Server24: 'Server24',
|
|
509
|
-
Share16: 'Share16',
|
|
510
|
-
Share24: 'Share24',
|
|
511
|
-
ShareAndroid16: 'ShareAndroid16',
|
|
512
|
-
ShareAndroid24: 'ShareAndroid24',
|
|
513
|
-
Shield16: 'Shield16',
|
|
514
|
-
Shield24: 'Shield24',
|
|
515
|
-
ShieldCheck16: 'ShieldCheck16',
|
|
516
|
-
ShieldCheck24: 'ShieldCheck24',
|
|
517
|
-
ShieldLock16: 'ShieldLock16',
|
|
518
|
-
ShieldLock24: 'ShieldLock24',
|
|
519
|
-
ShieldSlash16: 'ShieldSlash16',
|
|
520
|
-
ShieldSlash24: 'ShieldSlash24',
|
|
521
|
-
ShieldX16: 'ShieldX16',
|
|
522
|
-
ShieldX24: 'ShieldX24',
|
|
523
|
-
SidebarCollapse16: 'SidebarCollapse16',
|
|
524
|
-
SidebarCollapse24: 'SidebarCollapse24',
|
|
525
|
-
SidebarExpand16: 'SidebarExpand16',
|
|
526
|
-
SidebarExpand24: 'SidebarExpand24',
|
|
527
|
-
SignIn16: 'SignIn16',
|
|
528
|
-
SignIn24: 'SignIn24',
|
|
529
|
-
SignOut16: 'SignOut16',
|
|
530
|
-
SignOut24: 'SignOut24',
|
|
531
|
-
SingleSelect16: 'SingleSelect16',
|
|
532
|
-
SingleSelect24: 'SingleSelect24',
|
|
533
|
-
Skip16: 'Skip16',
|
|
534
|
-
Skip24: 'Skip24',
|
|
535
|
-
SkipFill16: 'SkipFill16',
|
|
536
|
-
SkipFill24: 'SkipFill24',
|
|
537
|
-
Sliders16: 'Sliders16',
|
|
538
|
-
Sliders24: 'Sliders24',
|
|
539
|
-
Smiley16: 'Smiley16',
|
|
540
|
-
Smiley24: 'Smiley24',
|
|
541
|
-
SortAsc16: 'SortAsc16',
|
|
542
|
-
SortAsc24: 'SortAsc24',
|
|
543
|
-
SortDesc16: 'SortDesc16',
|
|
544
|
-
SortDesc24: 'SortDesc24',
|
|
545
|
-
SparkleFill16: 'SparkleFill16',
|
|
546
|
-
SparkleFill24: 'SparkleFill24',
|
|
547
|
-
Sponsortiers16: 'Sponsortiers16',
|
|
548
|
-
Sponsortiers24: 'Sponsortiers24',
|
|
549
|
-
Square16: 'Square16',
|
|
550
|
-
Square24: 'Square24',
|
|
551
|
-
SquareFill16: 'SquareFill16',
|
|
552
|
-
SquareFill24: 'SquareFill24',
|
|
553
|
-
Squirrel16: 'Squirrel16',
|
|
554
|
-
Squirrel24: 'Squirrel24',
|
|
555
|
-
Stack16: 'Stack16',
|
|
556
|
-
Stack24: 'Stack24',
|
|
557
|
-
Star16: 'Star16',
|
|
558
|
-
Star24: 'Star24',
|
|
559
|
-
StarFill16: 'StarFill16',
|
|
560
|
-
StarFill24: 'StarFill24',
|
|
561
|
-
Stop16: 'Stop16',
|
|
562
|
-
Stop24: 'Stop24',
|
|
563
|
-
Stopwatch16: 'Stopwatch16',
|
|
564
|
-
Stopwatch24: 'Stopwatch24',
|
|
565
|
-
Strikethrough16: 'Strikethrough16',
|
|
566
|
-
Strikethrough24: 'Strikethrough24',
|
|
567
|
-
Sun16: 'Sun16',
|
|
568
|
-
Sun24: 'Sun24',
|
|
569
|
-
Sync16: 'Sync16',
|
|
570
|
-
Sync24: 'Sync24',
|
|
571
|
-
Tab16: 'Tab16',
|
|
572
|
-
Tab24: 'Tab24',
|
|
573
|
-
TabExternal16: 'TabExternal16',
|
|
574
|
-
TabExternal24: 'TabExternal24',
|
|
575
|
-
Table16: 'Table16',
|
|
576
|
-
Table24: 'Table24',
|
|
577
|
-
Tag16: 'Tag16',
|
|
578
|
-
Tag24: 'Tag24',
|
|
579
|
-
Tasklist16: 'Tasklist16',
|
|
580
|
-
Tasklist24: 'Tasklist24',
|
|
581
|
-
Telescope16: 'Telescope16',
|
|
582
|
-
Telescope24: 'Telescope24',
|
|
583
|
-
TelescopeFill16: 'TelescopeFill16',
|
|
584
|
-
TelescopeFill24: 'TelescopeFill24',
|
|
585
|
-
Terminal16: 'Terminal16',
|
|
586
|
-
Terminal24: 'Terminal24',
|
|
587
|
-
ThreeBars16: 'ThreeBars16',
|
|
588
|
-
ThreeBars24: 'ThreeBars24',
|
|
589
|
-
Thumbsdown16: 'Thumbsdown16',
|
|
590
|
-
Thumbsdown24: 'Thumbsdown24',
|
|
591
|
-
Thumbsup16: 'Thumbsup16',
|
|
592
|
-
Thumbsup24: 'Thumbsup24',
|
|
593
|
-
Tools16: 'Tools16',
|
|
594
|
-
Tools24: 'Tools24',
|
|
595
|
-
TrackedByClosedCompleted16: 'TrackedByClosedCompleted16',
|
|
596
|
-
TrackedByClosedCompleted24: 'TrackedByClosedCompleted24',
|
|
597
|
-
TrackedByClosedNotPlanned16: 'TrackedByClosedNotPlanned16',
|
|
598
|
-
TrackedByClosedNotPlanned24: 'TrackedByClosedNotPlanned24',
|
|
599
|
-
Trash16: 'Trash16',
|
|
600
|
-
Trash24: 'Trash24',
|
|
601
|
-
TriangleDown16: 'TriangleDown16',
|
|
602
|
-
TriangleDown24: 'TriangleDown24',
|
|
603
|
-
TriangleLeft16: 'TriangleLeft16',
|
|
604
|
-
TriangleLeft24: 'TriangleLeft24',
|
|
605
|
-
TriangleRight16: 'TriangleRight16',
|
|
606
|
-
TriangleRight24: 'TriangleRight24',
|
|
607
|
-
TriangleUp16: 'TriangleUp16',
|
|
608
|
-
TriangleUp24: 'TriangleUp24',
|
|
609
|
-
Trophy16: 'Trophy16',
|
|
610
|
-
Trophy24: 'Trophy24',
|
|
611
|
-
Typography16: 'Typography16',
|
|
612
|
-
Typography24: 'Typography24',
|
|
613
|
-
Undo16: 'Undo16',
|
|
614
|
-
Undo24: 'Undo24',
|
|
615
|
-
Unfold16: 'Unfold16',
|
|
616
|
-
Unfold24: 'Unfold24',
|
|
617
|
-
Unlink16: 'Unlink16',
|
|
618
|
-
Unlink24: 'Unlink24',
|
|
619
|
-
Unlock16: 'Unlock16',
|
|
620
|
-
Unlock24: 'Unlock24',
|
|
621
|
-
Unmute16: 'Unmute16',
|
|
622
|
-
Unmute24: 'Unmute24',
|
|
623
|
-
Unread16: 'Unread16',
|
|
624
|
-
Unread24: 'Unread24',
|
|
625
|
-
Unverified16: 'Unverified16',
|
|
626
|
-
Unverified24: 'Unverified24',
|
|
627
|
-
Upload16: 'Upload16',
|
|
628
|
-
Upload24: 'Upload24',
|
|
629
|
-
Verified16: 'Verified16',
|
|
630
|
-
Verified24: 'Verified24',
|
|
631
|
-
Versions16: 'Versions16',
|
|
632
|
-
Versions24: 'Versions24',
|
|
633
|
-
Video16: 'Video16',
|
|
634
|
-
Video24: 'Video24',
|
|
635
|
-
Webhook16: 'Webhook16',
|
|
636
|
-
Workflow16: 'Workflow16',
|
|
637
|
-
Workflow24: 'Workflow24',
|
|
638
|
-
X12: 'X12',
|
|
639
|
-
X16: 'X16',
|
|
640
|
-
X24: 'X24',
|
|
641
|
-
XCircle16: 'XCircle16',
|
|
642
|
-
XCircle24: 'XCircle24',
|
|
643
|
-
XCircleFill12: 'XCircleFill12',
|
|
644
|
-
XCircleFill16: 'XCircleFill16',
|
|
645
|
-
XCircleFill24: 'XCircleFill24',
|
|
646
|
-
Zap16: 'Zap16',
|
|
647
|
-
Zap24: 'Zap24',
|
|
648
|
-
ZoomIn16: 'ZoomIn16',
|
|
649
|
-
ZoomIn24: 'ZoomIn24',
|
|
650
|
-
ZoomOut16: 'ZoomOut16',
|
|
651
|
-
ZoomOut24: 'ZoomOut24'
|
|
652
|
-
};
|
|
653
|
-
var iconSize = exports.iconSize = {
|
|
654
|
-
small: 16,
|
|
655
|
-
medium: 32,
|
|
656
|
-
large: 64
|
|
657
|
-
};
|
|
658
|
-
var iconAlign = exports.iconAlign = {
|
|
659
|
-
middle: 'middle',
|
|
660
|
-
'text-bottom': 'text-bottom',
|
|
661
|
-
'text-top': 'text-top',
|
|
662
|
-
top: 'top',
|
|
663
|
-
unset: 'unset'
|
|
664
|
-
};
|
|
665
|
-
var iconNameKeys = exports.iconNameKeys = Object.keys(iconName);
|
|
666
|
-
var iconNameKeysDefault = exports.iconNameKeysDefault = iconNameKeys[0];
|
|
667
|
-
var iconSizeKeys = exports.iconSizeKeys = Object.keys(iconSize);
|
|
668
|
-
var iconSizeKeysDefault = exports.iconSizeKeysDefault = iconSizeKeys[0];
|
|
669
|
-
var iconAlignKeys = exports.iconAlignKeys = Object.keys(iconAlign);
|
|
670
|
-
var iconAlignKeysDefault = exports.iconAlignKeysDefault = iconAlignKeys[0];
|
|
671
|
-
var propTypes = exports.propTypes = {
|
|
672
|
-
className: _propTypes.string,
|
|
673
|
-
ariaLabel: _propTypes.string,
|
|
674
|
-
icon: (0, _propTypes.oneOf)(iconNameKeys).isRequired,
|
|
675
|
-
height: _propTypes.number,
|
|
676
|
-
width: _propTypes.number,
|
|
677
|
-
size: (0, _propTypes.oneOfType)([_propTypes.number, (0, _propTypes.oneOf)(iconSizeKeys)]),
|
|
678
|
-
fill: _propTypes.string,
|
|
679
|
-
verticalAlign: (0, _propTypes.oneOf)(iconAlignKeys)
|
|
680
|
-
};
|
|
681
|
-
var defaultProps = exports.defaultProps = {
|
|
682
|
-
className: 'octicon',
|
|
683
|
-
ariaLabel: null,
|
|
684
|
-
height: null,
|
|
685
|
-
width: null,
|
|
686
|
-
size: 16,
|
|
687
|
-
fill: 'currentColor',
|
|
688
|
-
verticalAlign: 'text-bottom'
|
|
689
|
-
};
|