@instructure/ui-icons 8.13.1-snapshot.9 → 8.14.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/CHANGELOG.md +6 -0
- package/es/IconArrowDoubleEndLine.js +2 -1
- package/es/IconArrowDoubleEndSolid.js +2 -1
- package/es/IconArrowDoubleStartLine.js +2 -1
- package/es/IconArrowDoubleStartSolid.js +2 -1
- package/es/font/Line/InstructureIcons-Line.css +8 -0
- package/es/font/Line/InstructureIcons-Line.eot +0 -0
- package/es/font/Line/InstructureIcons-Line.ttf +0 -0
- package/es/font/Line/InstructureIcons-Line.woff +0 -0
- package/es/font/Line/InstructureIcons-Line.woff2 +0 -0
- package/es/font/Line/InstructureIcons-Line_icon-map.scss +2 -2
- package/es/font/Solid/InstructureIcons-Solid.css +8 -0
- package/es/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/es/font/Solid/InstructureIcons-Solid.ttf +0 -0
- package/es/font/Solid/InstructureIcons-Solid.woff +0 -0
- package/es/font/Solid/InstructureIcons-Solid.woff2 +0 -0
- package/es/font/Solid/InstructureIcons-Solid_icon-map.scss +2 -2
- package/es/font/index.js +4 -4
- package/es/index.js +126 -126
- package/lib/IconArrowDoubleEndLine.js +2 -1
- package/lib/IconArrowDoubleEndSolid.js +2 -1
- package/lib/IconArrowDoubleStartLine.js +2 -1
- package/lib/IconArrowDoubleStartSolid.js +2 -1
- package/lib/font/Line/InstructureIcons-Line.css +8 -0
- package/lib/font/Line/InstructureIcons-Line.eot +0 -0
- package/lib/font/Line/InstructureIcons-Line.ttf +0 -0
- package/lib/font/Line/InstructureIcons-Line.woff +0 -0
- package/lib/font/Line/InstructureIcons-Line.woff2 +0 -0
- package/lib/font/Line/InstructureIcons-Line_icon-map.scss +2 -2
- package/lib/font/Solid/InstructureIcons-Solid.css +8 -0
- package/lib/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/lib/font/Solid/InstructureIcons-Solid.ttf +0 -0
- package/lib/font/Solid/InstructureIcons-Solid.woff +0 -0
- package/lib/font/Solid/InstructureIcons-Solid.woff2 +0 -0
- package/lib/font/Solid/InstructureIcons-Solid_icon-map.scss +2 -2
- package/lib/font/index.js +4 -4
- package/lib/index.js +127 -127
- package/package.json +7 -7
- package/tsconfig.build.json +10 -3
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/IconArrowDoubleEndLine.d.ts.map +1 -1
- package/types/IconArrowDoubleEndSolid.d.ts.map +1 -1
- package/types/IconArrowDoubleStartLine.d.ts.map +1 -1
- package/types/IconArrowDoubleStartSolid.d.ts.map +1 -1
- package/types/index.d.ts +126 -126
- package/types/index.d.ts.map +1 -1
- package/LICENSE.md +0 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [8.14.0](https://github.com/instructure/instructure-ui/compare/v8.13.0...v8.14.0) (2021-12-16)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **ui-icons:** make `arrow-double-end` and `arrow-double-start` icons to be bidirectional ([7f86f28](https://github.com/instructure/instructure-ui/commit/7f86f28942ab56c7d2167bb4fb65502fc0a74d48))
|
|
11
|
+
|
|
6
12
|
# [8.13.0](https://github.com/instructure/instructure-ui/compare/v8.12.0...v8.13.0) (2021-12-01)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @instructure/ui-icons
|
|
@@ -22,7 +22,8 @@ class IconArrowDoubleEndLine extends Component {
|
|
|
22
22
|
return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, {
|
|
23
23
|
name: "IconArrowDoubleEnd",
|
|
24
24
|
viewBox: "0 0 1920 1920",
|
|
25
|
-
elementRef: this.handleRef
|
|
25
|
+
elementRef: this.handleRef,
|
|
26
|
+
bidirectional: true
|
|
26
27
|
}), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
27
28
|
fillRule: "evenodd"
|
|
28
29
|
}, /*#__PURE__*/React.createElement("path", {
|
|
@@ -22,7 +22,8 @@ class IconArrowDoubleEndSolid extends Component {
|
|
|
22
22
|
return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, {
|
|
23
23
|
name: "IconArrowDoubleEnd",
|
|
24
24
|
viewBox: "0 0 1920 1920",
|
|
25
|
-
elementRef: this.handleRef
|
|
25
|
+
elementRef: this.handleRef,
|
|
26
|
+
bidirectional: true
|
|
26
27
|
}), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
27
28
|
fillRule: "evenodd"
|
|
28
29
|
}, /*#__PURE__*/React.createElement("path", {
|
|
@@ -22,7 +22,8 @@ class IconArrowDoubleStartLine extends Component {
|
|
|
22
22
|
return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, {
|
|
23
23
|
name: "IconArrowDoubleStart",
|
|
24
24
|
viewBox: "0 0 1920 1920",
|
|
25
|
-
elementRef: this.handleRef
|
|
25
|
+
elementRef: this.handleRef,
|
|
26
|
+
bidirectional: true
|
|
26
27
|
}), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
27
28
|
fillRule: "evenodd"
|
|
28
29
|
}, /*#__PURE__*/React.createElement("path", {
|
|
@@ -22,7 +22,8 @@ class IconArrowDoubleStartSolid extends Component {
|
|
|
22
22
|
return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, {
|
|
23
23
|
name: "IconArrowDoubleStart",
|
|
24
24
|
viewBox: "0 0 1920 1920",
|
|
25
|
-
elementRef: this.handleRef
|
|
25
|
+
elementRef: this.handleRef,
|
|
26
|
+
bidirectional: true
|
|
26
27
|
}), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
27
28
|
fillRule: "evenodd"
|
|
28
29
|
}, /*#__PURE__*/React.createElement("path", {
|
|
@@ -135,11 +135,19 @@
|
|
|
135
135
|
content: "\EA10";
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
+
[dir="rtl"] .icon-arrow-double-end::before {
|
|
139
|
+
transform: scale3d(-1, 1, 1);
|
|
140
|
+
}
|
|
141
|
+
|
|
138
142
|
|
|
139
143
|
.icon-arrow-double-start::before {
|
|
140
144
|
content: "\EA11";
|
|
141
145
|
}
|
|
142
146
|
|
|
147
|
+
[dir="rtl"] .icon-arrow-double-start::before {
|
|
148
|
+
transform: scale3d(-1, 1, 1);
|
|
149
|
+
}
|
|
150
|
+
|
|
143
151
|
|
|
144
152
|
.icon-arrow-down::before {
|
|
145
153
|
content: "\EA12";
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -135,11 +135,19 @@
|
|
|
135
135
|
content: "\EA10";
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
+
[dir="rtl"] .icon-arrow-double-end::before {
|
|
139
|
+
transform: scale3d(-1, 1, 1);
|
|
140
|
+
}
|
|
141
|
+
|
|
138
142
|
|
|
139
143
|
.icon-arrow-double-start::before {
|
|
140
144
|
content: "\EA11";
|
|
141
145
|
}
|
|
142
146
|
|
|
147
|
+
[dir="rtl"] .icon-arrow-double-start::before {
|
|
148
|
+
transform: scale3d(-1, 1, 1);
|
|
149
|
+
}
|
|
150
|
+
|
|
143
151
|
|
|
144
152
|
.icon-arrow-down::before {
|
|
145
153
|
content: "\EA12";
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/es/font/index.js
CHANGED
|
@@ -305,7 +305,7 @@ export const IconArrowDoubleEndLine = {
|
|
|
305
305
|
"codepoint": "EA10",
|
|
306
306
|
"className": "icon-arrow-double-end",
|
|
307
307
|
"classes": ["icon-line", "icon-arrow-double-end"],
|
|
308
|
-
"bidirectional":
|
|
308
|
+
"bidirectional": true,
|
|
309
309
|
"deprecated": false
|
|
310
310
|
};
|
|
311
311
|
export const IconArrowDoubleEndSolid = {
|
|
@@ -315,7 +315,7 @@ export const IconArrowDoubleEndSolid = {
|
|
|
315
315
|
"codepoint": "EA10",
|
|
316
316
|
"className": "icon-arrow-double-end",
|
|
317
317
|
"classes": ["icon-solid", "icon-arrow-double-end"],
|
|
318
|
-
"bidirectional":
|
|
318
|
+
"bidirectional": true,
|
|
319
319
|
"deprecated": false
|
|
320
320
|
};
|
|
321
321
|
export const IconArrowDoubleStartLine = {
|
|
@@ -325,7 +325,7 @@ export const IconArrowDoubleStartLine = {
|
|
|
325
325
|
"codepoint": "EA11",
|
|
326
326
|
"className": "icon-arrow-double-start",
|
|
327
327
|
"classes": ["icon-line", "icon-arrow-double-start"],
|
|
328
|
-
"bidirectional":
|
|
328
|
+
"bidirectional": true,
|
|
329
329
|
"deprecated": false
|
|
330
330
|
};
|
|
331
331
|
export const IconArrowDoubleStartSolid = {
|
|
@@ -335,7 +335,7 @@ export const IconArrowDoubleStartSolid = {
|
|
|
335
335
|
"codepoint": "EA11",
|
|
336
336
|
"className": "icon-arrow-double-start",
|
|
337
337
|
"classes": ["icon-solid", "icon-arrow-double-start"],
|
|
338
|
-
"bidirectional":
|
|
338
|
+
"bidirectional": true,
|
|
339
339
|
"deprecated": false
|
|
340
340
|
};
|
|
341
341
|
export const IconArrowDownLine = {
|
package/es/index.js
CHANGED
|
@@ -96,258 +96,258 @@ export { IconCalendarAddLine } from './IconCalendarAddLine';
|
|
|
96
96
|
export { IconCalendarAddSolid } from './IconCalendarAddSolid';
|
|
97
97
|
export { IconCalendarClockLine } from './IconCalendarClockLine';
|
|
98
98
|
export { IconCalendarClockSolid } from './IconCalendarClockSolid';
|
|
99
|
-
export { IconCalendarDayLine } from './IconCalendarDayLine';
|
|
100
99
|
export { IconCalendarDaySolid } from './IconCalendarDaySolid';
|
|
101
|
-
export {
|
|
100
|
+
export { IconCalendarDayLine } from './IconCalendarDayLine';
|
|
102
101
|
export { IconCalendarDaysSolid } from './IconCalendarDaysSolid';
|
|
103
|
-
export {
|
|
102
|
+
export { IconCalendarDaysLine } from './IconCalendarDaysLine';
|
|
104
103
|
export { IconCalendarMonthSolid } from './IconCalendarMonthSolid';
|
|
105
|
-
export {
|
|
104
|
+
export { IconCalendarMonthLine } from './IconCalendarMonthLine';
|
|
106
105
|
export { IconCalendarReservedSolid } from './IconCalendarReservedSolid';
|
|
107
|
-
export {
|
|
106
|
+
export { IconCalendarReservedLine } from './IconCalendarReservedLine';
|
|
108
107
|
export { IconCertifiedSolid } from './IconCertifiedSolid';
|
|
109
|
-
export {
|
|
108
|
+
export { IconCertifiedLine } from './IconCertifiedLine';
|
|
110
109
|
export { IconChatSolid } from './IconChatSolid';
|
|
111
|
-
export {
|
|
110
|
+
export { IconChatLine } from './IconChatLine';
|
|
112
111
|
export { IconCheckDarkSolid } from './IconCheckDarkSolid';
|
|
113
|
-
export {
|
|
112
|
+
export { IconCheckDarkLine } from './IconCheckDarkLine';
|
|
114
113
|
export { IconCheckMarkIndeterminateSolid } from './IconCheckMarkIndeterminateSolid';
|
|
115
|
-
export {
|
|
114
|
+
export { IconCheckMarkIndeterminateLine } from './IconCheckMarkIndeterminateLine';
|
|
116
115
|
export { IconCheckMarkSolid } from './IconCheckMarkSolid';
|
|
117
|
-
export {
|
|
116
|
+
export { IconCheckMarkLine } from './IconCheckMarkLine';
|
|
118
117
|
export { IconCheckPlusSolid } from './IconCheckPlusSolid';
|
|
119
|
-
export {
|
|
118
|
+
export { IconCheckPlusLine } from './IconCheckPlusLine';
|
|
120
119
|
export { IconCheckSolid } from './IconCheckSolid';
|
|
121
|
-
export {
|
|
120
|
+
export { IconCheckLine } from './IconCheckLine';
|
|
122
121
|
export { IconCircleArrowDownSolid } from './IconCircleArrowDownSolid';
|
|
123
|
-
export {
|
|
122
|
+
export { IconCircleArrowDownLine } from './IconCircleArrowDownLine';
|
|
124
123
|
export { IconCircleArrowUpSolid } from './IconCircleArrowUpSolid';
|
|
125
|
-
export {
|
|
124
|
+
export { IconCircleArrowUpLine } from './IconCircleArrowUpLine';
|
|
126
125
|
export { IconClearTextFormattingSolid } from './IconClearTextFormattingSolid';
|
|
127
|
-
export {
|
|
126
|
+
export { IconClearTextFormattingLine } from './IconClearTextFormattingLine';
|
|
128
127
|
export { IconClockSolid } from './IconClockSolid';
|
|
129
|
-
export {
|
|
128
|
+
export { IconClockLine } from './IconClockLine';
|
|
130
129
|
export { IconClosedCaptioningOffSolid } from './IconClosedCaptioningOffSolid';
|
|
131
|
-
export {
|
|
130
|
+
export { IconClosedCaptioningOffLine } from './IconClosedCaptioningOffLine';
|
|
132
131
|
export { IconClosedCaptioningOnSolid } from './IconClosedCaptioningOnSolid';
|
|
133
|
-
export {
|
|
132
|
+
export { IconClosedCaptioningOnLine } from './IconClosedCaptioningOnLine';
|
|
134
133
|
export { IconClosedCaptioningSolid } from './IconClosedCaptioningSolid';
|
|
135
|
-
export {
|
|
134
|
+
export { IconClosedCaptioningLine } from './IconClosedCaptioningLine';
|
|
136
135
|
export { IconCloudDownloadSolid } from './IconCloudDownloadSolid';
|
|
137
|
-
export {
|
|
136
|
+
export { IconCloudDownloadLine } from './IconCloudDownloadLine';
|
|
138
137
|
export { IconCloudLockSolid } from './IconCloudLockSolid';
|
|
139
|
-
export {
|
|
138
|
+
export { IconCloudLockLine } from './IconCloudLockLine';
|
|
140
139
|
export { IconCodeSolid } from './IconCodeSolid';
|
|
141
|
-
export {
|
|
140
|
+
export { IconCodeLine } from './IconCodeLine';
|
|
142
141
|
export { IconCollapseSolid } from './IconCollapseSolid';
|
|
143
|
-
export {
|
|
142
|
+
export { IconCollapseLine } from './IconCollapseLine';
|
|
144
143
|
export { IconCollectionSaveSolid } from './IconCollectionSaveSolid';
|
|
145
|
-
export {
|
|
144
|
+
export { IconCollectionSaveLine } from './IconCollectionSaveLine';
|
|
146
145
|
export { IconCollectionSolid } from './IconCollectionSolid';
|
|
147
|
-
export {
|
|
146
|
+
export { IconCollectionLine } from './IconCollectionLine';
|
|
148
147
|
export { IconCommentSolid } from './IconCommentSolid';
|
|
149
|
-
export {
|
|
148
|
+
export { IconCommentLine } from './IconCommentLine';
|
|
150
149
|
export { IconCommentsOffSolid } from './IconCommentsOffSolid';
|
|
151
|
-
export {
|
|
150
|
+
export { IconCommentsOffLine } from './IconCommentsOffLine';
|
|
152
151
|
export { IconCommentsOnSolid } from './IconCommentsOnSolid';
|
|
153
|
-
export {
|
|
152
|
+
export { IconCommentsOnLine } from './IconCommentsOnLine';
|
|
154
153
|
export { IconCommonsSolid } from './IconCommonsSolid';
|
|
155
|
-
export {
|
|
154
|
+
export { IconCommonsLine } from './IconCommonsLine';
|
|
156
155
|
export { IconCompassSolid } from './IconCompassSolid';
|
|
157
|
-
export {
|
|
156
|
+
export { IconCompassLine } from './IconCompassLine';
|
|
158
157
|
export { IconCompleteSolid } from './IconCompleteSolid';
|
|
159
|
-
export {
|
|
158
|
+
export { IconCompleteLine } from './IconCompleteLine';
|
|
160
159
|
export { IconComposeSolid } from './IconComposeSolid';
|
|
161
|
-
export {
|
|
160
|
+
export { IconComposeLine } from './IconComposeLine';
|
|
162
161
|
export { IconCopyCourseSolid } from './IconCopyCourseSolid';
|
|
163
|
-
export {
|
|
162
|
+
export { IconCopyCourseLine } from './IconCopyCourseLine';
|
|
164
163
|
export { IconCopySolid } from './IconCopySolid';
|
|
165
|
-
export {
|
|
164
|
+
export { IconCopyLine } from './IconCopyLine';
|
|
166
165
|
export { IconCoursesSolid } from './IconCoursesSolid';
|
|
167
|
-
export {
|
|
166
|
+
export { IconCoursesLine } from './IconCoursesLine';
|
|
168
167
|
export { IconCropSolid } from './IconCropSolid';
|
|
169
|
-
export {
|
|
168
|
+
export { IconCropLine } from './IconCropLine';
|
|
170
169
|
export { IconDashboardSolid } from './IconDashboardSolid';
|
|
171
|
-
export {
|
|
170
|
+
export { IconDashboardLine } from './IconDashboardLine';
|
|
172
171
|
export { IconDeactivateUserSolid } from './IconDeactivateUserSolid';
|
|
173
|
-
export {
|
|
172
|
+
export { IconDeactivateUserLine } from './IconDeactivateUserLine';
|
|
174
173
|
export { IconDiscussionCheckSolid } from './IconDiscussionCheckSolid';
|
|
175
|
-
export {
|
|
174
|
+
export { IconDiscussionCheckLine } from './IconDiscussionCheckLine';
|
|
176
175
|
export { IconDiscussionNewSolid } from './IconDiscussionNewSolid';
|
|
177
|
-
export {
|
|
176
|
+
export { IconDiscussionNewLine } from './IconDiscussionNewLine';
|
|
178
177
|
export { IconDiscussionReply2Solid } from './IconDiscussionReply2Solid';
|
|
179
|
-
export {
|
|
178
|
+
export { IconDiscussionReply2Line } from './IconDiscussionReply2Line';
|
|
180
179
|
export { IconDiscussionReplyDarkSolid } from './IconDiscussionReplyDarkSolid';
|
|
181
|
-
export {
|
|
180
|
+
export { IconDiscussionReplyDarkLine } from './IconDiscussionReplyDarkLine';
|
|
182
181
|
export { IconDiscussionReplySolid } from './IconDiscussionReplySolid';
|
|
183
|
-
export {
|
|
182
|
+
export { IconDiscussionReplyLine } from './IconDiscussionReplyLine';
|
|
184
183
|
export { IconDiscussionSearchSolid } from './IconDiscussionSearchSolid';
|
|
185
|
-
export {
|
|
184
|
+
export { IconDiscussionSearchLine } from './IconDiscussionSearchLine';
|
|
186
185
|
export { IconDiscussionXSolid } from './IconDiscussionXSolid';
|
|
187
|
-
export {
|
|
186
|
+
export { IconDiscussionXLine } from './IconDiscussionXLine';
|
|
188
187
|
export { IconDiscussionSolid } from './IconDiscussionSolid';
|
|
189
|
-
export {
|
|
188
|
+
export { IconDiscussionLine } from './IconDiscussionLine';
|
|
190
189
|
export { IconDocumentSolid } from './IconDocumentSolid';
|
|
191
|
-
export {
|
|
190
|
+
export { IconDocumentLine } from './IconDocumentLine';
|
|
192
191
|
export { IconDownloadSolid } from './IconDownloadSolid';
|
|
193
|
-
export {
|
|
192
|
+
export { IconDownloadLine } from './IconDownloadLine';
|
|
194
193
|
export { IconDragHandleSolid } from './IconDragHandleSolid';
|
|
195
|
-
export {
|
|
194
|
+
export { IconDragHandleLine } from './IconDragHandleLine';
|
|
196
195
|
export { IconDropDownSolid } from './IconDropDownSolid';
|
|
197
|
-
export {
|
|
196
|
+
export { IconDropDownLine } from './IconDropDownLine';
|
|
198
197
|
export { IconDuplicateSolid } from './IconDuplicateSolid';
|
|
199
|
-
export {
|
|
198
|
+
export { IconDuplicateLine } from './IconDuplicateLine';
|
|
200
199
|
export { IconEditSolid } from './IconEditSolid';
|
|
201
|
-
export {
|
|
200
|
+
export { IconEditLine } from './IconEditLine';
|
|
202
201
|
export { IconEducatorsSolid } from './IconEducatorsSolid';
|
|
203
|
-
export {
|
|
202
|
+
export { IconEducatorsLine } from './IconEducatorsLine';
|
|
204
203
|
export { IconEmailSolid } from './IconEmailSolid';
|
|
205
|
-
export {
|
|
204
|
+
export { IconEmailLine } from './IconEmailLine';
|
|
206
205
|
export { IconEmptySolid } from './IconEmptySolid';
|
|
207
|
-
export {
|
|
206
|
+
export { IconEmptyLine } from './IconEmptyLine';
|
|
208
207
|
export { IconEndSolid } from './IconEndSolid';
|
|
209
|
-
export {
|
|
208
|
+
export { IconEndLine } from './IconEndLine';
|
|
210
209
|
export { IconEportfolioSolid } from './IconEportfolioSolid';
|
|
211
|
-
export {
|
|
210
|
+
export { IconEportfolioLine } from './IconEportfolioLine';
|
|
212
211
|
export { IconEquationSolid } from './IconEquationSolid';
|
|
213
|
-
export {
|
|
212
|
+
export { IconEquationLine } from './IconEquationLine';
|
|
214
213
|
export { IconEquellaSolid } from './IconEquellaSolid';
|
|
215
|
-
export {
|
|
214
|
+
export { IconEquellaLine } from './IconEquellaLine';
|
|
216
215
|
export { IconEssaySolid } from './IconEssaySolid';
|
|
217
|
-
export {
|
|
216
|
+
export { IconEssayLine } from './IconEssayLine';
|
|
218
217
|
export { IconExitFullScreenSolid } from './IconExitFullScreenSolid';
|
|
219
|
-
export {
|
|
218
|
+
export { IconExitFullScreenLine } from './IconExitFullScreenLine';
|
|
220
219
|
export { IconExpandItemsSolid } from './IconExpandItemsSolid';
|
|
221
|
-
export {
|
|
220
|
+
export { IconExpandItemsLine } from './IconExpandItemsLine';
|
|
222
221
|
export { IconExpandLeftSolid } from './IconExpandLeftSolid';
|
|
223
|
-
export {
|
|
222
|
+
export { IconExpandLeftLine } from './IconExpandLeftLine';
|
|
224
223
|
export { IconExpandStartSolid } from './IconExpandStartSolid';
|
|
225
|
-
export {
|
|
224
|
+
export { IconExpandStartLine } from './IconExpandStartLine';
|
|
226
225
|
export { IconExpandSolid } from './IconExpandSolid';
|
|
227
|
-
export {
|
|
226
|
+
export { IconExpandLine } from './IconExpandLine';
|
|
228
227
|
export { IconExportContentSolid } from './IconExportContentSolid';
|
|
229
|
-
export {
|
|
228
|
+
export { IconExportContentLine } from './IconExportContentLine';
|
|
230
229
|
export { IconExportSolid } from './IconExportSolid';
|
|
231
|
-
export {
|
|
230
|
+
export { IconExportLine } from './IconExportLine';
|
|
232
231
|
export { IconExternalLinkSolid } from './IconExternalLinkSolid';
|
|
233
|
-
export {
|
|
232
|
+
export { IconExternalLinkLine } from './IconExternalLinkLine';
|
|
234
233
|
export { IconEyeSolid } from './IconEyeSolid';
|
|
235
|
-
export {
|
|
234
|
+
export { IconEyeLine } from './IconEyeLine';
|
|
236
235
|
export { IconFacebookBoxedSolid } from './IconFacebookBoxedSolid';
|
|
237
|
-
export {
|
|
236
|
+
export { IconFacebookBoxedLine } from './IconFacebookBoxedLine';
|
|
238
237
|
export { IconFacebookSolid } from './IconFacebookSolid';
|
|
239
|
-
export {
|
|
238
|
+
export { IconFacebookLine } from './IconFacebookLine';
|
|
240
239
|
export { IconFastForwardSolid } from './IconFastForwardSolid';
|
|
241
|
-
export {
|
|
240
|
+
export { IconFastForwardLine } from './IconFastForwardLine';
|
|
242
241
|
export { IconFeedbackSolid } from './IconFeedbackSolid';
|
|
243
|
-
export {
|
|
242
|
+
export { IconFeedbackLine } from './IconFeedbackLine';
|
|
244
243
|
export { IconFileLockedSolid } from './IconFileLockedSolid';
|
|
245
|
-
export {
|
|
244
|
+
export { IconFileLockedLine } from './IconFileLockedLine';
|
|
246
245
|
export { IconFilesCopyrightSolid } from './IconFilesCopyrightSolid';
|
|
247
|
-
export {
|
|
246
|
+
export { IconFilesCopyrightLine } from './IconFilesCopyrightLine';
|
|
248
247
|
export { IconFilesCreativeCommonsSolid } from './IconFilesCreativeCommonsSolid';
|
|
249
|
-
export {
|
|
248
|
+
export { IconFilesCreativeCommonsLine } from './IconFilesCreativeCommonsLine';
|
|
250
249
|
export { IconFilesFairUseSolid } from './IconFilesFairUseSolid';
|
|
251
|
-
export {
|
|
250
|
+
export { IconFilesFairUseLine } from './IconFilesFairUseLine';
|
|
252
251
|
export { IconFilesObtainedPermissionSolid } from './IconFilesObtainedPermissionSolid';
|
|
253
|
-
export {
|
|
252
|
+
export { IconFilesObtainedPermissionLine } from './IconFilesObtainedPermissionLine';
|
|
254
253
|
export { IconFilesPublicDomainSolid } from './IconFilesPublicDomainSolid';
|
|
255
|
-
export {
|
|
254
|
+
export { IconFilesPublicDomainLine } from './IconFilesPublicDomainLine';
|
|
256
255
|
export { IconFilmstripSolid } from './IconFilmstripSolid';
|
|
257
|
-
export {
|
|
256
|
+
export { IconFilmstripLine } from './IconFilmstripLine';
|
|
258
257
|
export { IconFilterSolid } from './IconFilterSolid';
|
|
259
|
-
export {
|
|
258
|
+
export { IconFilterLine } from './IconFilterLine';
|
|
260
259
|
export { IconFlagSolid } from './IconFlagSolid';
|
|
261
|
-
export {
|
|
260
|
+
export { IconFlagLine } from './IconFlagLine';
|
|
262
261
|
export { IconFolderLockedSolid } from './IconFolderLockedSolid';
|
|
263
|
-
export {
|
|
262
|
+
export { IconFolderLockedLine } from './IconFolderLockedLine';
|
|
264
263
|
export { IconFolderSolid } from './IconFolderSolid';
|
|
265
|
-
export {
|
|
264
|
+
export { IconFolderLine } from './IconFolderLine';
|
|
266
265
|
export { IconForwardSolid } from './IconForwardSolid';
|
|
267
|
-
export {
|
|
266
|
+
export { IconForwardLine } from './IconForwardLine';
|
|
268
267
|
export { IconFullScreenSolid } from './IconFullScreenSolid';
|
|
269
|
-
export {
|
|
268
|
+
export { IconFullScreenLine } from './IconFullScreenLine';
|
|
270
269
|
export { IconGithubSolid } from './IconGithubSolid';
|
|
271
|
-
export {
|
|
270
|
+
export { IconGithubLine } from './IconGithubLine';
|
|
272
271
|
export { IconGradebookExportSolid } from './IconGradebookExportSolid';
|
|
273
|
-
export {
|
|
272
|
+
export { IconGradebookExportLine } from './IconGradebookExportLine';
|
|
274
273
|
export { IconGradebookImportSolid } from './IconGradebookImportSolid';
|
|
275
|
-
export {
|
|
274
|
+
export { IconGradebookImportLine } from './IconGradebookImportLine';
|
|
276
275
|
export { IconGradebookSolid } from './IconGradebookSolid';
|
|
277
|
-
export {
|
|
276
|
+
export { IconGradebookLine } from './IconGradebookLine';
|
|
278
277
|
export { IconGroupDarkNewSolid } from './IconGroupDarkNewSolid';
|
|
279
|
-
export {
|
|
278
|
+
export { IconGroupDarkNewLine } from './IconGroupDarkNewLine';
|
|
280
279
|
export { IconGroupNewSolid } from './IconGroupNewSolid';
|
|
281
|
-
export {
|
|
280
|
+
export { IconGroupNewLine } from './IconGroupNewLine';
|
|
282
281
|
export { IconGroupSolid } from './IconGroupSolid';
|
|
283
|
-
export {
|
|
282
|
+
export { IconGroupLine } from './IconGroupLine';
|
|
284
283
|
export { IconHamburgerSolid } from './IconHamburgerSolid';
|
|
285
|
-
export {
|
|
284
|
+
export { IconHamburgerLine } from './IconHamburgerLine';
|
|
286
285
|
export { IconHeartSolid } from './IconHeartSolid';
|
|
287
|
-
export {
|
|
286
|
+
export { IconHeartLine } from './IconHeartLine';
|
|
288
287
|
export { IconHighlighterSolid } from './IconHighlighterSolid';
|
|
289
|
-
export {
|
|
288
|
+
export { IconHighlighterLine } from './IconHighlighterLine';
|
|
290
289
|
export { IconHomeSolid } from './IconHomeSolid';
|
|
291
|
-
export {
|
|
290
|
+
export { IconHomeLine } from './IconHomeLine';
|
|
292
291
|
export { IconHourGlassSolid } from './IconHourGlassSolid';
|
|
293
|
-
export {
|
|
292
|
+
export { IconHourGlassLine } from './IconHourGlassLine';
|
|
294
293
|
export { IconImageSolid } from './IconImageSolid';
|
|
295
|
-
export {
|
|
294
|
+
export { IconImageLine } from './IconImageLine';
|
|
296
295
|
export { IconImmersiveReaderSolid } from './IconImmersiveReaderSolid';
|
|
297
|
-
export {
|
|
296
|
+
export { IconImmersiveReaderLine } from './IconImmersiveReaderLine';
|
|
298
297
|
export { IconImportContentSolid } from './IconImportContentSolid';
|
|
299
|
-
export {
|
|
298
|
+
export { IconImportContentLine } from './IconImportContentLine';
|
|
300
299
|
export { IconImportSolid } from './IconImportSolid';
|
|
301
|
-
export {
|
|
300
|
+
export { IconImportLine } from './IconImportLine';
|
|
302
301
|
export { IconImportantDatesSolid } from './IconImportantDatesSolid';
|
|
303
|
-
export {
|
|
302
|
+
export { IconImportantDatesLine } from './IconImportantDatesLine';
|
|
304
303
|
export { IconInboxSolid } from './IconInboxSolid';
|
|
305
|
-
export {
|
|
304
|
+
export { IconInboxLine } from './IconInboxLine';
|
|
306
305
|
export { IconIndent2Solid } from './IconIndent2Solid';
|
|
307
|
-
export {
|
|
306
|
+
export { IconIndent2Line } from './IconIndent2Line';
|
|
308
307
|
export { IconIndentSolid } from './IconIndentSolid';
|
|
309
|
-
export {
|
|
308
|
+
export { IconIndentLine } from './IconIndentLine';
|
|
310
309
|
export { IconInfoBorderlessSolid } from './IconInfoBorderlessSolid';
|
|
311
|
-
export {
|
|
310
|
+
export { IconInfoBorderlessLine } from './IconInfoBorderlessLine';
|
|
312
311
|
export { IconInfoSolid } from './IconInfoSolid';
|
|
313
|
-
export {
|
|
312
|
+
export { IconInfoLine } from './IconInfoLine';
|
|
314
313
|
export { IconInstructureSolid } from './IconInstructureSolid';
|
|
315
|
-
export {
|
|
314
|
+
export { IconInstructureLine } from './IconInstructureLine';
|
|
316
315
|
export { IconIntegrationsSolid } from './IconIntegrationsSolid';
|
|
317
|
-
export {
|
|
316
|
+
export { IconIntegrationsLine } from './IconIntegrationsLine';
|
|
318
317
|
export { IconInvitationSolid } from './IconInvitationSolid';
|
|
319
|
-
export {
|
|
318
|
+
export { IconInvitationLine } from './IconInvitationLine';
|
|
320
319
|
export { IconItalicSolid } from './IconItalicSolid';
|
|
321
|
-
export {
|
|
320
|
+
export { IconItalicLine } from './IconItalicLine';
|
|
322
321
|
export { IconKeyboardShortcutsSolid } from './IconKeyboardShortcutsSolid';
|
|
323
|
-
export {
|
|
322
|
+
export { IconKeyboardShortcutsLine } from './IconKeyboardShortcutsLine';
|
|
324
323
|
export { IconLaunchSolid } from './IconLaunchSolid';
|
|
325
|
-
export {
|
|
324
|
+
export { IconLaunchLine } from './IconLaunchLine';
|
|
326
325
|
export { IconLifePreserverSolid } from './IconLifePreserverSolid';
|
|
327
|
-
export {
|
|
326
|
+
export { IconLifePreserverLine } from './IconLifePreserverLine';
|
|
328
327
|
export { IconLikeSolid } from './IconLikeSolid';
|
|
329
|
-
export {
|
|
328
|
+
export { IconLikeLine } from './IconLikeLine';
|
|
330
329
|
export { IconLineReaderSolid } from './IconLineReaderSolid';
|
|
331
|
-
export {
|
|
330
|
+
export { IconLineReaderLine } from './IconLineReaderLine';
|
|
332
331
|
export { IconLinkSolid } from './IconLinkSolid';
|
|
333
|
-
export {
|
|
332
|
+
export { IconLinkLine } from './IconLinkLine';
|
|
334
333
|
export { IconLinkedinSolid } from './IconLinkedinSolid';
|
|
335
|
-
export {
|
|
334
|
+
export { IconLinkedinLine } from './IconLinkedinLine';
|
|
336
335
|
export { IconLockSolid } from './IconLockSolid';
|
|
337
|
-
export {
|
|
336
|
+
export { IconLockLine } from './IconLockLine';
|
|
338
337
|
export { IconLtiSolid } from './IconLtiSolid';
|
|
339
|
-
export {
|
|
338
|
+
export { IconLtiLine } from './IconLtiLine';
|
|
340
339
|
export { IconMarkAsReadSolid } from './IconMarkAsReadSolid';
|
|
341
|
-
export {
|
|
340
|
+
export { IconMarkAsReadLine } from './IconMarkAsReadLine';
|
|
342
341
|
export { IconMarkerSolid } from './IconMarkerSolid';
|
|
343
|
-
export {
|
|
342
|
+
export { IconMarkerLine } from './IconMarkerLine';
|
|
344
343
|
export { IconMasqueradeSolid } from './IconMasqueradeSolid';
|
|
345
|
-
export {
|
|
344
|
+
export { IconMasqueradeLine } from './IconMasqueradeLine';
|
|
346
345
|
export { IconMasteryPathsSolid } from './IconMasteryPathsSolid';
|
|
347
|
-
export {
|
|
346
|
+
export { IconMasteryPathsLine } from './IconMasteryPathsLine';
|
|
348
347
|
export { IconMaterialsRequiredLightSolid } from './IconMaterialsRequiredLightSolid';
|
|
349
|
-
export {
|
|
348
|
+
export { IconMaterialsRequiredLightLine } from './IconMaterialsRequiredLightLine';
|
|
350
349
|
export { IconMaterialsRequiredSolid } from './IconMaterialsRequiredSolid';
|
|
350
|
+
export { IconMaterialsRequiredLine } from './IconMaterialsRequiredLine';
|
|
351
351
|
export { IconMatureLightSolid } from './IconMatureLightSolid';
|
|
352
352
|
export { IconMatureLightLine } from './IconMatureLightLine';
|
|
353
353
|
export { IconMatureSolid } from './IconMatureSolid';
|
|
@@ -32,7 +32,8 @@ class IconArrowDoubleEndLine extends _react.Component {
|
|
|
32
32
|
return /*#__PURE__*/_react.default.createElement(_SVGIcon.SVGIcon, Object.assign({}, this.props, {
|
|
33
33
|
name: "IconArrowDoubleEnd",
|
|
34
34
|
viewBox: "0 0 1920 1920",
|
|
35
|
-
elementRef: this.handleRef
|
|
35
|
+
elementRef: this.handleRef,
|
|
36
|
+
bidirectional: true
|
|
36
37
|
}), _g || (_g = /*#__PURE__*/_react.default.createElement("g", {
|
|
37
38
|
fillRule: "evenodd"
|
|
38
39
|
}, /*#__PURE__*/_react.default.createElement("path", {
|
|
@@ -32,7 +32,8 @@ class IconArrowDoubleEndSolid extends _react.Component {
|
|
|
32
32
|
return /*#__PURE__*/_react.default.createElement(_SVGIcon.SVGIcon, Object.assign({}, this.props, {
|
|
33
33
|
name: "IconArrowDoubleEnd",
|
|
34
34
|
viewBox: "0 0 1920 1920",
|
|
35
|
-
elementRef: this.handleRef
|
|
35
|
+
elementRef: this.handleRef,
|
|
36
|
+
bidirectional: true
|
|
36
37
|
}), _g || (_g = /*#__PURE__*/_react.default.createElement("g", {
|
|
37
38
|
fillRule: "evenodd"
|
|
38
39
|
}, /*#__PURE__*/_react.default.createElement("path", {
|
|
@@ -32,7 +32,8 @@ class IconArrowDoubleStartLine extends _react.Component {
|
|
|
32
32
|
return /*#__PURE__*/_react.default.createElement(_SVGIcon.SVGIcon, Object.assign({}, this.props, {
|
|
33
33
|
name: "IconArrowDoubleStart",
|
|
34
34
|
viewBox: "0 0 1920 1920",
|
|
35
|
-
elementRef: this.handleRef
|
|
35
|
+
elementRef: this.handleRef,
|
|
36
|
+
bidirectional: true
|
|
36
37
|
}), _g || (_g = /*#__PURE__*/_react.default.createElement("g", {
|
|
37
38
|
fillRule: "evenodd"
|
|
38
39
|
}, /*#__PURE__*/_react.default.createElement("path", {
|
|
@@ -32,7 +32,8 @@ class IconArrowDoubleStartSolid extends _react.Component {
|
|
|
32
32
|
return /*#__PURE__*/_react.default.createElement(_SVGIcon.SVGIcon, Object.assign({}, this.props, {
|
|
33
33
|
name: "IconArrowDoubleStart",
|
|
34
34
|
viewBox: "0 0 1920 1920",
|
|
35
|
-
elementRef: this.handleRef
|
|
35
|
+
elementRef: this.handleRef,
|
|
36
|
+
bidirectional: true
|
|
36
37
|
}), _g || (_g = /*#__PURE__*/_react.default.createElement("g", {
|
|
37
38
|
fillRule: "evenodd"
|
|
38
39
|
}, /*#__PURE__*/_react.default.createElement("path", {
|