@pksep/yui 0.1.151 → 0.1.153

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.
@@ -110,5 +110,7 @@ export declare enum IconNameEnum {
110
110
  message = "message",
111
111
  darkThemeSwitcher = "dark-theme-switcher",
112
112
  qrCode = "qr-code",
113
- distrub = "distrub"
113
+ distrub = "distrub",
114
+ delivered = "delivered",
115
+ notDelivered = "notDelivered"
114
116
  }
@@ -1,3 +1,4 @@
1
+ import { IconNameEnum } from './enum/enum';
1
2
  import { IVectorIcon } from './interface/interface';
2
3
 
3
4
  export declare const alertTriangle: IVectorIcon;
@@ -118,3 +119,17 @@ export declare const keyboard: IVectorIcon;
118
119
  export declare const message: IVectorIcon;
119
120
  export declare const darkThemeSwitcher: IVectorIcon;
120
121
  export declare const qrCode: IVectorIcon;
122
+ export declare const notDelivered: {
123
+ name: IconNameEnum;
124
+ viewbox: string;
125
+ style: string;
126
+ fill: string;
127
+ path: string;
128
+ };
129
+ export declare const delivered: {
130
+ name: IconNameEnum;
131
+ viewbox: string;
132
+ style: string;
133
+ fill: string;
134
+ path: string;
135
+ };