import { clsx, type ClassValue } from "clsx"; import { twMerge } from "tailwind-merge"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } // eslint-disable-next-line @typescript-eslint/no-explicit-any export type WithoutChild = T extends { child?: any } ? Omit : T; // eslint-disable-next-line @typescript-eslint/no-explicit-any export type WithoutChildren = T extends { children?: any } ? Omit : T; export type WithoutChildrenOrChild = WithoutChildren>; export type WithElementRef = T & { ref?: U | null }; export function getTimeBasedGreeting(name: string): string { const hour = new Date().getHours(); if (hour < 12) { return `Good morning, ${name}`; } else if (hour < 17) { return `Good afternoon, ${name}`; } else if (hour < 22) { return `Good evening, ${name}`; } else { return `Good night, ${name}`; } }