UNPKG

create-coliapp

Version:

Create projects like colidev 🚀. Inspired by 'create-appncy' by @goncy

11 lines (8 loc) • 281 B
import {type ClassValue, clsx} from "clsx"; import {twMerge} from "tailwind-merge"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } export function capitalize(str: string): string { return str.charAt(0).toUpperCase() + str.slice(1); }