@trilogy-ds/assets 0.0.6-alpha-prompt → 0.0.7-alpha-prompt
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/lib/iconNameEnum.d.ts +1 -0
- package/lib/iconNameEnum.js +1 -0
- package/lib/icons/all/arrow-high.svg +1 -0
- package/lib/iconsPath.d.ts +1 -0
- package/lib/iconsPath.js +1 -0
- package/package.json +1 -1
package/lib/iconNameEnum.d.ts
CHANGED
package/lib/iconNameEnum.js
CHANGED
|
@@ -5,6 +5,7 @@ export var IconName;
|
|
|
5
5
|
IconName["ARROW_LEFT"] = "tri-arrow-left";
|
|
6
6
|
IconName["ARROW_RIGHT"] = "tri-arrow-right";
|
|
7
7
|
IconName["ARROW_UP"] = "tri-arrow-up";
|
|
8
|
+
IconName["ARROW_HIGHT"] = "tri-arrow-high";
|
|
8
9
|
IconName["BELL"] = "tri-bell";
|
|
9
10
|
IconName["CALENDAR"] = "tri-calendar";
|
|
10
11
|
IconName["CHECK_CIRCLE"] = "tri-check-circle";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" fill="none" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 3a1 1 0 0 1 .707.293l7 7a1 1 0 0 1-1.414 1.414L13 6.414V20a1 1 0 1 1-2 0V6.414l-5.293 5.293a1 1 0 0 1-1.414-1.414l7-7A1 1 0 0 1 12 3" clip-rule="evenodd"/></svg>
|
package/lib/iconsPath.d.ts
CHANGED
package/lib/iconsPath.js
CHANGED
|
@@ -5,6 +5,7 @@ export const SVGicons = {
|
|
|
5
5
|
'arrow-left': require('@trilogy-ds/assets/lib/icons/all/arrow-left.svg'),
|
|
6
6
|
'arrow-right': require('@trilogy-ds/assets/lib/icons/all/arrow-right.svg'),
|
|
7
7
|
'arrow-up': require('@trilogy-ds/assets/lib/icons/all/arrow-up.svg'),
|
|
8
|
+
'arrow-high': require('@trilogy-ds/assets/lib/icons/all/arrow-high.svg'),
|
|
8
9
|
bell: require('@trilogy-ds/assets/lib/icons/all/bell.svg'),
|
|
9
10
|
calendar: require('@trilogy-ds/assets/lib/icons/all/calendar.svg'),
|
|
10
11
|
'check-circle': require('@trilogy-ds/assets/lib/icons/all/check-circle.svg'),
|