@tabler/icons-svelte 3.35.0 → 3.36.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 (47) hide show
  1. package/dist/icons/alphabet-polish.svelte +6 -0
  2. package/dist/icons/alphabet-polish.svelte.d.ts +17 -0
  3. package/dist/icons/alphabet-runes.svelte +6 -0
  4. package/dist/icons/alphabet-runes.svelte.d.ts +17 -0
  5. package/dist/icons/blind.svelte +6 -0
  6. package/dist/icons/blind.svelte.d.ts +17 -0
  7. package/dist/icons/brand-tabnine.svelte +6 -0
  8. package/dist/icons/brand-tabnine.svelte.d.ts +17 -0
  9. package/dist/icons/circle-asterisk.svelte +6 -0
  10. package/dist/icons/circle-asterisk.svelte.d.ts +17 -0
  11. package/dist/icons/deaf.svelte +6 -0
  12. package/dist/icons/deaf.svelte.d.ts +17 -0
  13. package/dist/icons/hexagon-asterisk.svelte +6 -0
  14. package/dist/icons/hexagon-asterisk.svelte.d.ts +17 -0
  15. package/dist/icons/index.d.ts +21 -0
  16. package/dist/icons/index.js +21 -0
  17. package/dist/icons/option.svelte +6 -0
  18. package/dist/icons/option.svelte.d.ts +17 -0
  19. package/dist/icons/ripple-down.svelte +6 -0
  20. package/dist/icons/ripple-down.svelte.d.ts +17 -0
  21. package/dist/icons/ripple-up.svelte +6 -0
  22. package/dist/icons/ripple-up.svelte.d.ts +17 -0
  23. package/dist/icons/rosette-asterisk.svelte +6 -0
  24. package/dist/icons/rosette-asterisk.svelte.d.ts +17 -0
  25. package/dist/icons/settings-ai.svelte +6 -0
  26. package/dist/icons/settings-ai.svelte.d.ts +17 -0
  27. package/dist/icons/sparkles-2.svelte +6 -0
  28. package/dist/icons/sparkles-2.svelte.d.ts +17 -0
  29. package/dist/icons/square-minus-2.svelte +6 -0
  30. package/dist/icons/square-minus-2.svelte.d.ts +17 -0
  31. package/dist/icons/square-minus.svelte +1 -1
  32. package/dist/icons/square-rotated-asterisk.svelte +6 -0
  33. package/dist/icons/square-rotated-asterisk.svelte.d.ts +17 -0
  34. package/dist/icons/subtitles-ai.svelte +6 -0
  35. package/dist/icons/subtitles-ai.svelte.d.ts +17 -0
  36. package/dist/icons/subtitles-edit.svelte +6 -0
  37. package/dist/icons/subtitles-edit.svelte.d.ts +17 -0
  38. package/dist/icons/subtitles-off.svelte +6 -0
  39. package/dist/icons/subtitles-off.svelte.d.ts +17 -0
  40. package/dist/icons/subtitles.svelte +6 -0
  41. package/dist/icons/subtitles.svelte.d.ts +17 -0
  42. package/dist/icons/volume-4.svelte +6 -0
  43. package/dist/icons/volume-4.svelte.d.ts +17 -0
  44. package/dist/icons/whisk.svelte +6 -0
  45. package/dist/icons/whisk.svelte.d.ts +17 -0
  46. package/dist/icons-list.js +21 -0
  47. package/package.json +12 -12
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3" }], ["path", { "d": "M16 7v10" }], ["path", { "d": "M18 11l-4 2" }], ["path", { "d": "M10.5 17a1.5 1.5 0 0 0 0 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="alphabet-polish" {...$$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 AlphabetPolishProps = typeof __propDef.props;
13
+ export type AlphabetPolishEvents = typeof __propDef.events;
14
+ export type AlphabetPolishSlots = typeof __propDef.slots;
15
+ export default class AlphabetPolish extends SvelteComponentTyped<AlphabetPolishProps, AlphabetPolishEvents, AlphabetPolishSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 18v-12" }], ["path", { "d": "M13 6l4 4l4 -4" }], ["path", { "d": "M11 18l-7 -8l4 -4l4 4l-7 8" }]];
3
+ </script>
4
+ <Icon type="outline" name="alphabet-runes" {...$$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 AlphabetRunesProps = typeof __propDef.props;
13
+ export type AlphabetRunesEvents = typeof __propDef.events;
14
+ export type AlphabetRunesSlots = typeof __propDef.slots;
15
+ export default class AlphabetRunes extends SvelteComponentTyped<AlphabetRunesProps, AlphabetRunesEvents, AlphabetRunesSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0" }], ["path", { "d": "M4 21l3 -4" }], ["path", { "d": "M13 21l-2 -4l-3 -3l1 -6" }], ["path", { "d": "M3 12l2 -3l4 -1l6 4" }], ["path", { "d": "M16.5 14l3.5 7" }]];
3
+ </script>
4
+ <Icon type="outline" name="blind" {...$$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 BlindProps = typeof __propDef.props;
13
+ export type BlindEvents = typeof __propDef.events;
14
+ export type BlindSlots = typeof __propDef.slots;
15
+ export default class Blind extends SvelteComponentTyped<BlindProps, BlindEvents, BlindSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20 12l-12 6.75m12 -6.75l-12 -6.75m12 6.75v-4.527l-8 -4.473l-4 2.25m12 6.75v4.5l-8 4.5l-4 -2.25m0 -13.5l-4 2.222v9.028l4 2.25z" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-tabnine" {...$$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 BrandTabnineProps = typeof __propDef.props;
13
+ export type BrandTabnineEvents = typeof __propDef.events;
14
+ export type BrandTabnineSlots = typeof __propDef.slots;
15
+ export default class BrandTabnine extends SvelteComponentTyped<BrandTabnineProps, BrandTabnineEvents, BrandTabnineSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 8.5v7" }], ["path", { "d": "M9 10l6 4" }], ["path", { "d": "M9 14l6 -4" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="circle-asterisk" {...$$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 CircleAsteriskProps = typeof __propDef.props;
13
+ export type CircleAsteriskEvents = typeof __propDef.events;
14
+ export type CircleAsteriskSlots = typeof __propDef.slots;
15
+ export default class CircleAsterisk extends SvelteComponentTyped<CircleAsteriskProps, CircleAsteriskEvents, CircleAsteriskSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4" }], ["path", { "d": "M10 10a3 3 0 1 1 5 2.2" }], ["path", { "d": "M5 13l4 4" }], ["path", { "d": "M9 13l-4 4" }]];
3
+ </script>
4
+ <Icon type="outline" name="deaf" {...$$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 DeafProps = typeof __propDef.props;
13
+ export type DeafEvents = typeof __propDef.events;
14
+ export type DeafSlots = typeof __propDef.slots;
15
+ export default class Deaf extends SvelteComponentTyped<DeafProps, DeafEvents, DeafSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.27 2.27 0 0 1 -2.184 0l-6.75 -4.27a2.23 2.23 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98z" }], ["path", { "d": "M12 8.5v7" }], ["path", { "d": "M9 10l6 4" }], ["path", { "d": "M9 14l6 -4" }]];
3
+ </script>
4
+ <Icon type="outline" name="hexagon-asterisk" {...$$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 HexagonAsteriskProps = typeof __propDef.props;
13
+ export type HexagonAsteriskEvents = typeof __propDef.events;
14
+ export type HexagonAsteriskSlots = typeof __propDef.slots;
15
+ export default class HexagonAsterisk extends SvelteComponentTyped<HexagonAsteriskProps, HexagonAsteriskEvents, HexagonAsteriskSlots> {
16
+ }
17
+ export {};
@@ -102,6 +102,8 @@ export { default as IconAlphabetGreek } from './alphabet-greek.svelte';
102
102
  export { default as IconAlphabetHebrew } from './alphabet-hebrew.svelte';
103
103
  export { default as IconAlphabetKorean } from './alphabet-korean.svelte';
104
104
  export { default as IconAlphabetLatin } from './alphabet-latin.svelte';
105
+ export { default as IconAlphabetPolish } from './alphabet-polish.svelte';
106
+ export { default as IconAlphabetRunes } from './alphabet-runes.svelte';
105
107
  export { default as IconAlphabetThai } from './alphabet-thai.svelte';
106
108
  export { default as IconAlt } from './alt.svelte';
107
109
  export { default as IconAmbulance } from './ambulance.svelte';
@@ -505,6 +507,7 @@ export { default as IconBleachOff } from './bleach-off.svelte';
505
507
  export { default as IconBleach } from './bleach.svelte';
506
508
  export { default as IconBlendMode } from './blend-mode.svelte';
507
509
  export { default as IconBlender } from './blender.svelte';
510
+ export { default as IconBlind } from './blind.svelte';
508
511
  export { default as IconBlob } from './blob.svelte';
509
512
  export { default as IconBlockquote } from './blockquote.svelte';
510
513
  export { default as IconBlocks } from './blocks.svelte';
@@ -907,6 +910,7 @@ export { default as IconBrandSvelte } from './brand-svelte.svelte';
907
910
  export { default as IconBrandSwift } from './brand-swift.svelte';
908
911
  export { default as IconBrandSymfony } from './brand-symfony.svelte';
909
912
  export { default as IconBrandTabler } from './brand-tabler.svelte';
913
+ export { default as IconBrandTabnine } from './brand-tabnine.svelte';
910
914
  export { default as IconBrandTailwind } from './brand-tailwind.svelte';
911
915
  export { default as IconBrandTaobao } from './brand-taobao.svelte';
912
916
  export { default as IconBrandTeams } from './brand-teams.svelte';
@@ -1299,6 +1303,7 @@ export { default as IconCircleArrowRight } from './circle-arrow-right.svelte';
1299
1303
  export { default as IconCircleArrowUpLeft } from './circle-arrow-up-left.svelte';
1300
1304
  export { default as IconCircleArrowUpRight } from './circle-arrow-up-right.svelte';
1301
1305
  export { default as IconCircleArrowUp } from './circle-arrow-up.svelte';
1306
+ export { default as IconCircleAsterisk } from './circle-asterisk.svelte';
1302
1307
  export { default as IconCircleCaretDown } from './circle-caret-down.svelte';
1303
1308
  export { default as IconCircleCaretLeft } from './circle-caret-left.svelte';
1304
1309
  export { default as IconCircleCaretRight } from './circle-caret-right.svelte';
@@ -1782,6 +1787,7 @@ export { default as IconDatabaseSmile } from './database-smile.svelte';
1782
1787
  export { default as IconDatabaseStar } from './database-star.svelte';
1783
1788
  export { default as IconDatabaseX } from './database-x.svelte';
1784
1789
  export { default as IconDatabase } from './database.svelte';
1790
+ export { default as IconDeaf } from './deaf.svelte';
1785
1791
  export { default as IconDecimal } from './decimal.svelte';
1786
1792
  export { default as IconDeer } from './deer.svelte';
1787
1793
  export { default as IconDelta } from './delta.svelte';
@@ -2603,6 +2609,7 @@ export { default as IconHemisphereOff } from './hemisphere-off.svelte';
2603
2609
  export { default as IconHemispherePlus } from './hemisphere-plus.svelte';
2604
2610
  export { default as IconHemisphere } from './hemisphere.svelte';
2605
2611
  export { default as IconHexagon3d } from './hexagon-3d.svelte';
2612
+ export { default as IconHexagonAsterisk } from './hexagon-asterisk.svelte';
2606
2613
  export { default as IconHexagonLetterA } from './hexagon-letter-a.svelte';
2607
2614
  export { default as IconHexagonLetterB } from './hexagon-letter-b.svelte';
2608
2615
  export { default as IconHexagonLetterC } from './hexagon-letter-c.svelte';
@@ -3585,6 +3592,7 @@ export { default as IconOlympicsOff } from './olympics-off.svelte';
3585
3592
  export { default as IconOlympics } from './olympics.svelte';
3586
3593
  export { default as IconOm } from './om.svelte';
3587
3594
  export { default as IconOmega } from './omega.svelte';
3595
+ export { default as IconOption } from './option.svelte';
3588
3596
  export { default as IconOutbound } from './outbound.svelte';
3589
3597
  export { default as IconOutlet } from './outlet.svelte';
3590
3598
  export { default as IconOvalVertical } from './oval-vertical.svelte';
@@ -3984,7 +3992,9 @@ export { default as IconRewindForward50 } from './rewind-forward-50.svelte';
3984
3992
  export { default as IconRewindForward60 } from './rewind-forward-60.svelte';
3985
3993
  export { default as IconRibbonHealth } from './ribbon-health.svelte';
3986
3994
  export { default as IconRings } from './rings.svelte';
3995
+ export { default as IconRippleDown } from './ripple-down.svelte';
3987
3996
  export { default as IconRippleOff } from './ripple-off.svelte';
3997
+ export { default as IconRippleUp } from './ripple-up.svelte';
3988
3998
  export { default as IconRipple } from './ripple.svelte';
3989
3999
  export { default as IconRoadOff } from './road-off.svelte';
3990
4000
  export { default as IconRoadSign } from './road-sign.svelte';
@@ -3997,6 +4007,7 @@ export { default as IconRocket } from './rocket.svelte';
3997
4007
  export { default as IconRollerSkating } from './roller-skating.svelte';
3998
4008
  export { default as IconRollercoasterOff } from './rollercoaster-off.svelte';
3999
4009
  export { default as IconRollercoaster } from './rollercoaster.svelte';
4010
+ export { default as IconRosetteAsterisk } from './rosette-asterisk.svelte';
4000
4011
  export { default as IconRosetteDiscountCheckOff } from './rosette-discount-check-off.svelte';
4001
4012
  export { default as IconRosetteDiscountCheck } from './rosette-discount-check.svelte';
4002
4013
  export { default as IconRosetteDiscountOff } from './rosette-discount-off.svelte';
@@ -4115,6 +4126,7 @@ export { default as IconServerSpark } from './server-spark.svelte';
4115
4126
  export { default as IconServer } from './server.svelte';
4116
4127
  export { default as IconServicemark } from './servicemark.svelte';
4117
4128
  export { default as IconSettings2 } from './settings-2.svelte';
4129
+ export { default as IconSettingsAi } from './settings-ai.svelte';
4118
4130
  export { default as IconSettingsAutomation } from './settings-automation.svelte';
4119
4131
  export { default as IconSettingsBolt } from './settings-bolt.svelte';
4120
4132
  export { default as IconSettingsCancel } from './settings-cancel.svelte';
@@ -4289,6 +4301,7 @@ export { default as IconSpaces } from './spaces.svelte';
4289
4301
  export { default as IconSpacingHorizontal } from './spacing-horizontal.svelte';
4290
4302
  export { default as IconSpacingVertical } from './spacing-vertical.svelte';
4291
4303
  export { default as IconSpade } from './spade.svelte';
4304
+ export { default as IconSparkles2 } from './sparkles-2.svelte';
4292
4305
  export { default as IconSparkles } from './sparkles.svelte';
4293
4306
  export { default as IconSpeakerphone } from './speakerphone.svelte';
4294
4307
  export { default as IconSpeedboat } from './speedboat.svelte';
@@ -4359,6 +4372,7 @@ export { default as IconSquareLetterW } from './square-letter-w.svelte';
4359
4372
  export { default as IconSquareLetterX } from './square-letter-x.svelte';
4360
4373
  export { default as IconSquareLetterY } from './square-letter-y.svelte';
4361
4374
  export { default as IconSquareLetterZ } from './square-letter-z.svelte';
4375
+ export { default as IconSquareMinus2 } from './square-minus-2.svelte';
4362
4376
  export { default as IconSquareMinus } from './square-minus.svelte';
4363
4377
  export { default as IconSquareNumber0 } from './square-number-0.svelte';
4364
4378
  export { default as IconSquareNumber1 } from './square-number-1.svelte';
@@ -4376,6 +4390,7 @@ export { default as IconSquarePlus2 } from './square-plus-2.svelte';
4376
4390
  export { default as IconSquarePlus } from './square-plus.svelte';
4377
4391
  export { default as IconSquareRoot2 } from './square-root-2.svelte';
4378
4392
  export { default as IconSquareRoot } from './square-root.svelte';
4393
+ export { default as IconSquareRotatedAsterisk } from './square-rotated-asterisk.svelte';
4379
4394
  export { default as IconSquareRotatedForbid2 } from './square-rotated-forbid-2.svelte';
4380
4395
  export { default as IconSquareRotatedForbid } from './square-rotated-forbid.svelte';
4381
4396
  export { default as IconSquareRotatedOff } from './square-rotated-off.svelte';
@@ -4481,6 +4496,10 @@ export { default as IconStrikethrough } from './strikethrough.svelte';
4481
4496
  export { default as IconSubmarine } from './submarine.svelte';
4482
4497
  export { default as IconSubscript } from './subscript.svelte';
4483
4498
  export { default as IconSubtask } from './subtask.svelte';
4499
+ export { default as IconSubtitlesAi } from './subtitles-ai.svelte';
4500
+ export { default as IconSubtitlesEdit } from './subtitles-edit.svelte';
4501
+ export { default as IconSubtitlesOff } from './subtitles-off.svelte';
4502
+ export { default as IconSubtitles } from './subtitles.svelte';
4484
4503
  export { default as IconSumOff } from './sum-off.svelte';
4485
4504
  export { default as IconSum } from './sum.svelte';
4486
4505
  export { default as IconSunElectricity } from './sun-electricity.svelte';
@@ -4814,6 +4833,7 @@ export { default as IconVocabulary } from './vocabulary.svelte';
4814
4833
  export { default as IconVolcano } from './volcano.svelte';
4815
4834
  export { default as IconVolume2 } from './volume-2.svelte';
4816
4835
  export { default as IconVolume3 } from './volume-3.svelte';
4836
+ export { default as IconVolume4 } from './volume-4.svelte';
4817
4837
  export { default as IconVolumeOff } from './volume-off.svelte';
4818
4838
  export { default as IconVolume } from './volume.svelte';
4819
4839
  export { default as IconVs } from './vs.svelte';
@@ -4870,6 +4890,7 @@ export { default as IconWheel } from './wheel.svelte';
4870
4890
  export { default as IconWheelchairOff } from './wheelchair-off.svelte';
4871
4891
  export { default as IconWheelchair } from './wheelchair.svelte';
4872
4892
  export { default as IconWhirl } from './whirl.svelte';
4893
+ export { default as IconWhisk } from './whisk.svelte';
4873
4894
  export { default as IconWifi0 } from './wifi-0.svelte';
4874
4895
  export { default as IconWifi1 } from './wifi-1.svelte';
4875
4896
  export { default as IconWifi2 } from './wifi-2.svelte';
@@ -102,6 +102,8 @@ export { default as IconAlphabetGreek } from './alphabet-greek.svelte';
102
102
  export { default as IconAlphabetHebrew } from './alphabet-hebrew.svelte';
103
103
  export { default as IconAlphabetKorean } from './alphabet-korean.svelte';
104
104
  export { default as IconAlphabetLatin } from './alphabet-latin.svelte';
105
+ export { default as IconAlphabetPolish } from './alphabet-polish.svelte';
106
+ export { default as IconAlphabetRunes } from './alphabet-runes.svelte';
105
107
  export { default as IconAlphabetThai } from './alphabet-thai.svelte';
106
108
  export { default as IconAlt } from './alt.svelte';
107
109
  export { default as IconAmbulance } from './ambulance.svelte';
@@ -505,6 +507,7 @@ export { default as IconBleachOff } from './bleach-off.svelte';
505
507
  export { default as IconBleach } from './bleach.svelte';
506
508
  export { default as IconBlendMode } from './blend-mode.svelte';
507
509
  export { default as IconBlender } from './blender.svelte';
510
+ export { default as IconBlind } from './blind.svelte';
508
511
  export { default as IconBlob } from './blob.svelte';
509
512
  export { default as IconBlockquote } from './blockquote.svelte';
510
513
  export { default as IconBlocks } from './blocks.svelte';
@@ -907,6 +910,7 @@ export { default as IconBrandSvelte } from './brand-svelte.svelte';
907
910
  export { default as IconBrandSwift } from './brand-swift.svelte';
908
911
  export { default as IconBrandSymfony } from './brand-symfony.svelte';
909
912
  export { default as IconBrandTabler } from './brand-tabler.svelte';
913
+ export { default as IconBrandTabnine } from './brand-tabnine.svelte';
910
914
  export { default as IconBrandTailwind } from './brand-tailwind.svelte';
911
915
  export { default as IconBrandTaobao } from './brand-taobao.svelte';
912
916
  export { default as IconBrandTeams } from './brand-teams.svelte';
@@ -1299,6 +1303,7 @@ export { default as IconCircleArrowRight } from './circle-arrow-right.svelte';
1299
1303
  export { default as IconCircleArrowUpLeft } from './circle-arrow-up-left.svelte';
1300
1304
  export { default as IconCircleArrowUpRight } from './circle-arrow-up-right.svelte';
1301
1305
  export { default as IconCircleArrowUp } from './circle-arrow-up.svelte';
1306
+ export { default as IconCircleAsterisk } from './circle-asterisk.svelte';
1302
1307
  export { default as IconCircleCaretDown } from './circle-caret-down.svelte';
1303
1308
  export { default as IconCircleCaretLeft } from './circle-caret-left.svelte';
1304
1309
  export { default as IconCircleCaretRight } from './circle-caret-right.svelte';
@@ -1782,6 +1787,7 @@ export { default as IconDatabaseSmile } from './database-smile.svelte';
1782
1787
  export { default as IconDatabaseStar } from './database-star.svelte';
1783
1788
  export { default as IconDatabaseX } from './database-x.svelte';
1784
1789
  export { default as IconDatabase } from './database.svelte';
1790
+ export { default as IconDeaf } from './deaf.svelte';
1785
1791
  export { default as IconDecimal } from './decimal.svelte';
1786
1792
  export { default as IconDeer } from './deer.svelte';
1787
1793
  export { default as IconDelta } from './delta.svelte';
@@ -2603,6 +2609,7 @@ export { default as IconHemisphereOff } from './hemisphere-off.svelte';
2603
2609
  export { default as IconHemispherePlus } from './hemisphere-plus.svelte';
2604
2610
  export { default as IconHemisphere } from './hemisphere.svelte';
2605
2611
  export { default as IconHexagon3d } from './hexagon-3d.svelte';
2612
+ export { default as IconHexagonAsterisk } from './hexagon-asterisk.svelte';
2606
2613
  export { default as IconHexagonLetterA } from './hexagon-letter-a.svelte';
2607
2614
  export { default as IconHexagonLetterB } from './hexagon-letter-b.svelte';
2608
2615
  export { default as IconHexagonLetterC } from './hexagon-letter-c.svelte';
@@ -3585,6 +3592,7 @@ export { default as IconOlympicsOff } from './olympics-off.svelte';
3585
3592
  export { default as IconOlympics } from './olympics.svelte';
3586
3593
  export { default as IconOm } from './om.svelte';
3587
3594
  export { default as IconOmega } from './omega.svelte';
3595
+ export { default as IconOption } from './option.svelte';
3588
3596
  export { default as IconOutbound } from './outbound.svelte';
3589
3597
  export { default as IconOutlet } from './outlet.svelte';
3590
3598
  export { default as IconOvalVertical } from './oval-vertical.svelte';
@@ -3984,7 +3992,9 @@ export { default as IconRewindForward50 } from './rewind-forward-50.svelte';
3984
3992
  export { default as IconRewindForward60 } from './rewind-forward-60.svelte';
3985
3993
  export { default as IconRibbonHealth } from './ribbon-health.svelte';
3986
3994
  export { default as IconRings } from './rings.svelte';
3995
+ export { default as IconRippleDown } from './ripple-down.svelte';
3987
3996
  export { default as IconRippleOff } from './ripple-off.svelte';
3997
+ export { default as IconRippleUp } from './ripple-up.svelte';
3988
3998
  export { default as IconRipple } from './ripple.svelte';
3989
3999
  export { default as IconRoadOff } from './road-off.svelte';
3990
4000
  export { default as IconRoadSign } from './road-sign.svelte';
@@ -3997,6 +4007,7 @@ export { default as IconRocket } from './rocket.svelte';
3997
4007
  export { default as IconRollerSkating } from './roller-skating.svelte';
3998
4008
  export { default as IconRollercoasterOff } from './rollercoaster-off.svelte';
3999
4009
  export { default as IconRollercoaster } from './rollercoaster.svelte';
4010
+ export { default as IconRosetteAsterisk } from './rosette-asterisk.svelte';
4000
4011
  export { default as IconRosetteDiscountCheckOff } from './rosette-discount-check-off.svelte';
4001
4012
  export { default as IconRosetteDiscountCheck } from './rosette-discount-check.svelte';
4002
4013
  export { default as IconRosetteDiscountOff } from './rosette-discount-off.svelte';
@@ -4115,6 +4126,7 @@ export { default as IconServerSpark } from './server-spark.svelte';
4115
4126
  export { default as IconServer } from './server.svelte';
4116
4127
  export { default as IconServicemark } from './servicemark.svelte';
4117
4128
  export { default as IconSettings2 } from './settings-2.svelte';
4129
+ export { default as IconSettingsAi } from './settings-ai.svelte';
4118
4130
  export { default as IconSettingsAutomation } from './settings-automation.svelte';
4119
4131
  export { default as IconSettingsBolt } from './settings-bolt.svelte';
4120
4132
  export { default as IconSettingsCancel } from './settings-cancel.svelte';
@@ -4289,6 +4301,7 @@ export { default as IconSpaces } from './spaces.svelte';
4289
4301
  export { default as IconSpacingHorizontal } from './spacing-horizontal.svelte';
4290
4302
  export { default as IconSpacingVertical } from './spacing-vertical.svelte';
4291
4303
  export { default as IconSpade } from './spade.svelte';
4304
+ export { default as IconSparkles2 } from './sparkles-2.svelte';
4292
4305
  export { default as IconSparkles } from './sparkles.svelte';
4293
4306
  export { default as IconSpeakerphone } from './speakerphone.svelte';
4294
4307
  export { default as IconSpeedboat } from './speedboat.svelte';
@@ -4359,6 +4372,7 @@ export { default as IconSquareLetterW } from './square-letter-w.svelte';
4359
4372
  export { default as IconSquareLetterX } from './square-letter-x.svelte';
4360
4373
  export { default as IconSquareLetterY } from './square-letter-y.svelte';
4361
4374
  export { default as IconSquareLetterZ } from './square-letter-z.svelte';
4375
+ export { default as IconSquareMinus2 } from './square-minus-2.svelte';
4362
4376
  export { default as IconSquareMinus } from './square-minus.svelte';
4363
4377
  export { default as IconSquareNumber0 } from './square-number-0.svelte';
4364
4378
  export { default as IconSquareNumber1 } from './square-number-1.svelte';
@@ -4376,6 +4390,7 @@ export { default as IconSquarePlus2 } from './square-plus-2.svelte';
4376
4390
  export { default as IconSquarePlus } from './square-plus.svelte';
4377
4391
  export { default as IconSquareRoot2 } from './square-root-2.svelte';
4378
4392
  export { default as IconSquareRoot } from './square-root.svelte';
4393
+ export { default as IconSquareRotatedAsterisk } from './square-rotated-asterisk.svelte';
4379
4394
  export { default as IconSquareRotatedForbid2 } from './square-rotated-forbid-2.svelte';
4380
4395
  export { default as IconSquareRotatedForbid } from './square-rotated-forbid.svelte';
4381
4396
  export { default as IconSquareRotatedOff } from './square-rotated-off.svelte';
@@ -4481,6 +4496,10 @@ export { default as IconStrikethrough } from './strikethrough.svelte';
4481
4496
  export { default as IconSubmarine } from './submarine.svelte';
4482
4497
  export { default as IconSubscript } from './subscript.svelte';
4483
4498
  export { default as IconSubtask } from './subtask.svelte';
4499
+ export { default as IconSubtitlesAi } from './subtitles-ai.svelte';
4500
+ export { default as IconSubtitlesEdit } from './subtitles-edit.svelte';
4501
+ export { default as IconSubtitlesOff } from './subtitles-off.svelte';
4502
+ export { default as IconSubtitles } from './subtitles.svelte';
4484
4503
  export { default as IconSumOff } from './sum-off.svelte';
4485
4504
  export { default as IconSum } from './sum.svelte';
4486
4505
  export { default as IconSunElectricity } from './sun-electricity.svelte';
@@ -4814,6 +4833,7 @@ export { default as IconVocabulary } from './vocabulary.svelte';
4814
4833
  export { default as IconVolcano } from './volcano.svelte';
4815
4834
  export { default as IconVolume2 } from './volume-2.svelte';
4816
4835
  export { default as IconVolume3 } from './volume-3.svelte';
4836
+ export { default as IconVolume4 } from './volume-4.svelte';
4817
4837
  export { default as IconVolumeOff } from './volume-off.svelte';
4818
4838
  export { default as IconVolume } from './volume.svelte';
4819
4839
  export { default as IconVs } from './vs.svelte';
@@ -4870,6 +4890,7 @@ export { default as IconWheel } from './wheel.svelte';
4870
4890
  export { default as IconWheelchairOff } from './wheelchair-off.svelte';
4871
4891
  export { default as IconWheelchair } from './wheelchair.svelte';
4872
4892
  export { default as IconWhirl } from './whirl.svelte';
4893
+ export { default as IconWhisk } from './whisk.svelte';
4873
4894
  export { default as IconWifi0 } from './wifi-0.svelte';
4874
4895
  export { default as IconWifi1 } from './wifi-1.svelte';
4875
4896
  export { default as IconWifi2 } from './wifi-2.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14 6h5m0 12h-5l-5 -12h-4" }]];
3
+ </script>
4
+ <Icon type="outline" name="option" {...$$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 OptionProps = typeof __propDef.props;
13
+ export type OptionEvents = typeof __propDef.events;
14
+ export type OptionSlots = typeof __propDef.slots;
15
+ export default class Option extends SvelteComponentTyped<OptionProps, OptionEvents, OptionSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 7q 4.5 -3 9 0t 9 0" }], ["path", { "d": "M3 17q 4.5 -3 9 0q .213 .142 .427 .27" }], ["path", { "d": "M3 12q 4.5 -3 9 0q 2.006 1.338 4.012 1.482" }], ["path", { "d": "M19 16v6" }], ["path", { "d": "M22 19l-3 3l-3 -3" }]];
3
+ </script>
4
+ <Icon type="outline" name="ripple-down" {...$$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 RippleDownProps = typeof __propDef.props;
13
+ export type RippleDownEvents = typeof __propDef.events;
14
+ export type RippleDownSlots = typeof __propDef.slots;
15
+ export default class RippleDown extends SvelteComponentTyped<RippleDownProps, RippleDownEvents, RippleDownSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 7q 4.5 -3 9 0t 9 0" }], ["path", { "d": "M3 17q 4.5 -3 9 0q .218 .144 .434 .275" }], ["path", { "d": "M3 12q 4.5 -3 9 0q 1.941 1.294 3.882 1.472" }], ["path", { "d": "M19 22v-6" }], ["path", { "d": "M22 19l-3 -3l-3 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="ripple-up" {...$$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 RippleUpProps = typeof __propDef.props;
13
+ export type RippleUpEvents = typeof __propDef.events;
14
+ export type RippleUpSlots = typeof __propDef.slots;
15
+ export default class RippleUp extends SvelteComponentTyped<RippleUpProps, RippleUpEvents, RippleUpSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55z" }], ["path", { "d": "M12 8.5v7" }], ["path", { "d": "M9 10l6 4" }], ["path", { "d": "M9 14l6 -4" }]];
3
+ </script>
4
+ <Icon type="outline" name="rosette-asterisk" {...$$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 RosetteAsteriskProps = typeof __propDef.props;
13
+ export type RosetteAsteriskEvents = typeof __propDef.events;
14
+ export type RosetteAsteriskSlots = typeof __propDef.slots;
15
+ export default class RosetteAsterisk extends SvelteComponentTyped<RosetteAsteriskProps, RosetteAsteriskEvents, RosetteAsteriskSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065" }], ["path", { "d": "M9 14v-2.5a1.5 1.5 0 0 1 3 0v2.5" }], ["path", { "d": "M9 13h3" }], ["path", { "d": "M15 10v4" }]];
3
+ </script>
4
+ <Icon type="outline" name="settings-ai" {...$$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 SettingsAiProps = typeof __propDef.props;
13
+ export type SettingsAiEvents = typeof __propDef.events;
14
+ export type SettingsAiSlots = typeof __propDef.slots;
15
+ export default class SettingsAi extends SvelteComponentTyped<SettingsAiProps, SettingsAiEvents, SettingsAiSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13 7a9.3 9.3 0 0 0 1.516 -.546c.911 -.438 1.494 -1.015 1.937 -1.932c.207 -.428 .382 -.928 .547 -1.522c.165 .595 .34 1.095 .547 1.521c.443 .918 1.026 1.495 1.937 1.933c.426 .205 .925 .38 1.516 .546a9.3 9.3 0 0 0 -1.516 .547c-.911 .438 -1.494 1.015 -1.937 1.932a9 9 0 0 0 -.547 1.521c-.165 -.594 -.34 -1.095 -.547 -1.521c-.443 -.918 -1.026 -1.494 -1.937 -1.932a9 9 0 0 0 -1.516 -.547" }], ["path", { "d": "M3 14a21 21 0 0 0 1.652 -.532c2.542 -.953 3.853 -2.238 4.816 -4.806a20 20 0 0 0 .532 -1.662a20 20 0 0 0 .532 1.662c.963 2.567 2.275 3.853 4.816 4.806q .75 .28 1.652 .532a21 21 0 0 0 -1.652 .532c-2.542 .953 -3.854 2.238 -4.816 4.806a20 20 0 0 0 -.532 1.662a20 20 0 0 0 -.532 -1.662c-.963 -2.568 -2.275 -3.853 -4.816 -4.806a21 21 0 0 0 -1.652 -.532" }]];
3
+ </script>
4
+ <Icon type="outline" name="sparkles-2" {...$$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 Sparkles_2Props = typeof __propDef.props;
13
+ export type Sparkles_2Events = typeof __propDef.events;
14
+ export type Sparkles_2Slots = typeof __propDef.slots;
15
+ export default class Sparkles_2 extends SvelteComponentTyped<Sparkles_2Props, Sparkles_2Events, Sparkles_2Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10" }], ["path", { "d": "M16 19h6" }]];
3
+ </script>
4
+ <Icon type="outline" name="square-minus-2" {...$$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 SquareMinus_2Props = typeof __propDef.props;
13
+ export type SquareMinus_2Events = typeof __propDef.events;
14
+ export type SquareMinus_2Slots = typeof __propDef.slots;
15
+ export default class SquareMinus_2 extends SvelteComponentTyped<SquareMinus_2Props, SquareMinus_2Events, SquareMinus_2Slots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10" }], ["path", { "d": "M16 19h6" }]];
2
+ const iconNode = [["path", { "d": "M9 12h6" }], ["path", { "d": "M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="square-minus" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z" }], ["path", { "d": "M12 8.5v7" }], ["path", { "d": "M9 10l6 4" }], ["path", { "d": "M9 14l6 -4" }]];
3
+ </script>
4
+ <Icon type="outline" name="square-rotated-asterisk" {...$$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 SquareRotatedAsteriskProps = typeof __propDef.props;
13
+ export type SquareRotatedAsteriskEvents = typeof __propDef.events;
14
+ export type SquareRotatedAsteriskSlots = typeof __propDef.slots;
15
+ export default class SquareRotatedAsterisk extends SvelteComponentTyped<SquareRotatedAsteriskProps, SquareRotatedAsteriskEvents, SquareRotatedAsteriskSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M11.5 19h-5.5a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4" }], ["path", { "d": "M7 15h5" }], ["path", { "d": "M17 12h-3" }], ["path", { "d": "M11 12h-1" }], ["path", { "d": "M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="subtitles-ai" {...$$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 SubtitlesAiProps = typeof __propDef.props;
13
+ export type SubtitlesAiEvents = typeof __propDef.events;
14
+ export type SubtitlesAiSlots = typeof __propDef.slots;
15
+ export default class SubtitlesAi extends SvelteComponentTyped<SubtitlesAiProps, SubtitlesAiEvents, SubtitlesAiSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M11.5 19h-5.5a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3" }], ["path", { "d": "M7 15h5" }], ["path", { "d": "M17 12h-3" }], ["path", { "d": "M11 12h-1" }], ["path", { "d": "M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3z" }]];
3
+ </script>
4
+ <Icon type="outline" name="subtitles-edit" {...$$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 SubtitlesEditProps = typeof __propDef.props;
13
+ export type SubtitlesEditEvents = typeof __propDef.events;
14
+ export type SubtitlesEditSlots = typeof __propDef.slots;
15
+ export default class SubtitlesEdit extends SvelteComponentTyped<SubtitlesEditProps, SubtitlesEditEvents, SubtitlesEditSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.13 .874m-2.006 2a3 3 0 0 1 -.864 .126h-12a3 3 0 0 1 -3 -3v-8c0 -1.35 .893 -2.493 2.12 -2.869" }], ["path", { "d": "M7 15h5" }], ["path", { "d": "M17 12h-1" }], ["path", { "d": "M12 12h-2" }], ["path", { "d": "M3 3l18 18" }]];
3
+ </script>
4
+ <Icon type="outline" name="subtitles-off" {...$$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 SubtitlesOffProps = typeof __propDef.props;
13
+ export type SubtitlesOffEvents = typeof __propDef.events;
14
+ export type SubtitlesOffSlots = typeof __propDef.slots;
15
+ export default class SubtitlesOff extends SvelteComponentTyped<SubtitlesOffProps, SubtitlesOffEvents, SubtitlesOffSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M18 5a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3z" }], ["path", { "d": "M7 15h5" }], ["path", { "d": "M15 15h2" }], ["path", { "d": "M17 12h-3" }], ["path", { "d": "M11 12h-1" }]];
3
+ </script>
4
+ <Icon type="outline" name="subtitles" {...$$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 SubtitlesProps = typeof __propDef.props;
13
+ export type SubtitlesEvents = typeof __propDef.events;
14
+ export type SubtitlesSlots = typeof __propDef.slots;
15
+ export default class Subtitles extends SvelteComponentTyped<SubtitlesProps, SubtitlesEvents, SubtitlesSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["g", { "transform": "translate(1.5, 0)" }]];
3
+ </script>
4
+ <Icon type="outline" name="volume-4" {...$$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 Volume_4Props = typeof __propDef.props;
13
+ export type Volume_4Events = typeof __propDef.events;
14
+ export type Volume_4Slots = typeof __propDef.slots;
15
+ export default class Volume_4 extends SvelteComponentTyped<Volume_4Props, Volume_4Events, Volume_4Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M21.015 3.035l-16.515 16.465" }], ["path", { "d": "M3.173 17.619a4.63 4.63 0 0 0 3.284 3.26a4.67 4.67 0 0 0 4.487 -1.194c1.85 -1.836 4.07 -10.65 4.07 -10.65s-8.88 2.296 -10.639 4.132a4.59 4.59 0 0 0 -1.202 4.452" }]];
3
+ </script>
4
+ <Icon type="outline" name="whisk" {...$$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 WhiskProps = typeof __propDef.props;
13
+ export type WhiskEvents = typeof __propDef.events;
14
+ export type WhiskSlots = typeof __propDef.slots;
15
+ export default class Whisk extends SvelteComponentTyped<WhiskProps, WhiskEvents, WhiskSlots> {
16
+ }
17
+ export {};
@@ -103,6 +103,8 @@ export default [
103
103
  "alphabet-hebrew",
104
104
  "alphabet-korean",
105
105
  "alphabet-latin",
106
+ "alphabet-polish",
107
+ "alphabet-runes",
106
108
  "alphabet-thai",
107
109
  "alt",
108
110
  "ambulance",
@@ -506,6 +508,7 @@ export default [
506
508
  "bleach",
507
509
  "blend-mode",
508
510
  "blender",
511
+ "blind",
509
512
  "blob",
510
513
  "blockquote",
511
514
  "blocks",
@@ -908,6 +911,7 @@ export default [
908
911
  "brand-swift",
909
912
  "brand-symfony",
910
913
  "brand-tabler",
914
+ "brand-tabnine",
911
915
  "brand-tailwind",
912
916
  "brand-taobao",
913
917
  "brand-teams",
@@ -1300,6 +1304,7 @@ export default [
1300
1304
  "circle-arrow-up-left",
1301
1305
  "circle-arrow-up-right",
1302
1306
  "circle-arrow-up",
1307
+ "circle-asterisk",
1303
1308
  "circle-caret-down",
1304
1309
  "circle-caret-left",
1305
1310
  "circle-caret-right",
@@ -1783,6 +1788,7 @@ export default [
1783
1788
  "database-star",
1784
1789
  "database-x",
1785
1790
  "database",
1791
+ "deaf",
1786
1792
  "decimal",
1787
1793
  "deer",
1788
1794
  "delta",
@@ -2604,6 +2610,7 @@ export default [
2604
2610
  "hemisphere-plus",
2605
2611
  "hemisphere",
2606
2612
  "hexagon-3d",
2613
+ "hexagon-asterisk",
2607
2614
  "hexagon-letter-a",
2608
2615
  "hexagon-letter-b",
2609
2616
  "hexagon-letter-c",
@@ -3586,6 +3593,7 @@ export default [
3586
3593
  "olympics",
3587
3594
  "om",
3588
3595
  "omega",
3596
+ "option",
3589
3597
  "outbound",
3590
3598
  "outlet",
3591
3599
  "oval-vertical",
@@ -3985,7 +3993,9 @@ export default [
3985
3993
  "rewind-forward-60",
3986
3994
  "ribbon-health",
3987
3995
  "rings",
3996
+ "ripple-down",
3988
3997
  "ripple-off",
3998
+ "ripple-up",
3989
3999
  "ripple",
3990
4000
  "road-off",
3991
4001
  "road-sign",
@@ -3998,6 +4008,7 @@ export default [
3998
4008
  "roller-skating",
3999
4009
  "rollercoaster-off",
4000
4010
  "rollercoaster",
4011
+ "rosette-asterisk",
4001
4012
  "rosette-discount-check-off",
4002
4013
  "rosette-discount-check",
4003
4014
  "rosette-discount-off",
@@ -4116,6 +4127,7 @@ export default [
4116
4127
  "server",
4117
4128
  "servicemark",
4118
4129
  "settings-2",
4130
+ "settings-ai",
4119
4131
  "settings-automation",
4120
4132
  "settings-bolt",
4121
4133
  "settings-cancel",
@@ -4290,6 +4302,7 @@ export default [
4290
4302
  "spacing-horizontal",
4291
4303
  "spacing-vertical",
4292
4304
  "spade",
4305
+ "sparkles-2",
4293
4306
  "sparkles",
4294
4307
  "speakerphone",
4295
4308
  "speedboat",
@@ -4360,6 +4373,7 @@ export default [
4360
4373
  "square-letter-x",
4361
4374
  "square-letter-y",
4362
4375
  "square-letter-z",
4376
+ "square-minus-2",
4363
4377
  "square-minus",
4364
4378
  "square-number-0",
4365
4379
  "square-number-1",
@@ -4377,6 +4391,7 @@ export default [
4377
4391
  "square-plus",
4378
4392
  "square-root-2",
4379
4393
  "square-root",
4394
+ "square-rotated-asterisk",
4380
4395
  "square-rotated-forbid-2",
4381
4396
  "square-rotated-forbid",
4382
4397
  "square-rotated-off",
@@ -4482,6 +4497,10 @@ export default [
4482
4497
  "submarine",
4483
4498
  "subscript",
4484
4499
  "subtask",
4500
+ "subtitles-ai",
4501
+ "subtitles-edit",
4502
+ "subtitles-off",
4503
+ "subtitles",
4485
4504
  "sum-off",
4486
4505
  "sum",
4487
4506
  "sun-electricity",
@@ -4815,6 +4834,7 @@ export default [
4815
4834
  "volcano",
4816
4835
  "volume-2",
4817
4836
  "volume-3",
4837
+ "volume-4",
4818
4838
  "volume-off",
4819
4839
  "volume",
4820
4840
  "vs",
@@ -4871,6 +4891,7 @@ export default [
4871
4891
  "wheelchair-off",
4872
4892
  "wheelchair",
4873
4893
  "whirl",
4894
+ "whisk",
4874
4895
  "wifi-0",
4875
4896
  "wifi-1",
4876
4897
  "wifi-2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.35.0",
3
+ "version": "3.36.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.",
@@ -40,8 +40,17 @@
40
40
  "files": [
41
41
  "dist"
42
42
  ],
43
+ "scripts": {
44
+ "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:package",
45
+ "build:icons": "node build.mjs",
46
+ "build:package": "svelte-package --input ./src",
47
+ "copy:license": "cp ../../LICENSE ./LICENSE",
48
+ "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
49
+ "test": "vitest run",
50
+ "imports-check": "attw $(npm pack)"
51
+ },
43
52
  "dependencies": {
44
- "@tabler/icons": "3.35.0"
53
+ "@tabler/icons": "3.36.0"
45
54
  },
46
55
  "devDependencies": {
47
56
  "@sveltejs/package": "^2.2.7",
@@ -54,14 +63,5 @@
54
63
  },
55
64
  "peerDependencies": {
56
65
  "svelte": ">=3 <6 || >=5.0.0-next.0"
57
- },
58
- "scripts": {
59
- "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:package",
60
- "build:icons": "node build.mjs",
61
- "build:package": "svelte-package --input ./src",
62
- "copy:license": "cp ../../LICENSE ./LICENSE",
63
- "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
64
- "test": "vitest run",
65
- "imports-check": "attw $(npm pack)"
66
66
  }
67
- }
67
+ }