Skip to content

Commit

Permalink
fix(ThemeSwitch): Merge cls imports after rebasing with main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
techniq committed Jan 19, 2025
1 parent 8a98f66 commit 2fd4645
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/svelte-ux/src/lib/components/ThemeSwitch.svelte
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<script lang="ts">
import type { ComponentProps } from 'svelte';
import { mdiWeatherNight, mdiWhiteBalanceSunny } from '@mdi/js';
import { cls, clsMerge } from '@layerstack/tailwind';
import Switch from './Switch.svelte';
import Icon from './Icon.svelte';
import { getSettings } from './settings.js';
import { cls } from '../utils/index.js';
import type { ComponentProps } from 'svelte';
import { clsMerge } from '$lib/utils/styles.js';
import { getComponentClasses } from '$lib/components/theme.js';
const { currentTheme } = getSettings();
Expand Down

0 comments on commit 2fd4645

Please sign in to comment.