@tabler/icons-svelte 3.34.0 → 3.34.1

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,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7.5 10.625l-4.5 -2.813l4.5 -2.812l4.5 2.813m-4.5 2.812l4.5 -2.813m-4.5 2.813l-4.5 2.823l4.5 2.802m0 -5.625l4.5 2.823m0 -5.636l4.5 2.791l4.5 -2.812l-4.5 -2.791l-4.5 2.813zm-4.5 8.438l4.5 -2.802m-4.5 2.802v1.123l4.5 2.627l4.5 -2.627v-1.123m-4.5 -2.802l4.5 -2.823l4.5 2.823l-4.5 2.802m-4.5 -2.802l4.5 2.802" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-dropbox" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type BrandDropboxProps = typeof __propDef.props;
13
+ export type BrandDropboxEvents = typeof __propDef.events;
14
+ export type BrandDropboxSlots = typeof __propDef.slots;
15
+ export default class BrandDropbox extends SvelteComponentTyped<BrandDropboxProps, BrandDropboxEvents, BrandDropboxSlots> {
16
+ }
17
+ export {};
@@ -717,6 +717,7 @@ export { default as IconBrandDoctrine } from './brand-doctrine.svelte';
717
717
  export { default as IconBrandDolbyDigital } from './brand-dolby-digital.svelte';
718
718
  export { default as IconBrandDouban } from './brand-douban.svelte';
719
719
  export { default as IconBrandDribbble } from './brand-dribbble.svelte';
720
+ export { default as IconBrandDropbox } from './brand-dropbox.svelte';
720
721
  export { default as IconBrandDrops } from './brand-drops.svelte';
721
722
  export { default as IconBrandDrupal } from './brand-drupal.svelte';
722
723
  export { default as IconBrandEdge } from './brand-edge.svelte';
@@ -717,6 +717,7 @@ export { default as IconBrandDoctrine } from './brand-doctrine.svelte';
717
717
  export { default as IconBrandDolbyDigital } from './brand-dolby-digital.svelte';
718
718
  export { default as IconBrandDouban } from './brand-douban.svelte';
719
719
  export { default as IconBrandDribbble } from './brand-dribbble.svelte';
720
+ export { default as IconBrandDropbox } from './brand-dropbox.svelte';
720
721
  export { default as IconBrandDrops } from './brand-drops.svelte';
721
722
  export { default as IconBrandDrupal } from './brand-drupal.svelte';
722
723
  export { default as IconBrandEdge } from './brand-edge.svelte';
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M4 5h1m4 0h2" }], ["path", { "d": "M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483" }], ["path", { "d": "M5 9c0 2.144 2.952 3.908 6.7 4" }], ["path", { "d": "M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8" }], ["path", { "d": "M18 18h-5.1" }], ["path", { "d": "M3 3l18 18" }]];
2
+ const iconNode = [["path", { "d": "M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8" }], ["path", { "d": "M18 18h-5.1" }], ["path", { "d": "M8.747 8.748c-.66 2.834 -2.536 4.252 -4.747 4.252" }], ["path", { "d": "M4 6.371l2.371 0" }], ["path", { "d": "M5 9c0 2.144 2.252 3.908 6 4" }], ["path", { "d": "M3 3l18 18" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="language-off" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M4 5h7" }], ["path", { "d": "M9 3v2c0 4.418 -2.239 8 -5 8" }], ["path", { "d": "M5 9c0 2.144 2.952 3.908 6.7 4" }], ["path", { "d": "M12 20l4 -9l4 9" }], ["path", { "d": "M19.1 18h-6.2" }]];
2
+ const iconNode = [["path", { "d": "M9 6.371c0 4.418 -2.239 6.629 -5 6.629" }], ["path", { "d": "M4 6.371h7" }], ["path", { "d": "M5 9c0 2.144 2.252 3.908 6 4" }], ["path", { "d": "M12 20l4 -9l4 9" }], ["path", { "d": "M19.1 18h-6.2" }], ["path", { "d": "M6.694 3l.793 .582" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="language" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -718,6 +718,7 @@ export default [
718
718
  "brand-dolby-digital",
719
719
  "brand-douban",
720
720
  "brand-dribbble",
721
+ "brand-dropbox",
721
722
  "brand-drops",
722
723
  "brand-drupal",
723
724
  "brand-edge",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.34.0",
3
+ "version": "3.34.1",
4
4
  "license": "MIT",
5
5
  "author": "codecalm",
6
6
  "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
@@ -20,6 +20,7 @@
20
20
  "svelte": "./dist/tabler-icons-svelte.js",
21
21
  "types": "./dist/tabler-icons-svelte.d.ts",
22
22
  "type": "module",
23
+ "amdName": "TablerIconsSvelte",
23
24
  "exports": {
24
25
  ".": {
25
26
  "types": "./dist/tabler-icons-svelte.d.ts",
@@ -49,7 +50,7 @@
49
50
  "imports-check": "attw $(npm pack)"
50
51
  },
51
52
  "dependencies": {
52
- "@tabler/icons": "3.34.0"
53
+ "@tabler/icons": "3.34.1"
53
54
  },
54
55
  "devDependencies": {
55
56
  "@sveltejs/package": "^2.2.7",