@bytebrand/fe-ui-core 4.1.73 → 4.1.74

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": "@bytebrand/fe-ui-core",
3
- "version": "4.1.73",
3
+ "version": "4.1.74",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -290,6 +290,7 @@ import SearchGrey from './SVG/common/SearchGrey';
290
290
  import PhoneGrey from './SVG/common/PhoneGrey';
291
291
  import UserGrey from './SVG/common/UserGrey';
292
292
  import MenuGrey from './SVG/common/MenuGrey';
293
+ import CloseGrey from './SVG/common/CloseGrey';
293
294
  interface IComponentsProp {
294
295
  [key: string]: (props: any) => React.ReactNode;
295
296
  }
@@ -671,7 +672,8 @@ const components: IComponentsProp = {
671
672
  searchGrey: SearchGrey,
672
673
  phoneGrey: PhoneGrey,
673
674
  userGrey: UserGrey,
674
- menuGrey: MenuGrey
675
+ menuGrey: MenuGrey,
676
+ closeGrey: CloseGrey
675
677
  };
676
678
 
677
679
  export default components;
@@ -0,0 +1,22 @@
1
+ /* tslint:disable */
2
+ import React from 'react';
3
+
4
+ const CloseGrey = (
5
+ props: any
6
+ ) => {
7
+ return (
8
+ <svg
9
+ width="14"
10
+ height="14"
11
+ viewBox="0 0 14 14"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ {...props}
15
+ >
16
+ <path d="M13.3602 1.94045L12.0677 0.647949L6.94352 5.77212L1.81936 0.647949L0.526855 1.94045L5.65102 7.06462L0.526855 12.1888L1.81936 13.4813L6.94352 8.35711L12.0677 13.4813L13.3602 12.1888L8.23602 7.06462L13.3602 1.94045Z" fill="#4C4E64" fillOpacity="0.54"/>
17
+ </svg>
18
+ )
19
+ }
20
+
21
+ export default CloseGrey;
22
+ /* tslint:enable */