@tabler/icons-svelte 3.7.0 → 3.8.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.
Files changed (40) hide show
  1. package/dist/icons/alphabet-arabic.svelte +6 -0
  2. package/dist/icons/alphabet-arabic.svelte.d.ts +17 -0
  3. package/dist/icons/alphabet-bangla.svelte +6 -0
  4. package/dist/icons/alphabet-bangla.svelte.d.ts +17 -0
  5. package/dist/icons/alphabet-hebrew.svelte +6 -0
  6. package/dist/icons/alphabet-hebrew.svelte.d.ts +17 -0
  7. package/dist/icons/alphabet-korean.svelte +6 -0
  8. package/dist/icons/alphabet-korean.svelte.d.ts +17 -0
  9. package/dist/icons/alphabet-thai.svelte +6 -0
  10. package/dist/icons/alphabet-thai.svelte.d.ts +17 -0
  11. package/dist/icons/brand-adobe-after-effect.svelte +6 -0
  12. package/dist/icons/brand-adobe-after-effect.svelte.d.ts +17 -0
  13. package/dist/icons/brand-adobe-illustrator.svelte +6 -0
  14. package/dist/icons/brand-adobe-illustrator.svelte.d.ts +17 -0
  15. package/dist/icons/brand-adobe-indesign.svelte +6 -0
  16. package/dist/icons/brand-adobe-indesign.svelte.d.ts +17 -0
  17. package/dist/icons/brand-adobe-photoshop.svelte +6 -0
  18. package/dist/icons/brand-adobe-photoshop.svelte.d.ts +17 -0
  19. package/dist/icons/brand-adobe-premier.svelte +6 -0
  20. package/dist/icons/brand-adobe-premier.svelte.d.ts +17 -0
  21. package/dist/icons/brand-adobe-xd.svelte +6 -0
  22. package/dist/icons/brand-adobe-xd.svelte.d.ts +17 -0
  23. package/dist/icons/brand-apple-news.svelte +6 -0
  24. package/dist/icons/brand-apple-news.svelte.d.ts +17 -0
  25. package/dist/icons/brand-hackerrank.svelte +6 -0
  26. package/dist/icons/brand-hackerrank.svelte.d.ts +17 -0
  27. package/dist/icons/cap-projecting.svelte +6 -0
  28. package/dist/icons/cap-projecting.svelte.d.ts +17 -0
  29. package/dist/icons/cap-rounded.svelte +6 -0
  30. package/dist/icons/cap-rounded.svelte.d.ts +17 -0
  31. package/dist/icons/cap-straight.svelte +6 -0
  32. package/dist/icons/cap-straight.svelte.d.ts +17 -0
  33. package/dist/icons/index.d.ts +18 -0
  34. package/dist/icons/index.js +18 -0
  35. package/dist/icons/math-cos.svelte +6 -0
  36. package/dist/icons/math-cos.svelte.d.ts +17 -0
  37. package/dist/icons/math-sin.svelte +6 -0
  38. package/dist/icons/math-sin.svelte.d.ts +17 -0
  39. package/dist/icons-list.js +18 -0
  40. package/package.json +2 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M10 6v4" }], ["path", { "d": "M13 14h8q -2.518 -3 -4 -3" }], ["path", { "d": "M13 6v9.958c0 .963 0 1.444 -.293 1.743s-.764 .299 -1.707 .299h-1" }], ["path", { "d": "M7 6v9.958c0 .963 0 1.444 -.293 1.743s-.764 .299 -1.707 .299h-1" }]];
