tera-system-ui 0.0.16 → 0.0.18

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 (67) hide show
  1. package/dist/components/brand-logo/BrandLogo.svelte +31 -31
  2. package/dist/components/button/Button.svelte +49 -49
  3. package/dist/components/combobox/Combobox.svelte +8 -8
  4. package/dist/components/command/command.scss +72 -72
  5. package/dist/components/command/components/Command.svelte +120 -120
  6. package/dist/components/command/components/CommandEmpty.svelte +30 -30
  7. package/dist/components/command/components/CommandGroup.svelte +110 -110
  8. package/dist/components/command/components/CommandInput.svelte +92 -92
  9. package/dist/components/command/components/CommandItem.svelte +110 -110
  10. package/dist/components/command/components/CommandList.svelte +56 -56
  11. package/dist/components/command/components/CommandLoading.svelte +28 -28
  12. package/dist/components/command/components/CommandSeparator.svelte +21 -21
  13. package/dist/components/dialog/Dialog.svelte +107 -107
  14. package/dist/components/dialog/dialog.scss +112 -112
  15. package/dist/components/header/Header.svelte +36 -36
  16. package/dist/components/header/header.scss +19 -19
  17. package/dist/components/icons/IconArrowBigRightFilled.svelte +10 -10
  18. package/dist/components/icons/IconBook.svelte +10 -10
  19. package/dist/components/icons/IconBookmarkPlus.svelte +10 -10
  20. package/dist/components/icons/IconCalculator.svelte +10 -10
  21. package/dist/components/icons/IconCheck.svelte +10 -10
  22. package/dist/components/icons/IconChevronDown.svelte +10 -10
  23. package/dist/components/icons/IconCopy.svelte +10 -10
  24. package/dist/components/icons/IconCopyCheckFilled.svelte +10 -10
  25. package/dist/components/icons/IconHamburger.svelte +10 -10
  26. package/dist/components/icons/IconLanguage.svelte +10 -10
  27. package/dist/components/icons/IconLoader2.svelte +10 -10
  28. package/dist/components/icons/IconMoon.svelte +10 -10
  29. package/dist/components/icons/IconPointFilled.svelte +10 -10
  30. package/dist/components/icons/IconSearch.svelte +10 -10
  31. package/dist/components/icons/IconSun.svelte +10 -10
  32. package/dist/components/icons/IconSwitchHorizontal.svelte +10 -10
  33. package/dist/components/icons/IconSwitchVertical.svelte +10 -10
  34. package/dist/components/icons/IconTransform.svelte +10 -10
  35. package/dist/components/icons/IconX.svelte +10 -10
  36. package/dist/components/input/Input.svelte +24 -24
  37. package/dist/components/language-picker-button/LanguagePickerButton.svelte +109 -109
  38. package/dist/components/light-dark-toggle/LightDarkToggle.svelte +36 -36
  39. package/dist/components/popover/Popover.svelte +136 -136
  40. package/dist/components/popover-responsive/PopoverResponsive.svelte +87 -87
  41. package/dist/components/side-navigation/SideNavigation.svelte +114 -113
  42. package/dist/components/side-navigation/SideNavigationItem.svelte +17 -17
  43. package/dist/components/side-navigation/SideNavigationLayout.svelte +19 -19
  44. package/dist/components/side-navigation/sidenav.scss +149 -149
  45. package/dist/components/tera-ui-context/TeraUiContext.svelte +28 -28
  46. package/dist/paraglide/messages/de.d.ts +3 -0
  47. package/dist/paraglide/messages/de.js +24 -0
  48. package/dist/paraglide/messages/en.d.ts +3 -0
  49. package/dist/paraglide/messages/en.js +24 -0
  50. package/dist/paraglide/messages/es.d.ts +3 -0
  51. package/dist/paraglide/messages/es.js +24 -0
  52. package/dist/paraglide/messages/fr.d.ts +3 -0
  53. package/dist/paraglide/messages/fr.js +24 -0
  54. package/dist/paraglide/messages/it.d.ts +3 -0
  55. package/dist/paraglide/messages/it.js +24 -0
  56. package/dist/paraglide/messages/pt.d.ts +3 -0
  57. package/dist/paraglide/messages/pt.js +24 -0
  58. package/dist/paraglide/messages/ru.d.ts +3 -0
  59. package/dist/paraglide/messages/ru.js +24 -0
  60. package/dist/paraglide/messages/vi.d.ts +3 -0
  61. package/dist/paraglide/messages/vi.js +24 -0
  62. package/dist/paraglide/messages.d.ts +9 -0
  63. package/dist/paraglide/messages.js +84 -0
  64. package/dist/themes/scrollbar.scss +37 -37
  65. package/package.json +95 -94
  66. package/scripts/add-component-template.js +120 -120
  67. package/scripts/generate-ts-index.js +136 -136
