forstok-ui-lib 6.0.0 → 6.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "6.0.0",
3
+ "version": "6.0.2",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="auto" height="auto"><path fill="none" stroke="#7eb6ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 6L7 17l-5-5m20-2l-7.5 7.5L13 16"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="auto" height="auto"><path fill="none" stroke="#60646c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 6L7 17l-5-5m20-2l-7.5 7.5L13 16"/></svg>
@@ -7,6 +7,8 @@ import IconBack from '../../assets/images/icons/back.svg';
7
7
  import IconDashboardLeftNav from '../../assets/images/navs/left/dashboard.svg';
8
8
  import IconProductLeftNav from '../../assets/images/navs/left/products.svg';
9
9
  import IconWarningChat from '../../assets/images/icons/warning-agent.svg';
10
+ import IconCheckChat from '../../assets/images/icons/check.svg';
11
+ import IconCheckChatBlue from '../../assets/images/icons/check-blue.svg';
10
12
 
11
13
  const NotificationStyled = css`
12
14
  width: 44px;
@@ -299,6 +301,20 @@ const getIconContainerStyled = ({ $mode, $name, $width, onClick }:{ $mode?: stri
299
301
  }
300
302
  `
301
303
  break;
304
+ case 'check-chat':
305
+ style += `
306
+ &:before {
307
+ content: url(${IconCheckChat});
308
+ }
309
+ `
310
+ break;
311
+ case 'check-chat-blue':
312
+ style += `
313
+ &:before {
314
+ content: url(${IconCheckChatBlue});
315
+ }
316
+ `
317
+ break;
302
318
  default:
303
319
  break;
304
320
  }