[READ-ONLY] Mirror of https://github.com/Savy011/weeek-day. monorepo for weeekly fansite
Something went wrong. Try again.
12345678910111213141516import type { ClassValue } from "clsx";
import { clsx } from "clsx";import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs));}
// eslint-disable-next-line @typescript-eslint/no-explicit-anyexport type WithoutChild<T> = T extends { child?: any } ? Omit<T, "child"> : T;// eslint-disable-next-line @typescript-eslint/no-explicit-anyexport type WithoutChildren<T> = T extends { children?: any } ? Omit<T, "children"> : T;export type WithoutChildrenOrChild<T> = WithoutChildren<WithoutChild<T>>;export type WithElementRef<T, U extends HTMLElement = HTMLElement> = T & { ref?: U | null };