@signal9/era-ui 1.23.2 → 1.23.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/os/window.svelte +2 -2
- package/package.json +1 -1
package/dist/os/window.svelte
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import * as Pane from '../ui/pane';
|
|
3
3
|
import { Button } from '../ui/button';
|
|
4
4
|
import Minus from '@lucide/svelte/icons/minus';
|
|
5
|
-
import
|
|
5
|
+
import Maximize from '@lucide/svelte/icons/maximize';
|
|
6
6
|
import X from '@lucide/svelte/icons/x';
|
|
7
7
|
import type { Plugin } from '@neodrag/svelte';
|
|
8
8
|
import { cn } from '../utils/index.js';
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
{#if armed === 'minimize'}
|
|
112
112
|
<Minus class="size-(--era-h-xs)" />
|
|
113
113
|
{:else if armed === 'maximize'}
|
|
114
|
-
<
|
|
114
|
+
<Maximize class="size-(--era-h-xs)" />
|
|
115
115
|
{:else}
|
|
116
116
|
<X class="size-(--era-h-xs)" />
|
|
117
117
|
{/if}
|