mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-09-14 18:05:13 +00:00
feat: initialize shadcn
This commit is contained in:
parent
05dc549777
commit
9be2f001d7
5 changed files with 205 additions and 1 deletions
13
src/lib/utils.ts
Normal file
13
src/lib/utils.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
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> = T extends { child?: any } ? Omit<T, "child"> : T;
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
export 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 };
|
Loading…
Add table
Add a link
Reference in a new issue