UNPKG
nextjs-saaskit
Version:
latest (1.3.7)
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
1.2.3
1.2.2
1.2.1
1.1.1
1.1.0
1.0.0
A Nextjs SaaS kit
github.com/wolfgunblood/nextjs-saaskit
wolfgunblood/nextjs-saaskit
nextjs-saaskit
/
templates
/
noauth-drizzle-lemonsqueezy
/
lib
/
utils.ts
7 lines
(5 loc)
•
172 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{ type
ClassValue
, clsx }
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs)) }