@mozaic-ds/icons 1.36.2 → 1.41.0
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/CHANGELOG.md +34 -0
- package/js/icons.js +2009 -18
- package/package.json +1 -1
- package/react/index.js +15461 -15853
- package/svelte/ArrowArrowBottomLeft16.svelte +10 -0
- package/svelte/ArrowArrowBottomLeft24.svelte +10 -0
- package/svelte/ArrowArrowBottomLeft32.svelte +10 -0
- package/svelte/ArrowArrowBottomLeft48.svelte +10 -0
- package/svelte/ArrowArrowBottomLeft64.svelte +10 -0
- package/svelte/ArrowArrowBottomRight16.svelte +10 -0
- package/svelte/ArrowArrowBottomRight24.svelte +10 -0
- package/svelte/ArrowArrowBottomRight32.svelte +10 -0
- package/svelte/ArrowArrowBottomRight48.svelte +10 -0
- package/svelte/ArrowArrowBottomRight64.svelte +10 -0
- package/svelte/ArrowArrowTopLeft16.svelte +10 -0
- package/svelte/ArrowArrowTopLeft24.svelte +10 -0
- package/svelte/ArrowArrowTopLeft32.svelte +10 -0
- package/svelte/ArrowArrowTopLeft48.svelte +10 -0
- package/svelte/ArrowArrowTopLeft64.svelte +10 -0
- package/svelte/ArrowArrowTopRight16.svelte +10 -0
- package/svelte/ArrowArrowTopRight24.svelte +10 -0
- package/svelte/ArrowArrowTopRight32.svelte +10 -0
- package/svelte/ArrowArrowTopRight48.svelte +10 -0
- package/svelte/ArrowArrowTopRight64.svelte +10 -0
- package/svelte/icons.js +1245 -1105
- package/svg/Navigation_Arrow_ArrowBottomLeft_16px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowBottomLeft_24px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowBottomLeft_32px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowBottomLeft_48px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowBottomLeft_64px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowBottomRight_16px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowBottomRight_24px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowBottomRight_32px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowBottomRight_48px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowBottomRight_64px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopLeft_16px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopLeft_24px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopLeft_32px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopLeft_48px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopLeft_64px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopRight_16px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopRight_24px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopRight_32px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopRight_48px.svg +1 -0
- package/svg/Navigation_Arrow_ArrowTopRight_64px.svg +1 -0
- package/svg-color/Logotypes_Brand_LM_24px.svg +1 -0
- package/svg-color/Logotypes_Brand_LM_32px.svg +1 -0
- package/svg-color/Logotypes_Brand_LM_48px.svg +1 -0
- package/svg-color/Logotypes_Brand_LM_64px.svg +1 -0
- package/svg-color/Logotypes_Payment_Fintecture_24px.svg +1 -0
- package/svg-color/Logotypes_Payment_Fintecture_32px.svg +1 -0
- package/svg-color/Logotypes_Payment_Fintecture_48px.svg +1 -0
- package/svg-color/Logotypes_Payment_Fintecture_64px.svg +1 -0
- package/svg-color/Logotypes_Payment_Oney--3x4x_24px.svg +1 -0
- package/svg-color/Logotypes_Payment_Oney--3x4x_32px.svg +1 -0
- package/svg-color/Logotypes_Payment_Oney--3x4x_48px.svg +1 -0
- package/svg-color/Logotypes_Payment_Oney--3x4x_64px.svg +1 -0
- package/svg-color/Logotypes_Payment_Oney--3x_24px.svg +1 -0
- package/svg-color/Logotypes_Payment_Oney--3x_32px.svg +1 -0
- package/svg-color/Logotypes_Payment_Oney--3x_48px.svg +1 -0
- package/svg-color/Logotypes_Payment_Oney--3x_64px.svg +1 -0
- package/svg-color/Logotypes_Payment_PayPal_24px.svg +1 -0
- package/svg-color/Logotypes_Payment_PayPal_32px.svg +1 -0
- package/svg-color/Logotypes_Payment_PayPal_48px.svg +1 -0
- package/svg-color/Logotypes_Payment_PayPal_64px.svg +1 -0
- package/vue/index.vue +143 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "1rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M13.707 2.293a1 1 0 010 1.414L5.414 12H10a1 1 0 110 2H3a1 1 0 01-1-1V6a1 1 0 112 0v4.586l8.293-8.293a1 1 0 011.414 0z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "1.5rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M19.707 4.293a1 1 0 010 1.414L7.414 18H15a1 1 0 110 2H5a1 1 0 01-1-1V9a1 1 0 112 0v7.586L18.293 4.293a1 1 0 011.414 0z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "2rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill-rule="evenodd" d="M26.04 5.96a1 1 0 010 1.414L9.08 24.334H20a1 1 0 010 2H6.667a1 1 0 01-1-1V12a1 1 0 112 0v10.92l16.96-16.96a1 1 0 011.413 0z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "3rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill-rule="evenodd" d="M39.06 8.94a1.5 1.5 0 010 2.12L13.622 36.5H30a1.5 1.5 0 010 3H10A1.5 1.5 0 018.5 38V18a1.5 1.5 0 013 0v16.379l25.44-25.44a1.5 1.5 0 012.12 0z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "4rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill-rule="evenodd" d="M51.727 12.273a1.5 1.5 0 010 2.121L16.955 49.167H40a1.5 1.5 0 110 3H13.333a1.5 1.5 0 01-1.5-1.5V24a1.5 1.5 0 113 0v23.045l34.773-34.772a1.5 1.5 0 012.121 0z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "1rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" d="M2.293 2.293a1 1 0 011.414 0L12 10.586V6a1 1 0 112 0v7a1 1 0 01-1 1H6a1 1 0 110-2h4.586L2.293 3.707a1 1 0 010-1.414z"/></g><defs><clipPath id="a"><path d="M0 0h16v16H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "1.5rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L18 16.586V9a1 1 0 112 0v10a1 1 0 01-1 1H9a1 1 0 110-2h7.586L4.293 5.707a1 1 0 010-1.414z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "2rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill-rule="evenodd" d="M5.96 5.96a1 1 0 011.414 0l16.96 16.96V12a1 1 0 112 0v13.333a1 1 0 01-1 1H12a1 1 0 110-2h10.92L5.96 7.373a1 1 0 010-1.413z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "3rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill-rule="evenodd" d="M8.94 8.94a1.5 1.5 0 012.12 0L36.5 34.378V18a1.5 1.5 0 013 0v20a1.5 1.5 0 01-1.5 1.5H18a1.5 1.5 0 010-3h16.379L8.939 11.06a1.5 1.5 0 010-2.12z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "4rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill-rule="evenodd" d="M12.273 12.273a1.5 1.5 0 012.121 0l34.773 34.772V24a1.5 1.5 0 013 0v26.667a1.5 1.5 0 01-1.5 1.5H24a1.5 1.5 0 010-3h23.045L12.273 14.394a1.5 1.5 0 010-2.121z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "1rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M2.293 2.293A1 1 0 013 2h7a1 1 0 110 2H5.414l8.293 8.293a1 1 0 01-1.414 1.414L4 5.414V10a1 1 0 11-2 0V3a1 1 0 01.293-.707z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "1.5rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M4.293 4.293A1 1 0 015 4h10a1 1 0 110 2H7.414l12.293 12.293a1 1 0 01-1.414 1.414L6 7.414V15a1 1 0 11-2 0V5a1 1 0 01.293-.707z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "2rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill-rule="evenodd" d="M5.96 5.96a1 1 0 01.707-.293H20a1 1 0 010 2H9.08l16.96 16.96a1 1 0 01-1.414 1.413L7.666 9.08V20a1 1 0 11-2 0V6.666a1 1 0 01.294-.707z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "3rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill-rule="evenodd" d="M8.94 8.94A1.5 1.5 0 0110 8.5h20a1.5 1.5 0 010 3H13.621l25.44 25.44a1.5 1.5 0 01-2.122 2.12L11.5 13.622V30a1.5 1.5 0 01-3 0V10c0-.398.158-.78.44-1.06z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "4rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill-rule="evenodd" d="M12.273 12.273a1.5 1.5 0 011.06-.44H40a1.5 1.5 0 110 3H16.955l34.772 34.773a1.5 1.5 0 11-2.121 2.121L14.833 16.955V40a1.5 1.5 0 01-3 0V13.333c0-.398.158-.78.44-1.06z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "1rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M5 3a1 1 0 011-1h7a1 1 0 011 1v7a1 1 0 11-2 0V5.414l-8.293 8.293a1 1 0 01-1.414-1.414L10.586 4H6a1 1 0 01-1-1z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "1.5rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M8 5a1 1 0 011-1h10a1 1 0 011 1v10a1 1 0 11-2 0V7.414L5.707 19.707a1 1 0 11-1.414-1.414L16.586 6H9a1 1 0 01-1-1z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "2rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill-rule="evenodd" d="M11 6.667a1 1 0 011-1h13.333a1 1 0 011 1V20a1 1 0 11-2 0V9.081l-16.96 16.96a1 1 0 01-1.413-1.415l16.96-16.96H12a1 1 0 01-1-1z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "3rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill-rule="evenodd" d="M16.5 10A1.5 1.5 0 0118 8.5h20a1.5 1.5 0 011.5 1.5v20a1.5 1.5 0 01-3 0V13.621l-25.44 25.44a1.5 1.5 0 11-2.12-2.122L34.378 11.5H18a1.5 1.5 0 01-1.5-1.5z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svelte:options tag={null} />
|
|
2
|
+
<script>
|
|
3
|
+
export let id = undefined;
|
|
4
|
+
export let style = undefined;
|
|
5
|
+
export let className = undefined;
|
|
6
|
+
export let fill = undefined;
|
|
7
|
+
export let size = "4rem";
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<svg aria-hidden="true" width={size} height={size} id={id} style={style} class={className} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill-rule="evenodd" d="M22.5 13.334a1.5 1.5 0 011.5-1.5h26.667a1.5 1.5 0 011.5 1.5V40a1.5 1.5 0 01-3 0V16.955L14.394 51.728a1.5 1.5 0 11-2.121-2.122l34.772-34.773H24a1.5 1.5 0 01-1.5-1.5z"/></svg>
|