@@ -1,113 +1,113 @@
1
- .dialog-box {
2
- max-height: calc(100svh - 1rem);
3
- overflow-y: auto;
4
- overscroll-behavior: contain;
5
- display: grid;
6
- grid-template-rows: auto 1fr auto;
7
- width: 100%;
8
- @apply bg-neutral-token-1 relative top-0 left-0 bottom-0;
9
-
10
- }
11
-
12
- dialog, dialog:modal {
13
- max-height: 100svh;
14
- width: 100%;
15
- height: fit-content;
16
- }
17
-
18
- dialog {
19
- &[size="xs"] {
20
- width: 24rem;
21
- max-width: min(calc(100vw - 1rem), 24rem);
22
- }
23
- &[size="sm"] {
24
- width: 30rem;
25
- max-width: min(calc(100vw - 1rem), 30rem);
26
- }
27
-
28
- &[size="md"] {
29
- width: 40rem;
30
- max-width: min(calc(100vw - 1rem), 40rem);
31
- }
32
-
33
- &[size="lg"] {
34
- width: 50rem;
35
- max-width: min(calc(100vw - 1rem), 50rem);
36
- }
37
-
38
- &[size="full"] {
39
- width: 100vw;
40
- max-width: 100vw;
41
- @apply rounded-none;
42
- }
43
-
44
- }
45
-
46
- dialog[open] {
47
- //@apply grid place-content-center grid-cols-1;
48
- @apply inline-flex;
49
- }
50
-
51
- dialog {
52
- &[data-position="top"] {
53
- position: fixed;
54
- top: 0;
55
- left: 50%;
56
- transform: translateX(-50%) translateY(0.5rem);
57
- margin: 0;
58
- }
59
-
60
-
61
- --transition-duration: 0.2s;
62
- transform: translateY(0px);
63
-
64
- &, &::backdrop {
65
- transition: display var(--transition-duration) allow-discrete, overlay var(--transition-duration) allow-discrete, opacity var(--transition-duration), transform var(--transition-duration) allow-discrete,;
66
- opacity: 0;
67
- }
68
-
69
- &[open] {
70
- opacity: 1;
71
- &::backdrop {
72
- opacity: 1;
73
- }
74
- }
75
-
76
- &:not([open]) {
77
- transform: translateX(0) translateY(-40px);
78
-
79
- &[data-position="top"] {
80
- top: 0;
81
- left: 50%;
82
- transform: translateX(-50%) translateY(-40px);
83
- }
84
-
85
- opacity: 0;
86
-
87
- &::backdrop {
88
- opacity: 0; /* Fade-out backdrop */
89
- }
90
- }
91
-
92
- @starting-style {
93
- &[open] {
94
- transform: translateX(0) translateY(-40px);
95
-
96
- &[data-position="top"] {
97
- top: 0;
98
- left: 50%;
99
- transform: translateX(-50%) translateY(-40px);
100
- }
101
- }
102
-
103
- &[open],
104
- &[open]::backdrop {
105
- opacity: 0;
106
- }
107
- }
108
- }
109
-
110
-
111
- dialog::backdrop {
112
- @apply backdrop-blur-[0.2rem] bg-neutral-token-13/20;
1
+ .dialog-box {
2
+ max-height: calc(100svh - 1rem);
3
+ overflow-y: auto;
4
+ overscroll-behavior: contain;
5
+ display: grid;
6
+ grid-template-rows: auto 1fr auto;
7
+ width: 100%;
8
+ @apply bg-neutral-token-1 relative top-0 left-0 bottom-0;
9
+
10
+ }
11
+
12
+ dialog, dialog:modal {
13
+ max-height: 100svh;
14
+ width: 100%;
15
+ height: fit-content;
16
+ }
17
+
18
+ dialog {
19
+ &[size="xs"] {
20
+ width: 24rem;
21
+ max-width: min(calc(100vw - 1rem), 24rem);
22
+ }
23
+ &[size="sm"] {
24
+ width: 30rem;
25
+ max-width: min(calc(100vw - 1rem), 30rem);
26
+ }
27
+
28
+ &[size="md"] {
29
+ width: 40rem;
30
+ max-width: min(calc(100vw - 1rem), 40rem);
31
+ }
32
+
33
+ &[size="lg"] {
34
+ width: 50rem;
35
+ max-width: min(calc(100vw - 1rem), 50rem);
36
+ }
37
+
38
+ &[size="full"] {
39
+ width: 100vw;
40
+ max-width: 100vw;
41
+ @apply rounded-none;
42
+ }
43
+
44
+ }
45
+
46
+ dialog[open] {
47
+ //@apply grid place-content-center grid-cols-1;
48
+ @apply inline-flex;
49
+ }
50
+
51
+ dialog {
52
+ &[data-position="top"] {
53
+ position: fixed;
54
+ top: 0;
55
+ left: 50%;
56
+ transform: translateX(-50%) translateY(0.5rem);
57
+ margin: 0;
58
+ }
59
+
60
+
61
+ --transition-duration: 0.2s;
62
+ transform: translateY(0px);
63
+
64
+ &, &::backdrop {
65
+ transition: display var(--transition-duration) allow-discrete, overlay var(--transition-duration) allow-discrete, opacity var(--transition-duration), transform var(--transition-duration) allow-discrete,;
66
+ opacity: 0;
67
+ }
68
+
69
+ &[open] {
70
+ opacity: 1;
71
+ &::backdrop {
72
+ opacity: 1;
73
+ }
74
+ }
75
+
76
+ &:not([open]) {
77
+ transform: translateX(0) translateY(-40px);
78
+
79
+ &[data-position="top"] {
80
+ top: 0;
81
+ left: 50%;
82
+ transform: translateX(-50%) translateY(-40px);
83
+ }
84
+
85
+ opacity: 0;
86
+
87
+ &::backdrop {
88
+ opacity: 0; /* Fade-out backdrop */
89
+ }
90
+ }
91
+
92
+ @starting-style {
93
+ &[open] {
94
+ transform: translateX(0) translateY(-40px);
95
+
96
+ &[data-position="top"] {
97
+ top: 0;
98
+ left: 50%;
99
+ transform: translateX(-50%) translateY(-40px);
100
+ }
101
+ }
102
+
103
+ &[open],
104
+ &[open]::backdrop {
105
+ opacity: 0;
106
+ }
107
+ }
108
+ }
109
+
110
+
111
+ dialog::backdrop {
112
+ @apply backdrop-blur-[0.2rem] bg-neutral-token-13/20;
113
113
  }
@@ -1,36 +1,36 @@
1
- <script lang="ts">
2
- import {type HeaderProps} from "./Header";
3
- import {BrandLogo} from "../../components/brand-logo";
4
- import './header.scss'
5
- import {Button} from "../button";
6
- import {IconHamburger} from "../icons";
7
-
8
- let {children, onHamburgerClick, ...props}: HeaderProps & {} = $props();
9
-
10
- </script>
11
-
12
- <!--add component here-->
13
- <nav id="header-container"
14
- class="flex z-40 w-full h-auto items-center justify-center sticky top-0 inset-x-0 backdrop-blur-lg data-[menu-open=true]:backdrop-blur-xl backdrop-saturate-150">
15
- <header class="flex flex-wrap h-header-height w-full text-sm">
16
- <nav class="w-full mx-auto px-4 pl-1 pr-2 md:pl-4 md:pe-4 flex items-center justify-between">
17
- <div class="flex gap-1 items-center">
18
- <Button class="md:hidden ring-0 focus:ring-0"
19
- icon
20
- variant="ghost"
21
-
22
- onclick={onHamburgerClick}>
23
- <IconHamburger/>
24
- </Button>
25
- <a href="/" class="header-brand-logo">
26
- <BrandLogo class="hidden md:block !h-icon-md"/>
27
- <BrandLogo class="md:hidden" shape="square"/>
28
- </a>
29
- </div>
30
-
31
- <div class="flex gap-2 sm:gap-4 items-center">
32
- {@render children?.()}
33
- </div>
34
- </nav>
35
- </header>
36
- </nav>
1
+ <script lang="ts">
2
+ import {type HeaderProps} from "./Header";
3
+ import {BrandLogo} from "../../components/brand-logo";
4
+ import './header.scss'
5
+ import {Button} from "../button";
6
+ import {IconHamburger} from "../icons";
7
+
8
+ let {children, onHamburgerClick, ...props}: HeaderProps & {} = $props();
9
+
10
+ </script>
11
+
12
+ <!--add component here-->
13
+ <nav id="header-container"
14
+ class="flex z-40 w-full h-auto items-center justify-center sticky top-0 inset-x-0 backdrop-blur-lg data-[menu-open=true]:backdrop-blur-xl backdrop-saturate-150">
15
+ <header class="flex flex-wrap h-header-height w-full text-sm">
16
+ <nav class="w-full mx-auto px-4 pl-1 pr-2 md:pl-4 md:pe-4 flex items-center justify-between">
17
+ <div class="flex gap-1 items-center">
18
+ <Button class="md:hidden ring-0 focus:ring-0"
19
+ icon
20
+ variant="ghost"
21
+
22
+ onclick={onHamburgerClick}>
23
+ <IconHamburger/>
24
+ </Button>
25
+ <a href="/" class="header-brand-logo">
26
+ <BrandLogo class="hidden md:block !h-icon-md"/>
27
+ <BrandLogo class="md:hidden" shape="square"/>
28
+ </a>
29
+ </div>
30
+
31
+ <div class="flex gap-2 sm:gap-4 items-center">
32
+ {@render children?.()}
33
+ </div>
34
+ </nav>
35
+ </header>
36
+ </nav>
@@ -1,20 +1,20 @@
1
- #header-container {
2
- container-type: inline-size;
3
-
4
- [data-name="brand-logo"] {
5
- @apply h-icon-lg;
6
- }
7
- }
8
-
9
-
10
- @container (min-width: theme(screens.md)) {
11
- #header-container {
12
- header {
13
-
14
- }
15
-
16
- [data-name="brand-logo"] {
17
- @apply h-icon-xl;
18
- }
19
- }
1
+ #header-container {
2
+ container-type: inline-size;
3
+
4
+ [data-name="brand-logo"] {
5
+ @apply h-icon-lg;
6
+ }
7
+ }
8
+
9
+
10
+ @container (min-width: theme(screens.md)) {
11
+ #header-container {
12
+ header {
13
+
14
+ }
15
+
16
+ [data-name="brand-logo"] {
17
+ @apply h-icon-xl;
18
+ }
19
+ }
20
20
  }
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconArrowBigRightFilled} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconArrowBigRightFilled class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconArrowBigRightFilled} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconArrowBigRightFilled class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconBook} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconBook class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconBook} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconBook class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconBookmarkPlus} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconBookmarkPlus class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconBookmarkPlus} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconBookmarkPlus class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconCalculator} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconCalculator class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconCalculator} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconCalculator class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconCheck} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconCheck class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconCheck} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconCheck class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconChevronDown} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconChevronDown class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconChevronDown} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconChevronDown class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconCopy} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconCopy class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconCopy} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconCopy class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconCopyCheckFilled} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconCopyCheckFilled class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconCopyCheckFilled} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconCopyCheckFilled class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconMenu2} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconMenu2 class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconMenu2} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconMenu2 class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconLanguage} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconLanguage class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconLanguage} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconLanguage class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconLoader2} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconLoader2 class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconLoader2} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconLoader2 class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconMoonStars} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconMoonStars class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconMoonStars} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconMoonStars class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconPointFilled} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconPointFilled class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconPointFilled} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconPointFilled class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconSearch} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconSearch class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconSearch} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconSearch class={styles({...props})}/>
10
+
@@ -1,10 +1,10 @@
1
- <script lang="ts">
2
- import {type IconsProps, styles} from "./Icons";
3
- import {IconSunHigh} from "@tabler/icons-svelte";
4
-
5
- let {children, ...props}: IconsProps = $props();
6
-
7
- </script>
8
-
9
- <IconSunHigh class={styles({...props})}/>
10
-
1
+ <script lang="ts">
2
+ import {type IconsProps, styles} from "./Icons";
3
+ import {IconSunHigh} from "@tabler/icons-svelte";
4
+
5
+ let {children, ...props}: IconsProps = $props();
6
+
7
+ </script>
8
+
9
+ <IconSunHigh class={styles({...props})}/>
10
+