mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-18 10:41:56 +10:00
refactor(v4.0.0-alpha): beginning of a new era
This commit is contained in:
13
libs/utils/src/namespaces/style.ts
Normal file
13
libs/utils/src/namespaces/style.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { ClassValue, clsx } from "clsx";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
export const breakpoints = {
|
||||
xs: 0,
|
||||
sm: 640,
|
||||
md: 768,
|
||||
lg: 1024,
|
||||
xl: 1280,
|
||||
"2xl": 1400,
|
||||
};
|
||||
|
||||
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
|
||||
Reference in New Issue
Block a user