UNPKG

rinlab

Version:

A comprehensive React component library for Solana blockchain interfaces with a nostalgic retro-computing aesthetic

10 lines (7 loc) 286 B
import { type ClassValue, clsx } from "clsx"; import { twMerge } from "tailwind-merge"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } export const isClient = typeof window !== "undefined"; export const isDev = process.env.NODE_ENV === "development";