mirror of
https://github.com/upscayl/upscayl.git
synced 2026-02-19 11:55:37 -05:00
- 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.
7 lines
166 B
TypeScript
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))
|
|
}
|