am-shared-assets 1.0.18 → 1.0.20
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/dist/essetionalIcons.js
CHANGED
|
@@ -356,15 +356,13 @@ const n = ({
|
|
|
356
356
|
TrashLinearIcon: a,
|
|
357
357
|
TrashOutlineIcon: l,
|
|
358
358
|
TrashTwotoneIcon: c
|
|
359
|
-
}, u = { trash: i }
|
|
360
|
-
TrashBoldIcon: n,
|
|
361
|
-
TrashBrokenIcon: t,
|
|
362
|
-
TrashBulkIcon: r,
|
|
363
|
-
TrashLinearIcon: a,
|
|
364
|
-
TrashOutlineIcon: l,
|
|
365
|
-
TrashTwotoneIcon: c
|
|
366
|
-
};
|
|
359
|
+
}, u = { trash: i };
|
|
367
360
|
export {
|
|
368
|
-
|
|
369
|
-
|
|
361
|
+
n as TrashBoldIcon,
|
|
362
|
+
t as TrashBrokenIcon,
|
|
363
|
+
r as TrashBulkIcon,
|
|
364
|
+
a as TrashLinearIcon,
|
|
365
|
+
l as TrashOutlineIcon,
|
|
366
|
+
c as TrashTwotoneIcon,
|
|
367
|
+
u as default
|
|
370
368
|
};
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
import { default as TrashBoldIcon } from './TrashBoldIcon';
|
|
2
|
+
import { default as TrashBrokenIcon } from './TrashBrokenIcon';
|
|
3
|
+
import { default as TrashBulkIcon } from './TrashBulkIcon';
|
|
4
|
+
import { default as TrashLinearIcon } from './TrashLinearIcon';
|
|
5
|
+
import { default as TrashOutlineIcon } from './TrashOutlineIcon';
|
|
6
|
+
import { default as TrashTwotoneIcon } from './TrashTwotoneIcon';
|
|
7
|
+
declare const _default: {
|
|
2
8
|
trash: {
|
|
3
9
|
TrashBoldIcon: ({ color, size, }: {
|
|
4
10
|
color?: string;
|
|
@@ -26,30 +32,5 @@ export declare const groupIcons: {
|
|
|
26
32
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
27
33
|
};
|
|
28
34
|
};
|
|
29
|
-
declare const _default: {
|
|
30
|
-
TrashBoldIcon: ({ color, size, }: {
|
|
31
|
-
color?: string;
|
|
32
|
-
size?: number;
|
|
33
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
TrashBrokenIcon: ({ color, size, }: {
|
|
35
|
-
color?: string;
|
|
36
|
-
size?: number;
|
|
37
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
-
TrashBulkIcon: ({ color, size, }: {
|
|
39
|
-
color?: string;
|
|
40
|
-
size?: number;
|
|
41
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
-
TrashLinearIcon: ({ color, size, }: {
|
|
43
|
-
color?: string;
|
|
44
|
-
size?: number;
|
|
45
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
46
|
-
TrashOutlineIcon: ({ color, size, }: {
|
|
47
|
-
color?: string;
|
|
48
|
-
size?: number;
|
|
49
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
-
TrashTwotoneIcon: ({ color, size, }: {
|
|
51
|
-
color?: string;
|
|
52
|
-
size?: number;
|
|
53
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
-
};
|
|
55
35
|
export default _default;
|
|
36
|
+
export { TrashBoldIcon, TrashBrokenIcon, TrashBulkIcon, TrashLinearIcon, TrashOutlineIcon, TrashTwotoneIcon, };
|