@instructure/ui-icons 7.9.0 → 7.13.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 +22 -0
- package/es/IconButtonAndIconMakerLine.js +49 -0
- package/es/IconButtonAndIconMakerSolid.js +42 -0
- package/es/IconImmersiveReaderLine.js +52 -0
- package/es/IconImmersiveReaderSolid.js +55 -0
- package/es/IconImportantDatesLine.js +48 -0
- package/es/IconImportantDatesSolid.js +43 -0
- package/es/IconSubtitlesLine.js +49 -0
- package/es/IconSubtitlesSolid.js +43 -0
- package/es/font/Line/InstructureIcons-Line.css +323 -303
- package/es/font/Line/InstructureIcons-Line.eot +0 -0
- package/es/font/Line/InstructureIcons-Line.svg +316 -304
- 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 +311 -303
- package/es/font/Solid/InstructureIcons-Solid.css +323 -303
- package/es/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/es/font/Solid/InstructureIcons-Solid.svg +316 -304
- 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 +311 -303
- package/es/font/index.js +686 -606
- package/es/index.js +8 -0
- package/es/svg/index.js +1 -1
- package/lib/IconButtonAndIconMakerLine.js +65 -0
- package/lib/IconButtonAndIconMakerSolid.js +58 -0
- package/lib/IconImmersiveReaderLine.js +68 -0
- package/lib/IconImmersiveReaderSolid.js +71 -0
- package/lib/IconImportantDatesLine.js +64 -0
- package/lib/IconImportantDatesSolid.js +59 -0
- package/lib/IconSubtitlesLine.js +65 -0
- package/lib/IconSubtitlesSolid.js +59 -0
- package/lib/font/Line/InstructureIcons-Line.css +323 -303
- package/lib/font/Line/InstructureIcons-Line.eot +0 -0
- package/lib/font/Line/InstructureIcons-Line.svg +316 -304
- 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 +311 -303
- package/lib/font/Solid/InstructureIcons-Solid.css +323 -303
- package/lib/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/lib/font/Solid/InstructureIcons-Solid.svg +316 -304
- 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 +311 -303
- package/lib/font/index.js +701 -613
- package/lib/index.js +64 -0
- package/lib/svg/index.js +1 -1
- package/package.json +4 -4
- package/svg/Line/button-and-icon-maker.svg +6 -0
- package/svg/Line/immersive-reader.svg +7 -0
- package/svg/Line/important-dates.svg +6 -0
- package/svg/Line/subtitles.svg +6 -0
- package/svg/Solid/button-and-icon-maker.svg +3 -0
- package/svg/Solid/immersive-reader.svg +8 -0
- package/svg/Solid/important-dates.svg +3 -0
- package/svg/Solid/subtitles.svg +3 -0
package/es/index.js
CHANGED
|
@@ -82,6 +82,8 @@ export { IconBulletListSquareLine } from "./IconBulletListSquareLine.js";
|
|
|
82
82
|
export { IconBulletListSquareSolid } from "./IconBulletListSquareSolid.js";
|
|
83
83
|
export { IconBulletListLine } from "./IconBulletListLine.js";
|
|
84
84
|
export { IconBulletListSolid } from "./IconBulletListSolid.js";
|
|
85
|
+
export { IconButtonAndIconMakerLine } from "./IconButtonAndIconMakerLine.js";
|
|
86
|
+
export { IconButtonAndIconMakerSolid } from "./IconButtonAndIconMakerSolid.js";
|
|
85
87
|
export { IconCalculatorDesmosLine } from "./IconCalculatorDesmosLine.js";
|
|
86
88
|
export { IconCalculatorDesmosSolid } from "./IconCalculatorDesmosSolid.js";
|
|
87
89
|
export { IconCalculatorLine } from "./IconCalculatorLine.js";
|
|
@@ -286,10 +288,14 @@ export { IconHourGlassLine } from "./IconHourGlassLine.js";
|
|
|
286
288
|
export { IconHourGlassSolid } from "./IconHourGlassSolid.js";
|
|
287
289
|
export { IconImageLine } from "./IconImageLine.js";
|
|
288
290
|
export { IconImageSolid } from "./IconImageSolid.js";
|
|
291
|
+
export { IconImmersiveReaderLine } from "./IconImmersiveReaderLine.js";
|
|
292
|
+
export { IconImmersiveReaderSolid } from "./IconImmersiveReaderSolid.js";
|
|
289
293
|
export { IconImportContentLine } from "./IconImportContentLine.js";
|
|
290
294
|
export { IconImportContentSolid } from "./IconImportContentSolid.js";
|
|
291
295
|
export { IconImportLine } from "./IconImportLine.js";
|
|
292
296
|
export { IconImportSolid } from "./IconImportSolid.js";
|
|
297
|
+
export { IconImportantDatesLine } from "./IconImportantDatesLine.js";
|
|
298
|
+
export { IconImportantDatesSolid } from "./IconImportantDatesSolid.js";
|
|
293
299
|
export { IconInboxLine } from "./IconInboxLine.js";
|
|
294
300
|
export { IconInboxSolid } from "./IconInboxSolid.js";
|
|
295
301
|
export { IconIndent2Line } from "./IconIndent2Line.js";
|
|
@@ -568,6 +574,8 @@ export { IconStudioLine } from "./IconStudioLine.js";
|
|
|
568
574
|
export { IconStudioSolid } from "./IconStudioSolid.js";
|
|
569
575
|
export { IconSubaccountsLine } from "./IconSubaccountsLine.js";
|
|
570
576
|
export { IconSubaccountsSolid } from "./IconSubaccountsSolid.js";
|
|
577
|
+
export { IconSubtitlesLine } from "./IconSubtitlesLine.js";
|
|
578
|
+
export { IconSubtitlesSolid } from "./IconSubtitlesSolid.js";
|
|
571
579
|
export { IconSyllabusLine } from "./IconSyllabusLine.js";
|
|
572
580
|
export { IconSyllabusSolid } from "./IconSyllabusSolid.js";
|
|
573
581
|
export { IconTableCellSelectAllLine } from "./IconTableCellSelectAllLine.js";
|