3
+ </script>
4
+ <Icon type="outline" name="alphabet-arabic" {...$$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 AlphabetArabicProps = typeof __propDef.props;
13
+ export type AlphabetArabicEvents = typeof __propDef.events;
14
+ export type AlphabetArabicSlots = typeof __propDef.slots;
15
+ export default class AlphabetArabic extends SvelteComponentTyped<AlphabetArabicProps, AlphabetArabicEvents, AlphabetArabicSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14 12c.904 -.027 3 2 3 7" }], ["path", { "d": "M10 11c0 -.955 0 -2 .786 -2.677c1.262 -1.089 3.025 .55 3.2 2.06c.086 .741 -.215 3.109 -1.489 4.527c-.475 .53 -.904 .992 -1.711 1.074c-.75 .076 -1.364 -.122 -2.076 -.588c-1.138 -.743 -2.327 -1.997 -3.336 -3.73c-1.078 -1.849 -1.66 -3.113 -2.374 -5.666" }], ["path", { "d": "M7.37 7.072c.769 -.836 5.246 -4.094 8.4 -.202c.382 .472 .573 .708 .9 1.63c.326 .921 .326 1.562 .326 2.844v7.656" }], ["path", { "d": "M17 10c0 -1.989 1.5 -4 4 -4" }]];
3
+ </script>
4
+ <Icon type="outline" name="alphabet-bangla" {...$$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 AlphabetBanglaProps = typeof __propDef.props;
13
+ export type AlphabetBanglaEvents = typeof __propDef.events;
14
+ export type AlphabetBanglaSlots = typeof __propDef.slots;
15
+ export default class AlphabetBangla extends SvelteComponentTyped<AlphabetBanglaProps, AlphabetBanglaEvents, AlphabetBanglaSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 6c2.333 5.143 6.611 6.857 9.333 12" }], ["path", { "d": "M13.667 14c2.505 -1.5 2.666 -4.141 2.666 -5.333c0 -1.778 -.443 -2.667 -.443 -2.667" }], ["path", { "d": "M7.485 18s-.485 -.905 -.485 -2.714c0 -1.172 .164 -3.722 2.641 -5.27" }]];
3
+ </script>
4
+ <Icon type="outline" name="alphabet-hebrew" {...$$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 AlphabetHebrewProps = typeof __propDef.props;
13
+ export type AlphabetHebrewEvents = typeof __propDef.events;
14
+ export type AlphabetHebrewSlots = typeof __propDef.slots;
15
+ export default class AlphabetHebrew extends SvelteComponentTyped<AlphabetHebrewProps, AlphabetHebrewEvents, AlphabetHebrewSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 7h6c0 2.5 -1.593 8.474 -6 10" }], ["path", { "d": "M16 5v14z" }], ["path", { "d": "M16 12h2" }]];
3
+ </script>
4
+ <Icon type="outline" name="alphabet-korean" {...$$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 AlphabetKoreanProps = typeof __propDef.props;
13
+ export type AlphabetKoreanEvents = typeof __propDef.events;
14
+ export type AlphabetKoreanSlots = typeof __propDef.slots;
15
+ export default class AlphabetKorean extends SvelteComponentTyped<AlphabetKoreanProps, AlphabetKoreanEvents, AlphabetKoreanSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8 18v-3.444c0 -.49 .165 -.924 .494 -1.363c.326 -.449 1.009 -.76 1.506 -.934c.032 -.011 .035 -.079 .004 -.095c-.434 -.22 -1.294 -.52 -1.626 -1.032l-.014 -.021l-.083 -.125c-.281 -.42 -.281 -1.246 -.281 -1.246c0 -1.456 .849 -2.62 1.837 -3.199q .9 -.54 2.137 -.541q 1.077 0 1.995 .47c1.328 .647 2.031 2.202 2.031 3.976v7.554" }]];
3
+ </script>
4
+ <Icon type="outline" name="alphabet-thai" {...$$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 AlphabetThaiProps = typeof __propDef.props;
13
+ export type AlphabetThaiEvents = typeof __propDef.events;
14
+ export type AlphabetThaiSlots = typeof __propDef.slots;
15
+ export default class AlphabetThai extends SvelteComponentTyped<AlphabetThaiProps, AlphabetThaiEvents, AlphabetThaiSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12c0 -4.243 0 -6.364 1.318 -7.682s3.44 -1.318 7.682 -1.318s6.364 0 7.682 1.318s1.318 3.44 1.318 7.682s0 6.364 -1.318 7.682s-3.44 1.318 -7.682 1.318s-6.364 0 -7.682 -1.318s-1.318 -3.44 -1.318 -7.682" }], ["path", { "d": "M12 15.79l-.82 -2.653m-4.864 2.652l.82 -2.652m0 0l.686 -2.218c.559 -1.806 .838 -2.708 1.336 -2.708s.777 .902 1.335 2.708l.686 2.218m-4.043 0h4.043" }], ["path", { "d": "M13.895 12.824v1.07a1.895 1.895 0 0 0 3.54 .942m-3.54 -2.012v-.824a1.895 1.895 0 1 1 3.79 0v.824z" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-adobe-after-effect" {...$$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 BrandAdobeAfterEffectProps = typeof __propDef.props;
13
+ export type BrandAdobeAfterEffectEvents = typeof __propDef.events;
14
+ export type BrandAdobeAfterEffectSlots = typeof __propDef.slots;
15
+ export default class BrandAdobeAfterEffect extends SvelteComponentTyped<BrandAdobeAfterEffectProps, BrandAdobeAfterEffectEvents, BrandAdobeAfterEffectSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12c0 -4.243 0 -6.364 1.318 -7.682s3.44 -1.318 7.682 -1.318s6.364 0 7.682 1.318s1.318 3.44 1.318 7.682s0 6.364 -1.318 7.682s-3.44 1.318 -7.682 1.318s-6.364 0 -7.682 -1.318s-1.318 -3.44 -1.318 -7.682" }], ["path", { "d": "M12.947 15.79l-.82 -2.653m-4.864 2.652l.82 -2.652m0 0l.687 -2.218c.558 -1.806 .838 -2.708 1.335 -2.708c.498 0 .777 .902 1.336 2.708l.686 2.218m-4.043 0h4.043" }], ["path", { "d": "M15.789 15.789v-4.736" }], ["path", { "d": "M15.789 8.684v-.473" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-adobe-illustrator" {...$$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 BrandAdobeIllustratorProps = typeof __propDef.props;
13
+ export type BrandAdobeIllustratorEvents = typeof __propDef.events;
14
+ export type BrandAdobeIllustratorSlots = typeof __propDef.slots;
15
+ export default class BrandAdobeIllustrator extends SvelteComponentTyped<BrandAdobeIllustratorProps, BrandAdobeIllustratorEvents, BrandAdobeIllustratorSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12c0 -4.243 0 -6.364 1.318 -7.682s3.44 -1.318 7.682 -1.318s6.364 0 7.682 1.318s1.318 3.44 1.318 7.682s0 6.364 -1.318 7.682s-3.44 1.318 -7.682 1.318s-6.364 0 -7.682 -1.318s-1.318 -3.44 -1.318 -7.682" }], ["path", { "d": "M14.842 11.053v3.79c0 1.044 -.49 .946 -1.42 .946a2.368 2.368 0 0 1 0 -4.736zm0 0v-2.843" }], ["path", { "d": "M8.211 8.211v7.578" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-adobe-indesign" {...$$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 BrandAdobeIndesignProps = typeof __propDef.props;
13
+ export type BrandAdobeIndesignEvents = typeof __propDef.events;
14
+ export type BrandAdobeIndesignSlots = typeof __propDef.slots;
15
+ export default class BrandAdobeIndesign extends SvelteComponentTyped<BrandAdobeIndesignProps, BrandAdobeIndesignEvents, BrandAdobeIndesignSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12c0 -4.243 0 -6.364 1.318 -7.682s3.44 -1.318 7.682 -1.318s6.364 0 7.682 1.318s1.318 3.44 1.318 7.682s0 6.364 -1.318 7.682s-3.44 1.318 -7.682 1.318s-6.364 0 -7.682 -1.318s-1.318 -3.44 -1.318 -7.682" }], ["path", { "d": "M6.79 15.79v-3.79m0 0v-2.724c0 -.11 0 -.165 .004 -.211c.044 -.45 .4 -.806 .85 -.85c.046 -.004 .101 -.004 .211 -.004h1.303a1.895 1.895 0 1 1 0 3.789z" }], ["path", { "d": "M17.178 11.263c-.164 -.659 -.935 -1.158 -1.862 -1.158c-1.047 0 -1.895 .637 -1.895 1.421c0 .785 .848 1.421 1.895 1.421c1.046 0 1.895 .637 1.895 1.421c0 .785 -.849 1.421 -1.895 1.421c-.93 0 -1.704 -.502 -1.864 -1.165" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-adobe-photoshop" {...$$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 BrandAdobePhotoshopProps = typeof __propDef.props;
13
+ export type BrandAdobePhotoshopEvents = typeof __propDef.events;
14
+ export type BrandAdobePhotoshopSlots = typeof __propDef.slots;
15
+ export default class BrandAdobePhotoshop extends SvelteComponentTyped<BrandAdobePhotoshopProps, BrandAdobePhotoshopEvents, BrandAdobePhotoshopSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12c0 -4.243 0 -6.364 1.318 -7.682s3.44 -1.318 7.682 -1.318s6.364 0 7.682 1.318s1.318 3.44 1.318 7.682s0 6.364 -1.318 7.682s-3.44 1.318 -7.682 1.318s-6.364 0 -7.682 -1.318s-1.318 -3.44 -1.318 -7.682" }], ["path", { "d": "M7.263 15.79v-3.79m0 0v-3.248c0 -.335 .222 -.541 .542 -.541h1.353a1.895 1.895 0 1 1 0 3.789z" }], ["path", { "d": "M13.895 10.579v1.895m0 0v3.315m0 -3.315c.531 -.709 1.026 -1.592 1.894 -1.832q .22 -.062 .474 -.063" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-adobe-premier" {...$$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 BrandAdobePremierProps = typeof __propDef.props;
13
+ export type BrandAdobePremierEvents = typeof __propDef.events;
14
+ export type BrandAdobePremierSlots = typeof __propDef.slots;
15
+ export default class BrandAdobePremier extends SvelteComponentTyped<BrandAdobePremierProps, BrandAdobePremierEvents, BrandAdobePremierSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12c0 -4.243 0 -6.364 1.318 -7.682s3.44 -1.318 7.682 -1.318s6.364 0 7.682 1.318s1.318 3.44 1.318 7.682s0 6.364 -1.318 7.682s-3.44 1.318 -7.682 1.318s-6.364 0 -7.682 -1.318s-1.318 -3.44 -1.318 -7.682" }], ["path", { "d": "M6.316 8.21l5.684 7.58m-5.684 0l5.684 -7.58" }], ["path", { "d": "M17.684 11.053v3.79c0 1.044 -.49 .946 -1.42 .946a2.368 2.368 0 0 1 0 -4.736zm0 0v-2.843" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-adobe-xd" {...$$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 BrandAdobeXdProps = typeof __propDef.props;
13
+ export type BrandAdobeXdEvents = typeof __propDef.events;
14
+ export type BrandAdobeXdSlots = typeof __propDef.slots;
15
+ export default class BrandAdobeXd extends SvelteComponentTyped<BrandAdobeXdProps, BrandAdobeXdEvents, BrandAdobeXdSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 14l6 6h-6z" }], ["path", { "d": "M20 10l-6 -6h6z" }], ["path", { "d": "M4 4v4l12 12h4v-4l-12 -12z" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-apple-news" {...$$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 BrandAppleNewsProps = typeof __propDef.props;
13
+ export type BrandAppleNewsEvents = typeof __propDef.events;
14
+ export type BrandAppleNewsSlots = typeof __propDef.slots;
15
+ export default class BrandAppleNews extends SvelteComponentTyped<BrandAppleNewsProps, BrandAppleNewsEvents, BrandAppleNewsSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19.484 5.667c-1.146 -.904 -3.35 -2.394 -6.497 -3.429c-.484 -.159 -.725 -.238 -1.04 -.238c-.314 0 -.556 .08 -1.04 .238c-3.147 1.035 -5.35 2.525 -6.496 3.43c-.402 .317 -.604 .476 -.797 .816c-.194 .341 -.233 .62 -.309 1.178a33 33 0 0 0 -.305 4.338c0 1.742 .165 3.317 .305 4.338c.076 .558 .115 .837 .309 1.178c.193 .34 .395 .5 .797 .817c1.146 .904 3.35 2.394 6.497 3.429c.483 .159 .725 .238 1.04 .238c.314 0 .555 -.08 1.04 -.238c3.146 -1.035 5.35 -2.525 6.496 -3.43c.402 -.317 .603 -.476 .797 -.816c.194 -.341 .232 -.62 .309 -1.178c.14 -1.021 .305 -2.596 .305 -4.338s-.165 -3.317 -.305 -4.338c-.077 -.558 -.115 -.837 -.309 -1.178s-.395 -.5 -.797 -.817" }], ["path", { "d": "M9 8v7" }], ["path", { "d": "M9 12h6" }], ["path", { "d": "M16 16h-2l1 1z" }], ["path", { "d": "M8 8h2l-1 -1z" }], ["path", { "d": "M15 9v7" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-hackerrank" {...$$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 BrandHackerrankProps = typeof __propDef.props;
13
+ export type BrandHackerrankEvents = typeof __propDef.events;
14
+ export type BrandHackerrankSlots = typeof __propDef.slots;
15
+ export default class BrandHackerrank extends SvelteComponentTyped<BrandHackerrankProps, BrandHackerrankEvents, BrandHackerrankSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20 6h-13a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h13" }], ["path", { "d": "M13 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0" }], ["path", { "d": "M13 12h7" }]];
3
+ </script>
4
+ <Icon type="outline" name="cap-projecting" {...$$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 CapProjectingProps = typeof __propDef.props;
13
+ export type CapProjectingEvents = typeof __propDef.events;
14
+ export type CapProjectingSlots = typeof __propDef.slots;
15
+ export default class CapProjecting extends SvelteComponentTyped<CapProjectingProps, CapProjectingEvents, CapProjectingSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20 6h-9a6 6 0 1 0 0 12h9" }], ["path", { "d": "M13 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0" }], ["path", { "d": "M13 12h7" }]];
3
+ </script>
4
+ <Icon type="outline" name="cap-rounded" {...$$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 CapRoundedProps = typeof __propDef.props;
13
+ export type CapRoundedEvents = typeof __propDef.events;
14
+ export type CapRoundedSlots = typeof __propDef.slots;
15
+ export default class CapRounded extends SvelteComponentTyped<CapRoundedProps, CapRoundedEvents, CapRoundedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0" }], ["path", { "d": "M8 12h12" }], ["path", { "d": "M20 6h-12a2 2 0 0 0 -2 2v2" }], ["path", { "d": "M6 14v2a2 2 0 0 0 2 2h12" }]];
3
+ </script>
4
+ <Icon type="outline" name="cap-straight" {...$$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 CapStraightProps = typeof __propDef.props;
13
+ export type CapStraightEvents = typeof __propDef.events;
14
+ export type CapStraightSlots = typeof __propDef.slots;
15
+ export default class CapStraight extends SvelteComponentTyped<CapStraightProps, CapStraightEvents, CapStraightSlots> {
16
+ }
17
+ export {};
@@ -93,9 +93,14 @@ export { default as IconAlignLeft } from './align-left.svelte';
93
93
  export { default as IconAlignRight2 } from './align-right-2.svelte';
94
94
  export { default as IconAlignRight } from './align-right.svelte';
95
95
  export { default as IconAlpha } from './alpha.svelte';
96
+ export { default as IconAlphabetArabic } from './alphabet-arabic.svelte';
97
+ export { default as IconAlphabetBangla } from './alphabet-bangla.svelte';
96
98
  export { default as IconAlphabetCyrillic } from './alphabet-cyrillic.svelte';
97
99
  export { default as IconAlphabetGreek } from './alphabet-greek.svelte';
100
+ export { default as IconAlphabetHebrew } from './alphabet-hebrew.svelte';
101
+ export { default as IconAlphabetKorean } from './alphabet-korean.svelte';
98
102
  export { default as IconAlphabetLatin } from './alphabet-latin.svelte';
103
+ export { default as IconAlphabetThai } from './alphabet-thai.svelte';
99
104
  export { default as IconAlt } from './alt.svelte';
100
105
  export { default as IconAmbulance } from './ambulance.svelte';
101
106
  export { default as IconAmpersand } from './ampersand.svelte';
@@ -588,6 +593,12 @@ export { default as IconBraille } from './braille.svelte';
588
593
  export { default as IconBrain } from './brain.svelte';
589
594
  export { default as IconBrand4chan } from './brand-4chan.svelte';
590
595
  export { default as IconBrandAbstract } from './brand-abstract.svelte';
596
+ export { default as IconBrandAdobeAfterEffect } from './brand-adobe-after-effect.svelte';
597
+ export { default as IconBrandAdobeIllustrator } from './brand-adobe-illustrator.svelte';
598
+ export { default as IconBrandAdobeIndesign } from './brand-adobe-indesign.svelte';
599
+ export { default as IconBrandAdobePhotoshop } from './brand-adobe-photoshop.svelte';
600
+ export { default as IconBrandAdobePremier } from './brand-adobe-premier.svelte';
601
+ export { default as IconBrandAdobeXd } from './brand-adobe-xd.svelte';
591
602
  export { default as IconBrandAdobe } from './brand-adobe.svelte';
592
603
  export { default as IconBrandAdonisJs } from './brand-adonis-js.svelte';
593
604
  export { default as IconBrandAirbnb } from './brand-airbnb.svelte';
@@ -605,6 +616,7 @@ export { default as IconBrandAnsible } from './brand-ansible.svelte';
605
616
  export { default as IconBrandAo3 } from './brand-ao3.svelte';
606
617
  export { default as IconBrandAppgallery } from './brand-appgallery.svelte';
607
618
  export { default as IconBrandAppleArcade } from './brand-apple-arcade.svelte';
619
+ export { default as IconBrandAppleNews } from './brand-apple-news.svelte';
608
620
  export { default as IconBrandApplePodcast } from './brand-apple-podcast.svelte';
609
621
  export { default as IconBrandApple } from './brand-apple.svelte';
610
622
  export { default as IconBrandAppstore } from './brand-appstore.svelte';
@@ -732,6 +744,7 @@ export { default as IconBrandGravatar } from './brand-gravatar.svelte';
732
744
  export { default as IconBrandGrindr } from './brand-grindr.svelte';
733
745
  export { default as IconBrandGuardian } from './brand-guardian.svelte';
734
746
  export { default as IconBrandGumroad } from './brand-gumroad.svelte';
747
+ export { default as IconBrandHackerrank } from './brand-hackerrank.svelte';
735
748
  export { default as IconBrandHbo } from './brand-hbo.svelte';
736
749
  export { default as IconBrandHeadlessui } from './brand-headlessui.svelte';
737
750
  export { default as IconBrandHexo } from './brand-hexo.svelte';
@@ -1081,6 +1094,9 @@ export { default as IconCandyOff } from './candy-off.svelte';
1081
1094
  export { default as IconCandy } from './candy.svelte';
1082
1095
  export { default as IconCane } from './cane.svelte';
1083
1096
  export { default as IconCannabis } from './cannabis.svelte';
1097
+ export { default as IconCapProjecting } from './cap-projecting.svelte';
1098
+ export { default as IconCapRounded } from './cap-rounded.svelte';
1099
+ export { default as IconCapStraight } from './cap-straight.svelte';
1084
1100
  export { default as IconCapsuleHorizontal } from './capsule-horizontal.svelte';
1085
1101
  export { default as IconCapsule } from './capsule.svelte';
1086
1102
  export { default as IconCaptureOff } from './capture-off.svelte';
@@ -2943,6 +2959,7 @@ export { default as IconMatchstick } from './matchstick.svelte';
2943
2959
  export { default as IconMath1Divide2 } from './math-1-divide-2.svelte';
2944
2960
  export { default as IconMath1Divide3 } from './math-1-divide-3.svelte';
2945
2961
  export { default as IconMathAvg } from './math-avg.svelte';
2962
+ export { default as IconMathCos } from './math-cos.svelte';
2946
2963
  export { default as IconMathEqualGreater } from './math-equal-greater.svelte';
2947
2964
  export { default as IconMathEqualLower } from './math-equal-lower.svelte';
2948
2965
  export { default as IconMathFunctionOff } from './math-function-off.svelte';
@@ -2960,6 +2977,7 @@ export { default as IconMathNot } from './math-not.svelte';
2960
2977
  export { default as IconMathOff } from './math-off.svelte';
2961
2978
  export { default as IconMathPiDivide2 } from './math-pi-divide-2.svelte';
2962
2979
  export { default as IconMathPi } from './math-pi.svelte';
2980
+ export { default as IconMathSin } from './math-sin.svelte';
2963
2981
  export { default as IconMathSymbols } from './math-symbols.svelte';
2964
2982
  export { default as IconMathXDivide2 } from './math-x-divide-2.svelte';
2965
2983
  export { default as IconMathXDivideY2 } from './math-x-divide-y-2.svelte';
@@ -93,9 +93,14 @@ export { default as IconAlignLeft } from './align-left.svelte';
93
93
  export { default as IconAlignRight2 } from './align-right-2.svelte';
94
94
  export { default as IconAlignRight } from './align-right.svelte';
95
95
  export { default as IconAlpha } from './alpha.svelte';
96
+ export { default as IconAlphabetArabic } from './alphabet-arabic.svelte';
97
+ export { default as IconAlphabetBangla } from './alphabet-bangla.svelte';
96
98
  export { default as IconAlphabetCyrillic } from './alphabet-cyrillic.svelte';
97
99
  export { default as IconAlphabetGreek } from './alphabet-greek.svelte';
100
+ export { default as IconAlphabetHebrew } from './alphabet-hebrew.svelte';
101
+ export { default as IconAlphabetKorean } from './alphabet-korean.svelte';
98
102
  export { default as IconAlphabetLatin } from './alphabet-latin.svelte';
103
+ export { default as IconAlphabetThai } from './alphabet-thai.svelte';
99
104
  export { default as IconAlt } from './alt.svelte';
100
105
  export { default as IconAmbulance } from './ambulance.svelte';
101
106
  export { default as IconAmpersand } from './ampersand.svelte';
@@ -588,6 +593,12 @@ export { default as IconBraille } from './braille.svelte';
588
593
  export { default as IconBrain } from './brain.svelte';
589
594
  export { default as IconBrand4chan } from './brand-4chan.svelte';
590
595
  export { default as IconBrandAbstract } from './brand-abstract.svelte';
596
+ export { default as IconBrandAdobeAfterEffect } from './brand-adobe-after-effect.svelte';
597
+ export { default as IconBrandAdobeIllustrator } from './brand-adobe-illustrator.svelte';
598
+ export { default as IconBrandAdobeIndesign } from './brand-adobe-indesign.svelte';
599
+ export { default as IconBrandAdobePhotoshop } from './brand-adobe-photoshop.svelte';
600
+ export { default as IconBrandAdobePremier } from './brand-adobe-premier.svelte';
601
+ export { default as IconBrandAdobeXd } from './brand-adobe-xd.svelte';
591
602
  export { default as IconBrandAdobe } from './brand-adobe.svelte';
592
603
  export { default as IconBrandAdonisJs } from './brand-adonis-js.svelte';
593
604
  export { default as IconBrandAirbnb } from './brand-airbnb.svelte';
@@ -605,6 +616,7 @@ export { default as IconBrandAnsible } from './brand-ansible.svelte';
605
616
  export { default as IconBrandAo3 } from './brand-ao3.svelte';
606
617
  export { default as IconBrandAppgallery } from './brand-appgallery.svelte';
607
618
  export { default as IconBrandAppleArcade } from './brand-apple-arcade.svelte';
619
+ export { default as IconBrandAppleNews } from './brand-apple-news.svelte';
608
620
  export { default as IconBrandApplePodcast } from './brand-apple-podcast.svelte';
609
621
  export { default as IconBrandApple } from './brand-apple.svelte';
610
622
  export { default as IconBrandAppstore } from './brand-appstore.svelte';
@@ -732,6 +744,7 @@ export { default as IconBrandGravatar } from './brand-gravatar.svelte';
732
744
  export { default as IconBrandGrindr } from './brand-grindr.svelte';
733
745
  export { default as IconBrandGuardian } from './brand-guardian.svelte';
734
746
  export { default as IconBrandGumroad } from './brand-gumroad.svelte';
747
+ export { default as IconBrandHackerrank } from './brand-hackerrank.svelte';
735
748
  export { default as IconBrandHbo } from './brand-hbo.svelte';
736
749
  export { default as IconBrandHeadlessui } from './brand-headlessui.svelte';
737
750
  export { default as IconBrandHexo } from './brand-hexo.svelte';
@@ -1081,6 +1094,9 @@ export { default as IconCandyOff } from './candy-off.svelte';
1081
1094
  export { default as IconCandy } from './candy.svelte';
1082
1095
  export { default as IconCane } from './cane.svelte';
1083
1096
  export { default as IconCannabis } from './cannabis.svelte';
1097
+ export { default as IconCapProjecting } from './cap-projecting.svelte';
1098
+ export { default as IconCapRounded } from './cap-rounded.svelte';
1099
+ export { default as IconCapStraight } from './cap-straight.svelte';
1084
1100
  export { default as IconCapsuleHorizontal } from './capsule-horizontal.svelte';
1085
1101
  export { default as IconCapsule } from './capsule.svelte';
1086
1102
  export { default as IconCaptureOff } from './capture-off.svelte';
@@ -2943,6 +2959,7 @@ export { default as IconMatchstick } from './matchstick.svelte';
2943
2959
  export { default as IconMath1Divide2 } from './math-1-divide-2.svelte';
2944
2960
  export { default as IconMath1Divide3 } from './math-1-divide-3.svelte';
2945
2961
  export { default as IconMathAvg } from './math-avg.svelte';
2962
+ export { default as IconMathCos } from './math-cos.svelte';
2946
2963
  export { default as IconMathEqualGreater } from './math-equal-greater.svelte';
2947
2964
  export { default as IconMathEqualLower } from './math-equal-lower.svelte';
2948
2965
  export { default as IconMathFunctionOff } from './math-function-off.svelte';
@@ -2960,6 +2977,7 @@ export { default as IconMathNot } from './math-not.svelte';
2960
2977
  export { default as IconMathOff } from './math-off.svelte';
2961
2978
  export { default as IconMathPiDivide2 } from './math-pi-divide-2.svelte';
2962
2979
  export { default as IconMathPi } from './math-pi.svelte';
2980
+ export { default as IconMathSin } from './math-sin.svelte';
2963
2981
  export { default as IconMathSymbols } from './math-symbols.svelte';
2964
2982
  export { default as IconMathXDivide2 } from './math-x-divide-2.svelte';
2965
2983
  export { default as IconMathXDivideY2 } from './math-x-divide-y-2.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0" }], ["path", { "d": "M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2" }], ["path", { "d": "M17 15c.345 .6 1.258 1 2 1a2 2 0 1 0 0 -4a2 2 0 1 1 0 -4c.746 0 1.656 .394 2 1" }]];
3
+ </script>
4
+ <Icon type="outline" name="math-cos" {...$$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 MathCosProps = typeof __propDef.props;
13
+ export type MathCosEvents = typeof __propDef.events;
14
+ export type MathCosSlots = typeof __propDef.slots;
15
+ export default class MathCos extends SvelteComponentTyped<MathCosProps, MathCosEvents, MathCosSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 15c.345 .6 1.258 1 2 1a2 2 0 1 0 0 -4a2 2 0 1 1 0 -4c.746 0 1.656 .394 2 1" }], ["path", { "d": "M12 8v8" }], ["path", { "d": "M16 16v-8l4 8v-8" }]];
3
+ </script>
4
+ <Icon type="outline" name="math-sin" {...$$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 MathSinProps = typeof __propDef.props;
13
+ export type MathSinEvents = typeof __propDef.events;
14
+ export type MathSinSlots = typeof __propDef.slots;
15
+ export default class MathSin extends SvelteComponentTyped<MathSinProps, MathSinEvents, MathSinSlots> {
16
+ }
17
+ export {};
@@ -94,9 +94,14 @@ export default [
94
94
  "align-right-2",
95
95
  "align-right",
96
96
  "alpha",
97
+ "alphabet-arabic",
98
+ "alphabet-bangla",
97
99
  "alphabet-cyrillic",
98
100
  "alphabet-greek",
101
+ "alphabet-hebrew",
102
+ "alphabet-korean",
99
103
  "alphabet-latin",
104
+ "alphabet-thai",
100
105
  "alt",
101
106
  "ambulance",
102
107
  "ampersand",
@@ -589,6 +594,12 @@ export default [
589
594
  "brain",
590
595
  "brand-4chan",
591
596
  "brand-abstract",
597
+ "brand-adobe-after-effect",
598
+ "brand-adobe-illustrator",
599
+ "brand-adobe-indesign",
600
+ "brand-adobe-photoshop",
601
+ "brand-adobe-premier",
602
+ "brand-adobe-xd",
592
603
  "brand-adobe",
593
604
  "brand-adonis-js",
594
605
  "brand-airbnb",
@@ -606,6 +617,7 @@ export default [
606
617
  "brand-ao3",
607
618
  "brand-appgallery",
608
619
  "brand-apple-arcade",
620
+ "brand-apple-news",
609
621
  "brand-apple-podcast",
610
622
  "brand-apple",
611
623
  "brand-appstore",
@@ -733,6 +745,7 @@ export default [
733
745
  "brand-grindr",
734
746
  "brand-guardian",
735
747
  "brand-gumroad",
748
+ "brand-hackerrank",
736
749
  "brand-hbo",
737
750
  "brand-headlessui",
738
751
  "brand-hexo",
@@ -1082,6 +1095,9 @@ export default [
1082
1095
  "candy",
1083
1096
  "cane",
1084
1097
  "cannabis",
1098
+ "cap-projecting",
1099
+ "cap-rounded",
1100
+ "cap-straight",
1085
1101
  "capsule-horizontal",
1086
1102
  "capsule",
1087
1103
  "capture-off",
@@ -2944,6 +2960,7 @@ export default [
2944
2960
  "math-1-divide-2",
2945
2961
  "math-1-divide-3",
2946
2962
  "math-avg",
2963
+ "math-cos",
2947
2964
  "math-equal-greater",
2948
2965
  "math-equal-lower",
2949
2966
  "math-function-off",
@@ -2961,6 +2978,7 @@ export default [
2961
2978
  "math-off",
2962
2979
  "math-pi-divide-2",
2963
2980
  "math-pi",
2981
+ "math-sin",
2964
2982
  "math-symbols",
2965
2983
  "math-x-divide-2",
2966
2984
  "math-x-divide-y-2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.7.0",
3
+ "version": "3.8.0",
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.",
@@ -49,7 +49,7 @@
49
49
  "imports-check": "attw $(npm pack)"
50
50
  },
51
51
  "dependencies": {
52
- "@tabler/icons": "3.7.0"
52
+ "@tabler/icons": "3.8.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@sveltejs/package": "^2.2.7",