/
githubmirror
/
screenshot-to-code
Обзор
Документация
Войти
/
githubmirror
/
screenshot-to-code
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
frontend/src/lib/utils.ts
10 строк
267 B
Abi Raja
capitalize editor theme display
28 ноя 2023, 17:49
28 ноя 2023, 17:49
c3f6f76
Код
Авторство
О чём код?
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) { return str.charAt(0).toUpperCase() + str.slice(1); }