@joyautomation/salt 0.0.12 → 0.0.13
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.
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script lang="ts">export let size = "1.5rem";
|
|
2
|
+
</script>
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
stroke-width="1.5"
|
|
9
|
+
stroke="currentColor"
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
stroke-linecap="round"
|
|
15
|
+
stroke-linejoin="round"
|
|
16
|
+
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
size?: string | undefined;
|
|
5
|
+
};
|
|
6
|
+
events: {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
};
|
|
9
|
+
slots: {};
|
|
10
|
+
};
|
|
11
|
+
export type ShoppingCartProps = typeof __propDef.props;
|
|
12
|
+
export type ShoppingCartEvents = typeof __propDef.events;
|
|
13
|
+
export type ShoppingCartSlots = typeof __propDef.slots;
|
|
14
|
+
export default class ShoppingCart extends SvelteComponent<ShoppingCartProps, ShoppingCartEvents, ShoppingCartSlots> {
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -15,3 +15,4 @@ export { default as Trash } from "./Trash.svelte";
|
|
|
15
15
|
export { default as WrenchScrewdriver } from "./WrenchScrewdriver.svelte";
|
|
16
16
|
export { default as Xmark } from "./Xmark.svelte";
|
|
17
17
|
export { default as Minus } from "./Minus.svelte";
|
|
18
|
+
export { default as ShoppingCart } from "./ShoppingCart.svelte";
|
|
@@ -15,3 +15,4 @@ export { default as Trash } from "./Trash.svelte";
|
|
|
15
15
|
export { default as WrenchScrewdriver } from "./WrenchScrewdriver.svelte";
|
|
16
16
|
export { default as Xmark } from "./Xmark.svelte";
|
|
17
17
|
export { default as Minus } from "./Minus.svelte";
|
|
18
|
+
export { default as ShoppingCart } from "./ShoppingCart.svelte";
|