@bytebrand/fe-ui-core 4.1.36 → 4.1.37

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.36",
3
+ "version": "4.1.37",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -17,6 +17,7 @@ import Star from './SVG/common/Star';
17
17
  import Plus from './SVG/common/Plus';
18
18
  import PlusNew from './SVG/common/PlusNew';
19
19
  import Trash from './SVG/common/Trash';
20
+ import TrashRed from './SVG/common/TrashRed';
20
21
  import Question from './SVG/common/Question';
21
22
  import Info from './SVG/common/Info';
22
23
  import InfoTransparentIcon from './SVG/common/InfoTransparent';
@@ -315,6 +316,7 @@ const components: IComponentsProp = {
315
316
  plus: Plus,
316
317
  plusNew: PlusNew,
317
318
  trash: Trash,
319
+ trashRed: TrashRed,
318
320
  trashIcon: Trash,
319
321
  selector_unknown: Question,
320
322
  info: Info,
@@ -0,0 +1,23 @@
1
+ /* tslint:disable */
2
+ import * as React from 'react';
3
+
4
+ const SvgTrash = (props: any) => (
5
+ <svg
6
+ width="25"
7
+ height="24"
8
+ viewBox="0 0 25 24"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ { ...props }
12
+ >
13
+ <mask id="mask0_7785_64413" maskUnits="userSpaceOnUse" x="0" y="0" width="25" height="24">
14
+ <rect x="0.666992" width="24" height="24" fill="#D9D9D9"/>
15
+ </mask>
16
+ <g mask="url(#mask0_7785_64413)">
17
+ <path d="M7.96699 20.5C7.46699 20.5 7.04199 20.325 6.69199 19.975C6.34199 19.625 6.16699 19.2 6.16699 18.7V6H5.91699C5.70033 6 5.52133 5.929 5.37999 5.787C5.23799 5.64567 5.16699 5.46667 5.16699 5.25C5.16699 5.03333 5.23799 4.85433 5.37999 4.713C5.52133 4.571 5.70033 4.5 5.91699 4.5H9.66699C9.66699 4.25 9.75433 4.04167 9.92899 3.875C10.1043 3.70833 10.317 3.625 10.567 3.625H14.767C15.017 3.625 15.2297 3.70833 15.405 3.875C15.5797 4.04167 15.667 4.25 15.667 4.5H19.417C19.6337 4.5 19.813 4.571 19.955 4.713C20.0963 4.85433 20.167 5.03333 20.167 5.25C20.167 5.46667 20.0963 5.64567 19.955 5.787C19.813 5.929 19.6337 6 19.417 6H19.167V18.7C19.167 19.2 18.992 19.625 18.642 19.975C18.292 20.325 17.867 20.5 17.367 20.5H7.96699ZM7.66699 6V18.7C7.66699 18.7833 7.69633 18.8543 7.75499 18.913C7.81299 18.971 7.88366 19 7.96699 19H17.367C17.4503 19 17.5213 18.971 17.58 18.913C17.638 18.8543 17.667 18.7833 17.667 18.7V6H7.66699ZM10.067 16.25C10.067 16.4667 10.138 16.646 10.28 16.788C10.4213 16.9293 10.6003 17 10.817 17C11.0337 17 11.213 16.9293 11.355 16.788C11.4963 16.646 11.567 16.4667 11.567 16.25V8.75C11.567 8.53333 11.4963 8.354 11.355 8.212C11.213 8.07067 11.0337 8 10.817 8C10.6003 8 10.4213 8.07067 10.28 8.212C10.138 8.354 10.067 8.53333 10.067 8.75V16.25ZM13.767 16.25C13.767 16.4667 13.8377 16.646 13.979 16.788C14.121 16.9293 14.3003 17 14.517 17C14.7337 17 14.913 16.9293 15.055 16.788C15.1963 16.646 15.267 16.4667 15.267 16.25V8.75C15.267 8.53333 15.1963 8.354 15.055 8.212C14.913 8.07067 14.7337 8 14.517 8C14.3003 8 14.121 8.07067 13.979 8.212C13.8377 8.354 13.767 8.53333 13.767 8.75V16.25ZM7.66699 6V18.7C7.66699 18.7833 7.69633 18.8543 7.75499 18.913C7.81299 18.971 7.88366 19 7.96699 19H7.66699V6Z" fill="#BA1A1A"/>
18
+ </g>
19
+ </svg>
20
+ );
21
+
22
+ export default SvgTrash;
23
+ /* tslint:enable */