Files
upscayl/electron/lib/utils.ts
anna7261 59af19cd10 feat: enhance component structure and update styles
- Added new aliases for 'ui', 'lib', and 'hooks' in components.json for better organization.
- Introduced 'iconLibrary' property set to 'lucide'.
- Updated global CSS variables to use oklch color format for improved color management.
- Refactored styles in globals.css for consistency and added new sidebar color variables.
- Commented out unused code in SettingsTab component for clarity.
2025-12-19 17:39:12 -04:00

7 lines
166 B
TypeScript

import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}